From aeee75c1917b8317ee1ed664839359f7fb0d0b67 Mon Sep 17 00:00:00 2001 From: Vidyadhari Jami Date: Fri, 17 Jul 2026 10:24:07 +0530 Subject: [PATCH 1/4] Added support for cost management stetings --- .../cli/command_modules/backup/_params.py | 3 ++ .../cli/command_modules/backup/custom.py | 34 +++++++++++++++---- src/azure-cli/requirements.py3.Darwin.txt | 2 +- src/azure-cli/requirements.py3.Linux.txt | 2 +- src/azure-cli/requirements.py3.windows.txt | 2 +- src/azure-cli/setup.py | 2 +- 6 files changed, 34 insertions(+), 11 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/backup/_params.py b/src/azure-cli/azure/cli/command_modules/backup/_params.py index dc667d99ffb..21b2df7a090 100644 --- a/src/azure-cli/azure/cli/command_modules/backup/_params.py +++ b/src/azure-cli/azure/cli/command_modules/backup/_params.py @@ -31,6 +31,7 @@ allowed_rehyd_priority_type = ['Standard', 'High'] allowed_softdelete_options = ['Enable', 'Disable', 'AlwaysOn'] allowed_immutability_options = ['Disabled', 'Locked', 'Unlocked'] +allowed_granularitylevel_options = ['VaultLevel','ProtectedItemLevel','ProtectedItemWithParentTag'] enable_disable_options = ['Enable', 'Disable'] enable_disable_permadisable_options = ['Enable', 'Disable', 'PermanentlyDisable'] allowed_disk_access_options = ['EnablePrivateAccessForAllDisks', 'EnablePublicAccessForAllDisks', 'SameAsOnSourceDisks'] @@ -108,6 +109,7 @@ def load_arguments(self, _): c.argument('azure_monitor_alerts_for_job_failures', options_list=['--job-failure-alerts'], arg_type=get_enum_type(enable_disable_options), help='Use this property to specify whether built-in Azure Monitor alerts should be received for every job failure.') c.argument('immutability_state', arg_type=get_enum_type(allowed_immutability_options), help='Use this parameter to configure immutability settings for the vault. By default, immutability is "Disabled" for the vault. "Unlocked" means that immutability is enabled for the vault and can be reversed. "Locked" means that immutability is enabled for the vault and cannot be reversed.') c.argument('cross_subscription_restore_state', arg_type=get_enum_type(enable_disable_permadisable_options), help='Use this parameter to configure cross subscription restore settings for the vault. By default, the property is "Enabled" for the vault.') + c.argument('cost_management_granularity', arg_type=get_enum_type(allowed_granularitylevel_options), help='Use this parameter to configure cost management settings for the vault. By default, the property is "VaultLevel" for the vault.') # TODO May add the soft_delete_retention_period_in_days parameter later. The other will not be exposed. # c.argument('soft_delete_state', options_list=['--soft-delete-state', '--soft-delete-feature-state'], arg_type=get_enum_type(allowed_softdelete_options), help='Set soft-delete feature state for a Recovery Services Vault.') # c.argument('soft_delete_retention_period_in_days', type=int, options_list=['--soft-delete-duration'], help='Set soft-delete retention duration time in days for a Recovery Services Vault.') @@ -119,6 +121,7 @@ def load_arguments(self, _): c.argument('azure_monitor_alerts_for_job_failures', options_list=['--job-failure-alerts'], arg_type=get_enum_type(enable_disable_options), help='Use this property to specify whether built-in Azure Monitor alerts should be received for every job failure.') c.argument('immutability_state', arg_type=get_enum_type(allowed_immutability_options), help='Use this parameter to configure immutability settings for the vault. By default, immutability is "Disabled" for the vault. "Unlocked" means that immutability is enabled for the vault and can be reversed. "Locked" means that immutability is enabled for the vault and cannot be reversed.') c.argument('cross_subscription_restore_state', arg_type=get_enum_type(enable_disable_permadisable_options), help='Use this parameter to configure cross subscription restore settings for the vault. By default, the property is "Enabled" for the vault.') + c.argument('cost_management_granularity', arg_type=get_enum_type(allowed_granularitylevel_options), help='Use this parameter to configure cost management settings for the vault. By default, the property is "VaultLevel" for the vault.') # TODO Discussion with Rishav once Enhanced Soft Delete is in place. We can only expose the latter, and might have to disable it from vaultconfig API # c.argument('soft_delete_state', options_list=['--soft-delete-state', '--soft-delete-feature-state'], arg_type=get_enum_type(allowed_softdelete_options), help='Set soft-delete feature state for a Recovery Services Vault.') # c.argument('soft_delete_retention_period_in_days', type=int, options_list=['--soft-delete-duration'], help='Set soft-delete retention duration time in days for a Recovery Services Vault.') diff --git a/src/azure-cli/azure/cli/command_modules/backup/custom.py b/src/azure-cli/azure/cli/command_modules/backup/custom.py index f3e5eee7551..8adc9063a0f 100644 --- a/src/azure-cli/azure/cli/command_modules/backup/custom.py +++ b/src/azure-cli/azure/cli/command_modules/backup/custom.py @@ -20,7 +20,7 @@ CmkKeyVaultProperties, CmkKekIdentity, VaultPropertiesEncryption, UserIdentity, MonitoringSettings, \ AzureMonitorAlertSettings, ClassicAlertSettings, SecuritySettings, ImmutabilitySettings, RestoreSettings, \ CrossSubscriptionRestoreSettings, DeletedVaultUndeleteInputProperties, DeletedVaultUndeleteInput, \ - SoftDeleteSettings + SoftDeleteSettings, CostManagementSettings from azure.mgmt.recoveryservicesbackup.activestamp.models import ProtectedItemResource, \ AzureIaaSComputeVMProtectedItem, AzureIaaSClassicComputeVMProtectedItem, ProtectionState, IaasVMBackupRequest, \ BackupRequestResource, IaasVMRestoreRequest, RestoreRequestResource, BackupManagementType, WorkloadType, \ @@ -156,7 +156,7 @@ def update_vault(cmd, client, vault_name, resource_group_name, tags=None, public_network_access=None, immutability_state=None, cross_subscription_restore_state=None, classic_alerts=None, azure_monitor_alerts_for_job_failures=None, tenant_id=None, - backup_storage_redundancy=None, cross_region_restore_flag=None): + backup_storage_redundancy=None, cross_region_restore_flag=None, cost_management_granularity=None): try: existing_vault = client.get(resource_group_name, vault_name) except CoreResourceNotFoundError: @@ -175,6 +175,9 @@ def update_vault(cmd, client, vault_name, resource_group_name, tags=None, if cross_subscription_restore_state is not None: patchvault.properties.restore_settings = _get_vault_restore_settings(cross_subscription_restore_state) + if cost_management_granularity is not None: + patchvault.properties.cost_management_settings = _get_vault_cost_management_settings(cost_management_granularity, existing_vault) + if classic_alerts is not None or azure_monitor_alerts_for_job_failures is not None: patchvault.properties.monitoring_settings = _get_vault_monitoring_settings(azure_monitor_alerts_for_job_failures, classic_alerts, existing_vault) @@ -208,7 +211,7 @@ def update_vault(cmd, client, vault_name, resource_group_name, tags=None, # Import SoftDeleteSettings, args in create_vault and _get_vault_security_settings def create_vault(cmd, client, vault_name, resource_group_name, location, tags=None, public_network_access=None, immutability_state=None, cross_subscription_restore_state=None, - classic_alerts=None, azure_monitor_alerts_for_job_failures=None): + classic_alerts=None, azure_monitor_alerts_for_job_failures=None, cost_management_granularity=None): try: client.get(resource_group_name, vault_name) logger.warning("You are using the az backup vault create command to update vault properties. Please " @@ -216,9 +219,13 @@ def create_vault(cmd, client, vault_name, resource_group_name, location, tags=No "to their default values. It is recommended to use az backup vault update instead.") # If the vault exists, we move to the update flow instead - return update_vault(cmd, client, vault_name, resource_group_name, tags, public_network_access, - immutability_state, cross_subscription_restore_state, classic_alerts, - azure_monitor_alerts_for_job_failures) + return update_vault(cmd, client, vault_name, resource_group_name, tags=tags, + public_network_access=public_network_access, + immutability_state=immutability_state, + cross_subscription_restore_state=cross_subscription_restore_state, + classic_alerts=classic_alerts, + azure_monitor_alerts_for_job_failures=azure_monitor_alerts_for_job_failures, + cost_management_granularity=cost_management_granularity) except CoreResourceNotFoundError: vault_properties = VaultProperties() @@ -241,6 +248,8 @@ def create_vault(cmd, client, vault_name, resource_group_name, location, tags=No if cross_subscription_restore_state is not None: vault_properties.restore_settings = _get_vault_restore_settings(cross_subscription_restore_state) + vault_properties.cost_management_settings = _get_vault_cost_management_settings(cost_management_granularity) + vault = Vault(location=location, sku=vault_sku, properties=vault_properties, tags=tags) return client.begin_create_or_update(resource_group_name, vault_name, vault) @@ -314,7 +323,6 @@ def _get_vault_security_settings(immutability_state, existing_vault=None): return security_settings - def _get_vault_restore_settings(cross_subscription_restore_state): restore_settings = None if cross_subscription_restore_state is not None: @@ -323,6 +331,18 @@ def _get_vault_restore_settings(cross_subscription_restore_state): cross_subscription_restore_state=cust_help.transform_enable_parameters(cross_subscription_restore_state)) return restore_settings +def _get_vault_cost_management_settings(cost_management_granularity, existing_vault=None): + # Update scenario + if existing_vault is not None: + cost_management_settings = existing_vault.properties.cost_management_settings + else : + # Create scenario + cost_management_settings = CostManagementSettings() + cost_management_settings.granularity_level = "VaultLevel" + + if cost_management_granularity is not None: + cost_management_settings.granularity_level = cost_management_granularity + return cost_management_settings def _get_vault_public_network_access(public_network_access): return cust_help.transform_enable_parameters(public_network_access) diff --git a/src/azure-cli/requirements.py3.Darwin.txt b/src/azure-cli/requirements.py3.Darwin.txt index 711cb2a2f41..326cbf685c5 100644 --- a/src/azure-cli/requirements.py3.Darwin.txt +++ b/src/azure-cli/requirements.py3.Darwin.txt @@ -62,7 +62,7 @@ azure-mgmt-postgresqlflexibleservers==3.0.0b2 azure-mgmt-privatedns==1.0.0 azure-mgmt-rdbms==10.2.0b17 azure-mgmt-mysqlflexibleservers==1.1.0b2 -azure-mgmt-recoveryservices==4.0.0 +azure-mgmt-recoveryservices==4.1.0 azure-mgmt-recoveryservicesbackup==9.2.0 azure-mgmt-redhatopenshift~=3.0.0 azure-mgmt-redis==14.5.0 diff --git a/src/azure-cli/requirements.py3.Linux.txt b/src/azure-cli/requirements.py3.Linux.txt index 7d6edc6bbee..b26547753ad 100644 --- a/src/azure-cli/requirements.py3.Linux.txt +++ b/src/azure-cli/requirements.py3.Linux.txt @@ -62,7 +62,7 @@ azure-mgmt-postgresqlflexibleservers==3.0.0b2 azure-mgmt-privatedns==1.0.0 azure-mgmt-rdbms==10.2.0b17 azure-mgmt-mysqlflexibleservers==1.1.0b2 -azure-mgmt-recoveryservices==4.0.0 +azure-mgmt-recoveryservices==4.1.0 azure-mgmt-recoveryservicesbackup==9.2.0 azure-mgmt-redhatopenshift~=3.0.0 azure-mgmt-redis==14.5.0 diff --git a/src/azure-cli/requirements.py3.windows.txt b/src/azure-cli/requirements.py3.windows.txt index 94f0f57df39..d724d44bb9c 100644 --- a/src/azure-cli/requirements.py3.windows.txt +++ b/src/azure-cli/requirements.py3.windows.txt @@ -62,7 +62,7 @@ azure-mgmt-postgresqlflexibleservers==3.0.0b2 azure-mgmt-privatedns==1.0.0 azure-mgmt-rdbms==10.2.0b17 azure-mgmt-mysqlflexibleservers==1.1.0b2 -azure-mgmt-recoveryservices==4.0.0 +azure-mgmt-recoveryservices==4.1.0 azure-mgmt-recoveryservicesbackup==9.2.0 azure-mgmt-redhatopenshift~=3.0.0 azure-mgmt-redis==14.5.0 diff --git a/src/azure-cli/setup.py b/src/azure-cli/setup.py index 9db68808a6f..ad14748fee3 100644 --- a/src/azure-cli/setup.py +++ b/src/azure-cli/setup.py @@ -108,7 +108,7 @@ 'azure-mgmt-rdbms==10.2.0b17', 'azure-mgmt-mysqlflexibleservers==1.1.0b2', 'azure-mgmt-recoveryservicesbackup~=9.2.0', - 'azure-mgmt-recoveryservices~=4.0.0', + 'azure-mgmt-recoveryservices~=4.1.0', 'azure-mgmt-redhatopenshift~=3.0.0', 'azure-mgmt-redis~=14.5.0', 'azure-mgmt-resource==24.0.0', From 48e48776a7e139c779dca1ff34604756c7a8427b Mon Sep 17 00:00:00 2001 From: Zubair Date: Fri, 17 Jul 2026 16:53:12 +0530 Subject: [PATCH 2/4] Fix az backup AFS live tests: BCDR policy tags + StorageV2, resilient RG teardown The BCDR_StorageAccount_RequiredTags deny policy (management-group scope) blocks the untagged storage account created by the test preparer, and the GPv1 'Storage' kind is no longer allowed for new accounts. Add a self-contained StorageAccountPreparer that creates the account with the required tags (DisableLocalAuth=false, Reason, ETA, Owner) and kind StorageV2. Consolidate to a single custom ResourceGroupPreparer (subclass of the testsdk preparer) whose teardown clears any resource locks and retries on ScopeLocked, since Azure Backup releases the AFS storage-account CanNotDelete lock asynchronously. Remove the unused RGPreparer stopgap. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- .../backup/tests/latest/preparers.py | 119 +++++++++++++----- .../backup/tests/latest/test_afs_commands.py | 6 +- .../tests/latest/test_backup_commands.py | 4 +- 3 files changed, 96 insertions(+), 33 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/preparers.py b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/preparers.py index f16543b836a..cb614b3cd3d 100644 --- a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/preparers.py +++ b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/preparers.py @@ -7,8 +7,11 @@ import os from datetime import datetime, timedelta -from azure.cli.testsdk import CliTestError, ResourceGroupPreparer +from azure.cli.testsdk import CliTestError from azure.cli.testsdk.preparers import AbstractPreparer, SingleValueReplacer, KeyVaultPreparer +from azure.cli.testsdk.preparers import ResourceGroupPreparer as _CliResourceGroupPreparer +from azure.cli.testsdk.preparers import StorageAccountPreparer as _CliStorageAccountPreparer +from azure.cli.testsdk.utilities import StorageAccountKeyReplacer from azure.cli.testsdk.base import execute # pylint: disable=line-too-long @@ -16,36 +19,96 @@ logger = get_logger(__name__) -# Temporary Resource Group Preparer for testing while we update the RecoveryServices SDK to deal with new Soft Delete rules -class RGPreparer(AbstractPreparer, SingleValueReplacer): - def __init__(self, name_prefix='clitest.rg', - parameter_name='resource_group', - parameter_name_for_location='resource_group_location', location='westus', - dev_setting_name='AZURE_CLI_TEST_DEV_RESOURCE_GROUP_NAME', - dev_setting_location='AZURE_CLI_TEST_DEV_RESOURCE_GROUP_LOCATION', - random_name_length=75, key='rg', subscription=None, additional_tags=None): - if ' ' in name_prefix: - raise CliTestError('Error: Space character in resource group name prefix \'%s\'' % name_prefix) - super().__init__(name_prefix, random_name_length) - from azure.cli.core.mock import DummyCli - self.cli_ctx = DummyCli() - self.location = location - self.subscription = subscription - self.parameter_name = parameter_name - self.parameter_name_for_location = parameter_name_for_location - self.key = key - self.additional_tags = additional_tags - - self.dev_setting_name = os.environ.get(dev_setting_name, None) - self.dev_setting_location = os.environ.get(dev_setting_location, location) +# Tags required by the "BCDR_StorageAccount_RequiredTags" Azure Policy (deny effect, +# assigned at the management-group scope). A storage account that allows shared-key +# access is rejected unless it carries all of these tags. AFS backup needs shared-key +# / local auth enabled on the account, so DisableLocalAuth must be present and 'false'. +BACKUP_SA_REQUIRED_TAGS = { + 'DisableLocalAuth': 'false', + 'Reason': 'CLITest', + 'ETA': '12-2099', + 'Owner': 'clitest', +} + + +class StorageAccountPreparer(_CliStorageAccountPreparer): + """Storage account preparer for backup tests. + + Creates the account with the tags required by the BCDR storage-account tag + policy (a management-group deny policy rejects an account that allows + shared-key access unless it carries these tags) and with a supported account + kind (StorageV2 - the legacy GPv1 'Storage' kind is no longer allowed for new + accounts). Drop-in replacement for the testsdk preparer. + """ + def __init__(self, *args, kind='StorageV2', tags=None, **kwargs): + super().__init__(*args, kind=kind, **kwargs) + self.tags = dict(BACKUP_SA_REQUIRED_TAGS) if tags is None else tags def create_resource(self, name, **kwargs): - cmd = 'az group create --location {} --name {}'.format(self.location, name) - execute(self.cli_ctx, cmd) - return {self.parameter_name: name, self.parameter_name_for_location: self.location} - + group = self._get_resource_group(**kwargs) + if not self.dev_setting_name: + template = 'az storage account create -n {} -g {} -l {} --sku {} --kind {} --https-only' + template += ' --allow-blob-public-access {}'.format('true' if self.allow_blob_public_access else 'false') + if self.allow_shared_key_access is not None: + template += ' --allow-shared-key-access {}'.format('true' if self.allow_shared_key_access else 'false') + if self.hns: + template += ' --hns' + command = template.format(name, group, self.location, self.sku, self.kind) + if self.tags: + command += ' --tags ' + ' '.join('{}={}'.format(k, v) for k, v in self.tags.items()) + self.live_only_execute(self.cli_ctx, command) + else: + name = self.dev_setting_name + try: + account_key = self.live_only_execute( + self.cli_ctx, + 'storage account keys list -n {} -g {} --query "[0].value" -otsv'.format(name, group)).output + except AttributeError: # live_only_execute returns None when playing back a recording + account_key = None + self.test_class_instance.kwargs[self.key] = name + return {self.parameter_name: name, + self.parameter_name + '_info': (name, account_key or StorageAccountKeyReplacer.KEY_REPLACEMENT)} + + +# The single custom resource group preparer for backup tests. Subclasses the CLI +# ResourceGroupPreparer and makes teardown resilient to the CanNotDelete lock that +# Azure Backup places on a protected AFS storage account: Backup releases the lock +# asynchronously, so `az group delete` can race it and fail with ScopeLocked, so we +# clear any locks in the group and retry the delete a bounded number of times. +class ResourceGroupPreparer(_CliResourceGroupPreparer): + _MAX_DELETE_ATTEMPTS = 6 + _DELETE_RETRY_WAIT = 15 + def remove_resource(self, name, **kwargs): - pass + if self.dev_setting_name: + return + + import time + from azure.core.exceptions import HttpResponseError + + sub = ' --subscription {}'.format(self.subscription) if self.subscription else '' + for attempt in range(self._MAX_DELETE_ATTEMPTS): + self._remove_locks(name, sub) + try: + self.live_only_execute(self.cli_ctx, 'az group delete --name {} --yes --no-wait{}'.format(name, sub)) + return + except HttpResponseError as ex: + if 'ScopeLocked' not in str(ex) or attempt == self._MAX_DELETE_ATTEMPTS - 1: + raise + time.sleep(self._DELETE_RETRY_WAIT) + + def _remove_locks(self, name, sub): + from azure.core.exceptions import HttpResponseError + try: + result = self.live_only_execute(self.cli_ctx, 'az lock list -g {}{} -o json'.format(name, sub)) + locks = result.get_output_in_json() if result else [] + except (HttpResponseError, AttributeError): + return + for lock in locks or []: + try: + self.live_only_execute(self.cli_ctx, 'az lock delete --ids {}'.format(lock['id'])) + except (HttpResponseError, AttributeError): + pass class VaultPreparer(AbstractPreparer, SingleValueReplacer): # pylint: disable=too-many-instance-attributes diff --git a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/test_afs_commands.py b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/test_afs_commands.py index 97a71df2ede..4cc9c5b62bd 100644 --- a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/test_afs_commands.py +++ b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/test_afs_commands.py @@ -7,11 +7,11 @@ from datetime import datetime, timedelta import unittest import time -from azure.cli.testsdk import ScenarioTest, JMESPathCheckExists, ResourceGroupPreparer, \ - StorageAccountPreparer, record_only, live_only +from azure.cli.testsdk import ScenarioTest, JMESPathCheckExists, \ + record_only, live_only from azure.cli.testsdk.scenario_tests import AllowLargeResponse from .preparers import VaultPreparer, FileSharePreparer, AFSPolicyPreparer, AFSItemPreparer, \ - AFSRPPreparer, FilePreparer, RGPreparer + AFSRPPreparer, FilePreparer, ResourceGroupPreparer, StorageAccountPreparer subscription_id = "da364f0f-307b-41c9-9d47-b7413ec45535" unprotected_afs = "clitestafs" diff --git a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/test_backup_commands.py b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/test_backup_commands.py index 8c18ff39657..c97f6565dac 100644 --- a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/test_backup_commands.py +++ b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/test_backup_commands.py @@ -10,13 +10,13 @@ import time import random -from azure.cli.testsdk import ScenarioTest, JMESPathCheckExists, ResourceGroupPreparer, \ +from azure.cli.testsdk import ScenarioTest, JMESPathCheckExists, \ StorageAccountPreparer, KeyVaultPreparer, record_only, live_only from azure.mgmt.recoveryservicesbackup.activestamp.models import StorageType from azure.cli.testsdk.scenario_tests import AllowLargeResponse from .preparers import VaultPreparer, VMPreparer, ItemPreparer, PolicyPreparer, RPPreparer, \ - DESPreparer, KeyPreparer, RGPreparer + DESPreparer, KeyPreparer, ResourceGroupPreparer def _get_vm_version(vm_type): From b23fb85b862d62f8f69e8606d9cd5a1fbb5ff7bc Mon Sep 17 00:00:00 2001 From: Zubair Date: Mon, 20 Jul 2026 14:09:47 +0530 Subject: [PATCH 3/4] Fix backup live tests: tag VM-test storage accounts + bump resource-guard op count Use the backup-local StorageAccountPreparer (StorageV2 + BCDR-required tags) in test_backup_commands.py so the VM/CRR/restore tests' storage accounts satisfy the BCDR_StorageAccount_RequiredTags deny policy (clears the RequestDisallowedByPolicy failures). Bump test_backup_rg_mapping's expected resourceGuardOperationDetails from 9 to 14 to match the current service critical-operations set (adds backupCrossTenantVaultMappings/* and immutability duration/state operations). Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- .../backup/tests/latest/test_backup_commands.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/test_backup_commands.py b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/test_backup_commands.py index c97f6565dac..5049b035406 100644 --- a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/test_backup_commands.py +++ b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/test_backup_commands.py @@ -11,12 +11,12 @@ import random from azure.cli.testsdk import ScenarioTest, JMESPathCheckExists, \ - StorageAccountPreparer, KeyVaultPreparer, record_only, live_only + KeyVaultPreparer, record_only, live_only from azure.mgmt.recoveryservicesbackup.activestamp.models import StorageType from azure.cli.testsdk.scenario_tests import AllowLargeResponse from .preparers import VaultPreparer, VMPreparer, ItemPreparer, PolicyPreparer, RPPreparer, \ - DESPreparer, KeyPreparer, ResourceGroupPreparer + DESPreparer, KeyPreparer, ResourceGroupPreparer, StorageAccountPreparer def _get_vm_version(vm_type): @@ -1696,12 +1696,12 @@ def test_backup_rg_mapping(self, resource_group, vault_name, vm1, policy1, polic # associate vault with an already present resource guard self.cmd('backup vault resource-guard-mapping update -g {rg} -n {vault} --resource-guard-id {resource_graph}', checks=[ self.check('name', 'VaultProxy'), - self.check('length(properties.resourceGuardOperationDetails)', 9) + self.check('length(properties.resourceGuardOperationDetails)', 14) ]) self.cmd('backup vault resource-guard-mapping show -g {rg} -n {vault}', checks=[ self.check('name', 'VaultProxy'), - self.check('length(properties.resourceGuardOperationDetails)', 9) + self.check('length(properties.resourceGuardOperationDetails)', 14) ]) time.sleep(300) From dc8e171c9059dc0315bc6ecbf89eabf2ebb65149 Mon Sep 17 00:00:00 2001 From: Vidyadhari Jami Date: Tue, 21 Jul 2026 10:57:09 +0530 Subject: [PATCH 4/4] Added test for cost management settings --- .../cli/command_modules/backup/custom.py | 15 +- .../latest/recordings/test_backup_vault.yaml | 1828 +++++++++++------ .../tests/latest/test_backup_commands.py | 12 +- 3 files changed, 1242 insertions(+), 613 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/backup/custom.py b/src/azure-cli/azure/cli/command_modules/backup/custom.py index 8adc9063a0f..29c2722c649 100644 --- a/src/azure-cli/azure/cli/command_modules/backup/custom.py +++ b/src/azure-cli/azure/cli/command_modules/backup/custom.py @@ -20,7 +20,7 @@ CmkKeyVaultProperties, CmkKekIdentity, VaultPropertiesEncryption, UserIdentity, MonitoringSettings, \ AzureMonitorAlertSettings, ClassicAlertSettings, SecuritySettings, ImmutabilitySettings, RestoreSettings, \ CrossSubscriptionRestoreSettings, DeletedVaultUndeleteInputProperties, DeletedVaultUndeleteInput, \ - SoftDeleteSettings, CostManagementSettings + SoftDeleteSettings, CostManagementSettings, ImmutabilityConfiguration from azure.mgmt.recoveryservicesbackup.activestamp.models import ProtectedItemResource, \ AzureIaaSComputeVMProtectedItem, AzureIaaSClassicComputeVMProtectedItem, ProtectionState, IaasVMBackupRequest, \ BackupRequestResource, IaasVMRestoreRequest, RestoreRequestResource, BackupManagementType, WorkloadType, \ @@ -319,7 +319,18 @@ def _get_vault_security_settings(immutability_state, existing_vault=None): security_settings.soft_delete_settings = soft_delete_settings if immutability_state is not None: - security_settings.immutability_settings = ImmutabilitySettings(state=immutability_state) + # When immutability state is Unlocked or Locked (enabled states), we need to provide + # a configuration with type. Default to "AsPerPolicy" as it doesn't require durationInDays. + # When state is Disabled, we don't need to provide configuration. + if immutability_state in ("Unlocked", "Locked"): + immutability_config = ImmutabilityConfiguration(type="AsPerPolicy") + security_settings.immutability_settings = ImmutabilitySettings( + state=immutability_state, + configuration=immutability_config + ) + else: + # For Disabled state, only set the state without configuration + security_settings.immutability_settings = ImmutabilitySettings(state=immutability_state) return security_settings diff --git a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_vault.yaml b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_vault.yaml index 2259d811908..1fdc4a71373 100644 --- a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_vault.yaml +++ b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_vault.yaml @@ -13,9 +13,9 @@ interactions: ParameterSetName: - -n -g --location User-Agent: - - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.11.9 (Windows-10-10.0.26200-SP0) + - AZURECLI/2.88.0 azsdk-python-core/1.39.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2025-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2026-05-01 response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.RecoveryServices/vaults/clitest-vault000002'' @@ -29,7 +29,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 27 Oct 2025 13:40:46 GMT + - Tue, 21 Jul 2026 04:59:51 GMT expires: - '-1' pragma: @@ -43,7 +43,7 @@ interactions: x-ms-failure-cause: - gateway x-msedge-ref: - - 'Ref A: FF552282AECD45C9AEF857B35D18363A Ref B: MAA201060516021 Ref C: 2025-10-27T13:40:46Z' + - 'Ref A: 7110251AB7F449DCB55513D6FA265740 Ref B: PNQ231110906042 Ref C: 2026-07-21T04:59:50Z' status: code: 404 message: Not Found @@ -54,7 +54,8 @@ interactions: "Enabled", "monitoringSettings": {"azureMonitorAlertSettings": {"alertsForAllJobFailures": "Enabled", "alertsForAllReplicationIssues": "Enabled", "alertsForAllFailoverIssues": "Enabled"}, "classicAlertSettings": {"alertsForCriticalOperations": "Enabled", - "emailNotificationsForSiteRecovery": "Enabled"}}}}' + "emailNotificationsForSiteRecovery": "Enabled"}}, "costManagementSettings": + {"granularityLevel": "VaultLevel"}}}' headers: Accept: - application/json @@ -65,29 +66,29 @@ interactions: Connection: - keep-alive Content-Length: - - '553' + - '615' Content-Type: - application/json ParameterSetName: - -n -g --location User-Agent: - - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.11.9 (Windows-10-10.0.26200-SP0) + - AZURECLI/2.88.0 azsdk-python-core/1.39.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2025-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2026-05-01 response: body: - string: '{"location":"eastus2euap","name":"clitest-vault000002","etag":"W/\"datetime''2025-10-27T13%3A40%3A48.7752866Z''\"","properties":{"provisioningState":"Provisioning","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","monitoringSettings":{"azureMonitorAlertSettings":{"alertsForAllJobFailures":"Enabled","alertsForAllReplicationIssues":"Enabled","alertsForAllFailoverIssues":"Enabled"},"classicAlertSettings":{"alertsForCriticalOperations":"Enabled","emailNotificationsForSiteRecovery":"Enabled"}},"securitySettings":{"softDeleteSettings":{"softDeleteRetentionPeriodInDays":14,"softDeleteState":"AlwaysON","enhancedSecurityState":"AlwaysON"},"multiUserAuthorization":"Invalid","sourceScanConfiguration":{"state":"Disabled"}},"redundancySettings":{"standardTierStorageRedundancy":"GeoRedundant","crossRegionRestore":"Disabled"},"secureScore":"Adequate","bcdrSecurityLevel":"Good","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' + string: '{"location":"eastus2euap","name":"clitest-vault000002","etag":"W/\"datetime''2026-07-21T04%3A59%3A58.1608787Z''\"","properties":{"provisioningState":"Provisioning","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","monitoringSettings":{"azureMonitorAlertSettings":{"alertsForAllJobFailures":"Enabled","alertsForAllReplicationIssues":"Enabled","alertsForAllFailoverIssues":"Enabled"},"classicAlertSettings":{"alertsForCriticalOperations":"Enabled","emailNotificationsForSiteRecovery":"Enabled"}},"costManagementSettings":{"granularityLevel":"VaultLevel"},"securitySettings":{"softDeleteSettings":{"softDeleteRetentionPeriodInDays":14,"softDeleteState":"AlwaysON","enhancedSecurityState":"AlwaysON"},"multiUserAuthorization":"Invalid","sourceScanConfiguration":{"state":"Disabled"}},"redundancySettings":{"standardTierStorageRedundancy":"GeoRedundant","crossRegionRestore":"Disabled"},"secureScore":"Adequate","bcdrSecurityLevel":"Good","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationStatus/MjA0NzsyNjYzODgwNS0yMmFkLTRlZTEtYTFlYi0wYTk3OTYwZWQzN2M=?api-version=2025-08-01&t=638971692489545724&c=MIIIpDCCBoygAwIBAgITFgIdx-8P5Q2flkVe0wABAh3H7zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUxMDIwMTM0ODIxWhcNMjYwMTE4MTM0ODIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALJsx40wbBQQVymBKxEYB3QsXs7DWrmkLk1cvGC9Oh6ZUsiS6z4fZ9KUiL7u4Cb1R-5gfYTplSDkCfn9Y776fzY9tgxKTFF2KMooWQSUUNfMYuwrWFbbHGDx79k-SN6J44MhkxgVnvirjK5cOgtR1YwGjnk0x5Ea3-szYPplTQi12yBEDft-JR3YCKn54jq1stV1W2hRp_2g1BQImqyuswXZKY2DD-s3bQClN3clms4KDqdtTyXsWYLLd1wyrriHRsQnNbYpC1EqjwDyNGLTXHMVXKbeUefj5AwkYLnb77HgLc0IW7nFQwaOLB01n0OsHuhWZeUiilCDsiV76B_8MF0CAwEAAaOCBJEwggSNMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAdoGCCsGAQUFBwEBBIIBzDCCAcgwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDEuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDQuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwHQYDVR0OBBYEFBIs_XIgrlYGjVV6tC88QEhsK39fMA4GA1UdDwEB_wQEAwIFoDCCATUGA1UdHwSCASwwggEoMIIBJKCCASCgggEchkJodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMB8GA1UdIwQYMBaAFEijrWB1am_sYPNpVdEAsTJX_GzkMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAgEAoWGeh2L-xOp4WFwNcK7-42nE8XWzyiVfNq-en8umv6B7FIlZBqRTSHucIlGoZqT7uEkuOIkyfwKUKMHeX3kte0w5f4gSgSX-JsexZj509BqurtDEgPbEjh9zUpbDAM7sODNvfiZ0HVF6sREKDyDIRGhYl_C7qO6FPNUH0wiEMRNI92WewkvN5kxHFBO56OS26He5ElMpeDPNifRXSj2RrthZNiLhtVNqOXCXV8HvAO-8PBPQGpetO260pqROBjblZfst9LCba3YKdZ8o2ojOeG5_ANB5mSX3bsBsY2ULkbRKgNBi5AXJ7q0-n01yM6-uiSvZ8wrkHLfDJ6KlzSDTLJpoVa8AUeZoPEhJgyQInNCPK5nFOD-F1QNRwQj-B-s7y16iUVZiLZ3hkxODdrbMjfPRL2P3DYn1cg-jZVq0xDX1aSlRyQq6qi9xZ9RfBPeOrsZ3SHGm0XIJdlqtaYt0Evo6fWKiFXuJ-H6nf5Qy8sLTk2q160CH2IgsW5_tA0n0ySGt5n-9j610wwPdH6ImEQ1jli9U8Ur82WjB7qQhpmYPuHOyytAGttfk1271zkw5TOpkzJfGWvT5zYv436XCj6pouSk2GJmG1iR-9pO4kPK1LWp3ujV-IXZjP_-xg0wwwsvc0BDJJZZk4tElY91ySFzLXlN8QfTH67VHl7D8ILg&s=ac2MKMY2qPVr7YXz5eXfff1WqTdxYvpD_iiUdbgmY8epWX_JOs69-67TP-GG3IsEY_yidkS4NB9mmgd70s80o855RV63uRpGy8fGEamGJyo-MUNdPx6WjFJ_xq1_LR5aajqebDRu-J2jpdDQpEGsAouq9sv8PXNr7pIF_kCHrZrob4YI25YS8JvdV5qNJGU2y4GDW1Ezt1fYGCdZ0Y3WA_soSCR5v3tpUhWymj103NdgC3DWbf3ZodsSJR2FH0BGpN6F6oLCmD6WFmViS-cHbvS9pGMnDfYmvdDVmMORAla7s_aQX98a8v1dSTMl4LXc_JHA5v4en0qxLKZddCKOSw&h=P9Om83B0JK_lbjBDBeWJcvW9udcIF5KN2pcoXe0k12U + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationStatus/MjA0NzsxN2MyMmYxZi05M2FmLTRhYzItOTY3ZS00OWVkYTY4ZDFkYWM=?api-version=2026-05-01&t=639202067994580514&c=MIIHkTCCBnmgAwIBAgIRAMPsbVCM-ZcwGT3mW_Wsv5cwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwNzI4NTRaFw0yNjEwMDUxMzI4NTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAweoM3MIIqsaOjf7y-fH0V5jELLBVlh5dQFlQmu6JkyEUDQcSVQIza8SKoyGF0D3BgRTvgSgFPS6pmRE88kulnAEjmSIzlys0PqqwJHvmSGKzYDERg6NMZ4-Cxxr7oCd9H87eR28jQN8jhwL-a9XmVb2vb5YdhKA3Z91kBMJY1LhsgzwgNlddueA3bgeA8BgIx2b4ywT3RFnXOAWlACdU_pKkkNAvEZQ6Ho7USd16hlAd-e8iVvd4HGJOHBQs_J3ZMPFJrayHR1kV3bwaHVmfbZtn9blBhf_IemfKp1ZulGW03s-l3-2lEA6Je5JxsbyyI3h2Ltx_02WW433-Rq22wQIDAQABo4IEjjCCBIowgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUmfLBSzgTKyBJ-0QftN6h07xoKJIwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGuBgNVHR8EggGlMIIBoTBooGagZIZiaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzYvY3VycmVudC5jcmwwaqBooGaGZGh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzYvY3VycmVudC5jcmwwWaBXoFWGU2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS82L2N1cnJlbnQuY3JsMG6gbKBqhmhodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNi9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCkD9mxCmFBmLSKGw3hSzV9aN7qJSlfFvJNweyYBnLXB79nGi4-UMRV0spiSnpD02BnIBkM29cWXGGvoOJBxWgwqL_tL80GSXBDadyPmHaopkfHoPILW6dBQLQRmo5DCUckhdpqgN5JTNseFeHuNQynIZz4inH0oLpy9ZjSr4XxH9qbTNO6NDQgOHDaVRLqeWmkfbrkJF62d-r32RLypW-FVbMzJVTED7tIMOjUuU2jVrnVnPvG-fZVOPvgqOFiliiMsZprtGzIoOxcf3wFNch9wXgkcxUFspHG34eGMR_oYRNmcMPHlRJjwJqvOWVa8md3dnNPRj_w4Lq_3GxateqM&s=lynPFDPXFfEaIgK4-Dql6l8FBoZTwD9l9WDVqfditETi5oDc63urjZu0t2VpeYb-IqJ-fc_uhV_FIVeGuq-0sEwDgukkS82U8reMXRYCHE2AKauBC7wUsJ88iys_CnJ3A2__vklyg2mDLhzHPZ2E8sd98RwemwX3p_rDomB2s8W06uBYkFDIQmVlNE2CmH5xejsMGPgTLMfHJSQqFMkPgeQjiKOTO9mzRm6MzBzpGDrNFXIJiMW9phKAqC9wjuvG7NMWgIcWsk9roeMrHOeCGJFEFmlYPTMMvhxaPkyIqNZTEvkD--vKn9W4r29uTcMY_QBX84fISD5Gp0S7EhOO1A&h=DF8tdrVjsMgKTdctZ8YMQwFXpr_z5icZudL_h2CTmIY cache-control: - no-cache content-length: - - '1276' + - '1335' content-type: - application/json; charset=utf-8 date: - - Mon, 27 Oct 2025 13:40:48 GMT + - Tue, 21 Jul 2026 04:59:58 GMT expires: - '-1' pragma: @@ -99,13 +100,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=12f8ea5c-1212-449e-b31c-0a574f43076e/eastus2euap/d3bd9613-d08a-4351-aa56-fafb1654c9cc + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=352782de-cadf-4f14-ad97-08cd2617ef55/jioindiawest/3f86b060-42ab-4ace-a653-76d26287e1c8 x-ms-ratelimit-remaining-subscription-resource-requests: - - '799' - x-ms-throttling-version: - - v1 + - '800' x-msedge-ref: - - 'Ref A: 7B8BCC79D7F342FAA61C8CBD898B33B6 Ref B: MAA201060513025 Ref C: 2025-10-27T13:40:47Z' + - 'Ref A: FCE29494114E478899BC2FAC1F6F5C15 Ref B: PNQ231110908031 Ref C: 2026-07-21T04:59:51Z' status: code: 201 message: Created @@ -123,13 +122,67 @@ interactions: ParameterSetName: - -n -g --location User-Agent: - - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.11.9 (Windows-10-10.0.26200-SP0) + - AZURECLI/2.88.0 azsdk-python-core/1.39.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationStatus/MjA0NzsxN2MyMmYxZi05M2FmLTRhYzItOTY3ZS00OWVkYTY4ZDFkYWM=?api-version=2026-05-01&t=639202067994580514&c=MIIHkTCCBnmgAwIBAgIRAMPsbVCM-ZcwGT3mW_Wsv5cwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwNzI4NTRaFw0yNjEwMDUxMzI4NTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAweoM3MIIqsaOjf7y-fH0V5jELLBVlh5dQFlQmu6JkyEUDQcSVQIza8SKoyGF0D3BgRTvgSgFPS6pmRE88kulnAEjmSIzlys0PqqwJHvmSGKzYDERg6NMZ4-Cxxr7oCd9H87eR28jQN8jhwL-a9XmVb2vb5YdhKA3Z91kBMJY1LhsgzwgNlddueA3bgeA8BgIx2b4ywT3RFnXOAWlACdU_pKkkNAvEZQ6Ho7USd16hlAd-e8iVvd4HGJOHBQs_J3ZMPFJrayHR1kV3bwaHVmfbZtn9blBhf_IemfKp1ZulGW03s-l3-2lEA6Je5JxsbyyI3h2Ltx_02WW433-Rq22wQIDAQABo4IEjjCCBIowgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUmfLBSzgTKyBJ-0QftN6h07xoKJIwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGuBgNVHR8EggGlMIIBoTBooGagZIZiaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzYvY3VycmVudC5jcmwwaqBooGaGZGh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzYvY3VycmVudC5jcmwwWaBXoFWGU2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS82L2N1cnJlbnQuY3JsMG6gbKBqhmhodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNi9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCkD9mxCmFBmLSKGw3hSzV9aN7qJSlfFvJNweyYBnLXB79nGi4-UMRV0spiSnpD02BnIBkM29cWXGGvoOJBxWgwqL_tL80GSXBDadyPmHaopkfHoPILW6dBQLQRmo5DCUckhdpqgN5JTNseFeHuNQynIZz4inH0oLpy9ZjSr4XxH9qbTNO6NDQgOHDaVRLqeWmkfbrkJF62d-r32RLypW-FVbMzJVTED7tIMOjUuU2jVrnVnPvG-fZVOPvgqOFiliiMsZprtGzIoOxcf3wFNch9wXgkcxUFspHG34eGMR_oYRNmcMPHlRJjwJqvOWVa8md3dnNPRj_w4Lq_3GxateqM&s=lynPFDPXFfEaIgK4-Dql6l8FBoZTwD9l9WDVqfditETi5oDc63urjZu0t2VpeYb-IqJ-fc_uhV_FIVeGuq-0sEwDgukkS82U8reMXRYCHE2AKauBC7wUsJ88iys_CnJ3A2__vklyg2mDLhzHPZ2E8sd98RwemwX3p_rDomB2s8W06uBYkFDIQmVlNE2CmH5xejsMGPgTLMfHJSQqFMkPgeQjiKOTO9mzRm6MzBzpGDrNFXIJiMW9phKAqC9wjuvG7NMWgIcWsk9roeMrHOeCGJFEFmlYPTMMvhxaPkyIqNZTEvkD--vKn9W4r29uTcMY_QBX84fISD5Gp0S7EhOO1A&h=DF8tdrVjsMgKTdctZ8YMQwFXpr_z5icZudL_h2CTmIY + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationStatus/MjA0NzsxN2MyMmYxZi05M2FmLTRhYzItOTY3ZS00OWVkYTY4ZDFkYWM=\",\r\n + \ \"name\": \"MjA0NzsxN2MyMmYxZi05M2FmLTRhYzItOTY3ZS00OWVkYTY4ZDFkYWM=\",\r\n + \ \"status\": \"InProgress\"\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationStatus/MjA0NzsxN2MyMmYxZi05M2FmLTRhYzItOTY3ZS00OWVkYTY4ZDFkYWM=?api-version=2026-05-01&t=639202068006230966&c=MIIH9TCCBt2gAwIBAgIRAKnTo6mKeliSYj1GLETof4IwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVUyQyBDQSAwMTAeFw0yNjA3MDIxNTU4NDNaFw0yNjA5MjcyMTU4NDNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAlDQMyX5eVlNoyHQy97t41xstx7ISW3Jpt0fmktBr-SytLFjS2PEwnW3DFpc-bQgfDfHkKP0_FRLvm_mazEvS5KYzyX6nFjGqQTX3SfneJV5jo7nOwYnQHFTbkg0Dngz7AipTBy6yAiQqKMhRo_D-N4o3stwmKHeA0tAiEOx4G_PiAZBVgwqD_hS-porAKnsf-m7-vYsa-g9Cw0SQ2t7YIFgfqGifFcAH79L7QF5n4-toqH20MDZrR10dXpjNK50DvRiltXMo7xC198sVfC6ISY8hDbiFDpsKgL_lz-pJ2kyYJNyq1NUfS79AS70Bkl13eaOYbl8go_Oo41Ma5ArEgQIDAQABo4IE8jCCBO4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7Mv1WvWn7sAfft9pF9lwNBkNam0wHwYDVR0jBBgwFoAUz1EBqulDLGR2G0rwqsDykvhPw7swggHiBgNVHR8EggHZMIIB1TB1oHOgcYZvaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHegdaBzhnFodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyZXVhcC9jcmxzL2NjbWVlYXN0dXMyZXVhcHBraS9jY21lZWFzdHVzMmV1YXBpY2EwMS82NS9jdXJyZW50LmNybDBmoGSgYoZgaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHugeaB3hnVodHRwOi8vY2NtZWVhc3R1czJldWFwcGtpLmVhc3R1czJldWFwLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJldWFwaWNhMDEvNjUvY3VycmVudC5jcmwwggHnBggrBgEFBQcBAQSCAdkwggHVMHgGCCsGAQUFBzAChmxodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwegYIKwYBBQUHMAKGbmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NhY2VydHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxL2NlcnQuY2VyMGkGCCsGAQUFBzAChl1odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwcgYIKwYBBQUHMAKGZmh0dHA6Ly9jY21lZWFzdHVzMmV1YXBwa2kuZWFzdHVzMmV1YXAucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmV1YXBpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAndPCPc-CmjHOQpHPVSFI4dsJ3mAAA9L0QPDWwmXXvm66R08WToYQA9QCpkqxZEzl69AhSTR5x65hpeRv8xhwwj57QIuBD6rfMRghZH83T4x3bdOI4KmhFi_uY_52-cou5_xf0DyGAI_C77U5rC8TmVil8EsUCojV8rWkZXUBQSKZMaC1gzmzWW3pgKG9zwbD6J1M_7PW6f_zhE9KvGfBrLALoabdK0H_in5p3CyRMQee9pXSpsictb8cyfBIRU1fRSNmLnOjVSlF_Ll20gYIhnHvetGUxWU0EE9gWSJVUtwbqJjCeDouKPwe2UYUosoETTC7iluHZc0PV9EMfunH2w&s=C7zyc2iwAsE1-WUYw1p0RdaRdwrKHXaBbkol33gS9e97CtiAack0SpsZdKblw1RmY575UK1at7ppvhwn-zL0gAduqYEB9KEJfVIVJ05l3B_kQ8vPCWepPf6kbgEw3IEo-J0cfIcYQcVHz6S0sJKmfB1O990x3mfhyWuIAhSSIsocEGkvHi36wMvPzJWWoOl1Dqfb1z5MrP4-XvvflnbKvGz90GzJzPkxqop3L9MP-4xSn5T2113DHwcFi1CYMEMVZot0P0lsgMz9noLZubq4ZOYt7ejVAjjRSiczgyJ-gntGIQoYEFZe0Fqm8vm6GJ-7k0PmGpckr7vn7Pi6xEbrhg&h=Iduef2Dhf0mt8gwsnqP8aS6lT97wtbYNZ5TdFjnAeo0 + cache-control: + - no-cache + content-length: + - '346' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 21 Jul 2026 05:00:00 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationResults/MjA0NzsxN2MyMmYxZi05M2FmLTRhYzItOTY3ZS00OWVkYTY4ZDFkYWM=?api-version=2026-05-01&t=639202068006230966&c=MIIH9TCCBt2gAwIBAgIRAKnTo6mKeliSYj1GLETof4IwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVUyQyBDQSAwMTAeFw0yNjA3MDIxNTU4NDNaFw0yNjA5MjcyMTU4NDNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAlDQMyX5eVlNoyHQy97t41xstx7ISW3Jpt0fmktBr-SytLFjS2PEwnW3DFpc-bQgfDfHkKP0_FRLvm_mazEvS5KYzyX6nFjGqQTX3SfneJV5jo7nOwYnQHFTbkg0Dngz7AipTBy6yAiQqKMhRo_D-N4o3stwmKHeA0tAiEOx4G_PiAZBVgwqD_hS-porAKnsf-m7-vYsa-g9Cw0SQ2t7YIFgfqGifFcAH79L7QF5n4-toqH20MDZrR10dXpjNK50DvRiltXMo7xC198sVfC6ISY8hDbiFDpsKgL_lz-pJ2kyYJNyq1NUfS79AS70Bkl13eaOYbl8go_Oo41Ma5ArEgQIDAQABo4IE8jCCBO4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7Mv1WvWn7sAfft9pF9lwNBkNam0wHwYDVR0jBBgwFoAUz1EBqulDLGR2G0rwqsDykvhPw7swggHiBgNVHR8EggHZMIIB1TB1oHOgcYZvaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHegdaBzhnFodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyZXVhcC9jcmxzL2NjbWVlYXN0dXMyZXVhcHBraS9jY21lZWFzdHVzMmV1YXBpY2EwMS82NS9jdXJyZW50LmNybDBmoGSgYoZgaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHugeaB3hnVodHRwOi8vY2NtZWVhc3R1czJldWFwcGtpLmVhc3R1czJldWFwLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJldWFwaWNhMDEvNjUvY3VycmVudC5jcmwwggHnBggrBgEFBQcBAQSCAdkwggHVMHgGCCsGAQUFBzAChmxodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwegYIKwYBBQUHMAKGbmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NhY2VydHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxL2NlcnQuY2VyMGkGCCsGAQUFBzAChl1odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwcgYIKwYBBQUHMAKGZmh0dHA6Ly9jY21lZWFzdHVzMmV1YXBwa2kuZWFzdHVzMmV1YXAucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmV1YXBpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAndPCPc-CmjHOQpHPVSFI4dsJ3mAAA9L0QPDWwmXXvm66R08WToYQA9QCpkqxZEzl69AhSTR5x65hpeRv8xhwwj57QIuBD6rfMRghZH83T4x3bdOI4KmhFi_uY_52-cou5_xf0DyGAI_C77U5rC8TmVil8EsUCojV8rWkZXUBQSKZMaC1gzmzWW3pgKG9zwbD6J1M_7PW6f_zhE9KvGfBrLALoabdK0H_in5p3CyRMQee9pXSpsictb8cyfBIRU1fRSNmLnOjVSlF_Ll20gYIhnHvetGUxWU0EE9gWSJVUtwbqJjCeDouKPwe2UYUosoETTC7iluHZc0PV9EMfunH2w&s=WzSBI8emrnHTQT4haVC7HbdzkZv-_7jUD66SsPe1DInntIoX_oOyDYS4PhGLGdjVX201bKLHuX0w6s5RtKgnrVKtTiKlJcDq1F9a1mX-EVAWrOZDJQwMBMggomvCJ1RM_zNG5V0p3Yebzberhx3iiu6vVVs82OnKUoJGGpKnMFhYf7pWeE4S-0L0Hih1SyReC1pRwZM0I3-5poDTyKDoCIAwXCyk27Aj__gO_BU_UG32vVvhNHeYqwnYpcBvIRAsJZ4z5uXIrdmdYIBU-_GVIZx8gVXCRb5sAhd5iXruMpzo4oCIivWfEHpVCr2uh7bi5wRotl4vKJ3WM52EKYk0Ug&h=Gg58e4wtXPsNRouZe-_S77NlZJD0o4rb58WcW79ZvVs + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=352782de-cadf-4f14-ad97-08cd2617ef55/eastus2euap/b79f25ad-83c4-4472-a621-d6f74168bd8e + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: E5D2AEF8AE394447B675FC0781F35545 Ref B: PNQ231110906042 Ref C: 2026-07-21T05:00:00Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - backup vault create + Connection: + - keep-alive + ParameterSetName: + - -n -g --location + User-Agent: + - AZURECLI/2.88.0 azsdk-python-core/1.39.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationStatus/MjA0NzsyNjYzODgwNS0yMmFkLTRlZTEtYTFlYi0wYTk3OTYwZWQzN2M=?api-version=2025-08-01&t=638971692489545724&c=MIIIpDCCBoygAwIBAgITFgIdx-8P5Q2flkVe0wABAh3H7zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUxMDIwMTM0ODIxWhcNMjYwMTE4MTM0ODIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALJsx40wbBQQVymBKxEYB3QsXs7DWrmkLk1cvGC9Oh6ZUsiS6z4fZ9KUiL7u4Cb1R-5gfYTplSDkCfn9Y776fzY9tgxKTFF2KMooWQSUUNfMYuwrWFbbHGDx79k-SN6J44MhkxgVnvirjK5cOgtR1YwGjnk0x5Ea3-szYPplTQi12yBEDft-JR3YCKn54jq1stV1W2hRp_2g1BQImqyuswXZKY2DD-s3bQClN3clms4KDqdtTyXsWYLLd1wyrriHRsQnNbYpC1EqjwDyNGLTXHMVXKbeUefj5AwkYLnb77HgLc0IW7nFQwaOLB01n0OsHuhWZeUiilCDsiV76B_8MF0CAwEAAaOCBJEwggSNMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAdoGCCsGAQUFBwEBBIIBzDCCAcgwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDEuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDQuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwHQYDVR0OBBYEFBIs_XIgrlYGjVV6tC88QEhsK39fMA4GA1UdDwEB_wQEAwIFoDCCATUGA1UdHwSCASwwggEoMIIBJKCCASCgggEchkJodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMB8GA1UdIwQYMBaAFEijrWB1am_sYPNpVdEAsTJX_GzkMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAgEAoWGeh2L-xOp4WFwNcK7-42nE8XWzyiVfNq-en8umv6B7FIlZBqRTSHucIlGoZqT7uEkuOIkyfwKUKMHeX3kte0w5f4gSgSX-JsexZj509BqurtDEgPbEjh9zUpbDAM7sODNvfiZ0HVF6sREKDyDIRGhYl_C7qO6FPNUH0wiEMRNI92WewkvN5kxHFBO56OS26He5ElMpeDPNifRXSj2RrthZNiLhtVNqOXCXV8HvAO-8PBPQGpetO260pqROBjblZfst9LCba3YKdZ8o2ojOeG5_ANB5mSX3bsBsY2ULkbRKgNBi5AXJ7q0-n01yM6-uiSvZ8wrkHLfDJ6KlzSDTLJpoVa8AUeZoPEhJgyQInNCPK5nFOD-F1QNRwQj-B-s7y16iUVZiLZ3hkxODdrbMjfPRL2P3DYn1cg-jZVq0xDX1aSlRyQq6qi9xZ9RfBPeOrsZ3SHGm0XIJdlqtaYt0Evo6fWKiFXuJ-H6nf5Qy8sLTk2q160CH2IgsW5_tA0n0ySGt5n-9j610wwPdH6ImEQ1jli9U8Ur82WjB7qQhpmYPuHOyytAGttfk1271zkw5TOpkzJfGWvT5zYv436XCj6pouSk2GJmG1iR-9pO4kPK1LWp3ujV-IXZjP_-xg0wwwsvc0BDJJZZk4tElY91ySFzLXlN8QfTH67VHl7D8ILg&s=ac2MKMY2qPVr7YXz5eXfff1WqTdxYvpD_iiUdbgmY8epWX_JOs69-67TP-GG3IsEY_yidkS4NB9mmgd70s80o855RV63uRpGy8fGEamGJyo-MUNdPx6WjFJ_xq1_LR5aajqebDRu-J2jpdDQpEGsAouq9sv8PXNr7pIF_kCHrZrob4YI25YS8JvdV5qNJGU2y4GDW1Ezt1fYGCdZ0Y3WA_soSCR5v3tpUhWymj103NdgC3DWbf3ZodsSJR2FH0BGpN6F6oLCmD6WFmViS-cHbvS9pGMnDfYmvdDVmMORAla7s_aQX98a8v1dSTMl4LXc_JHA5v4en0qxLKZddCKOSw&h=P9Om83B0JK_lbjBDBeWJcvW9udcIF5KN2pcoXe0k12U + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationStatus/MjA0NzsxN2MyMmYxZi05M2FmLTRhYzItOTY3ZS00OWVkYTY4ZDFkYWM=?api-version=2026-05-01&t=639202067994580514&c=MIIHkTCCBnmgAwIBAgIRAMPsbVCM-ZcwGT3mW_Wsv5cwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwNzI4NTRaFw0yNjEwMDUxMzI4NTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAweoM3MIIqsaOjf7y-fH0V5jELLBVlh5dQFlQmu6JkyEUDQcSVQIza8SKoyGF0D3BgRTvgSgFPS6pmRE88kulnAEjmSIzlys0PqqwJHvmSGKzYDERg6NMZ4-Cxxr7oCd9H87eR28jQN8jhwL-a9XmVb2vb5YdhKA3Z91kBMJY1LhsgzwgNlddueA3bgeA8BgIx2b4ywT3RFnXOAWlACdU_pKkkNAvEZQ6Ho7USd16hlAd-e8iVvd4HGJOHBQs_J3ZMPFJrayHR1kV3bwaHVmfbZtn9blBhf_IemfKp1ZulGW03s-l3-2lEA6Je5JxsbyyI3h2Ltx_02WW433-Rq22wQIDAQABo4IEjjCCBIowgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUmfLBSzgTKyBJ-0QftN6h07xoKJIwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGuBgNVHR8EggGlMIIBoTBooGagZIZiaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzYvY3VycmVudC5jcmwwaqBooGaGZGh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzYvY3VycmVudC5jcmwwWaBXoFWGU2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS82L2N1cnJlbnQuY3JsMG6gbKBqhmhodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNi9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCkD9mxCmFBmLSKGw3hSzV9aN7qJSlfFvJNweyYBnLXB79nGi4-UMRV0spiSnpD02BnIBkM29cWXGGvoOJBxWgwqL_tL80GSXBDadyPmHaopkfHoPILW6dBQLQRmo5DCUckhdpqgN5JTNseFeHuNQynIZz4inH0oLpy9ZjSr4XxH9qbTNO6NDQgOHDaVRLqeWmkfbrkJF62d-r32RLypW-FVbMzJVTED7tIMOjUuU2jVrnVnPvG-fZVOPvgqOFiliiMsZprtGzIoOxcf3wFNch9wXgkcxUFspHG34eGMR_oYRNmcMPHlRJjwJqvOWVa8md3dnNPRj_w4Lq_3GxateqM&s=lynPFDPXFfEaIgK4-Dql6l8FBoZTwD9l9WDVqfditETi5oDc63urjZu0t2VpeYb-IqJ-fc_uhV_FIVeGuq-0sEwDgukkS82U8reMXRYCHE2AKauBC7wUsJ88iys_CnJ3A2__vklyg2mDLhzHPZ2E8sd98RwemwX3p_rDomB2s8W06uBYkFDIQmVlNE2CmH5xejsMGPgTLMfHJSQqFMkPgeQjiKOTO9mzRm6MzBzpGDrNFXIJiMW9phKAqC9wjuvG7NMWgIcWsk9roeMrHOeCGJFEFmlYPTMMvhxaPkyIqNZTEvkD--vKn9W4r29uTcMY_QBX84fISD5Gp0S7EhOO1A&h=DF8tdrVjsMgKTdctZ8YMQwFXpr_z5icZudL_h2CTmIY response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationStatus/MjA0NzsyNjYzODgwNS0yMmFkLTRlZTEtYTFlYi0wYTk3OTYwZWQzN2M=\",\r\n - \ \"name\": \"MjA0NzsyNjYzODgwNS0yMmFkLTRlZTEtYTFlYi0wYTk3OTYwZWQzN2M=\",\r\n + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationStatus/MjA0NzsxN2MyMmYxZi05M2FmLTRhYzItOTY3ZS00OWVkYTY4ZDFkYWM=\",\r\n + \ \"name\": \"MjA0NzsxN2MyMmYxZi05M2FmLTRhYzItOTY3ZS00OWVkYTY4ZDFkYWM=\",\r\n \ \"status\": \"Succeeded\"\r\n}" headers: cache-control: @@ -139,7 +192,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 27 Oct 2025 13:40:50 GMT + - Tue, 21 Jul 2026 05:01:01 GMT expires: - '-1' pragma: @@ -151,11 +204,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=12f8ea5c-1212-449e-b31c-0a574f43076e/eastus2euap/9ffaa625-ab03-4d95-818f-29a41563bbe5 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=352782de-cadf-4f14-ad97-08cd2617ef55/eastus2euap/54270318-a066-4b3e-bdc2-6acdcedfc984 x-ms-throttling-version: - v2 x-msedge-ref: - - 'Ref A: 66DA8EC6258349F8B9791A576567A7B9 Ref B: MAA201060514019 Ref C: 2025-10-27T13:40:50Z' + - 'Ref A: B35371F882A94CE28F3B85257E7D419C Ref B: PNQ231110906042 Ref C: 2026-07-21T05:01:01Z' status: code: 200 message: OK @@ -173,21 +226,21 @@ interactions: ParameterSetName: - -n -g --location User-Agent: - - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.11.9 (Windows-10-10.0.26200-SP0) + - AZURECLI/2.88.0 azsdk-python-core/1.39.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2025-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2026-05-01 response: body: - string: '{"location":"eastus2euap","name":"clitest-vault000002","etag":"W/\"datetime''2025-10-27T13%3A40%3A49.6290441Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","monitoringSettings":{"azureMonitorAlertSettings":{"alertsForAllJobFailures":"Enabled","alertsForAllReplicationIssues":"Enabled","alertsForAllFailoverIssues":"Enabled"},"classicAlertSettings":{"alertsForCriticalOperations":"Enabled","emailNotificationsForSiteRecovery":"Enabled"}},"backupStorageVersion":"Unassigned","securitySettings":{"softDeleteSettings":{"softDeleteRetentionPeriodInDays":14,"softDeleteState":"AlwaysON","enhancedSecurityState":"AlwaysON"},"multiUserAuthorization":"Disabled","sourceScanConfiguration":{"state":"Disabled"}},"redundancySettings":{"standardTierStorageRedundancy":"GeoRedundant","crossRegionRestore":"Disabled"},"secureScore":"Adequate","bcdrSecurityLevel":"Good","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' + string: '{"location":"eastus2euap","name":"clitest-vault000002","etag":"W/\"datetime''2026-07-21T05%3A01%3A00.2552071Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","monitoringSettings":{"azureMonitorAlertSettings":{"alertsForAllJobFailures":"Enabled","alertsForAllReplicationIssues":"Enabled","alertsForAllFailoverIssues":"Enabled"},"classicAlertSettings":{"alertsForCriticalOperations":"Enabled","emailNotificationsForSiteRecovery":"Enabled"}},"costManagementSettings":{"granularityLevel":"VaultLevel"},"backupStorageVersion":"Unassigned","securitySettings":{"softDeleteSettings":{"softDeleteRetentionPeriodInDays":14,"softDeleteState":"AlwaysON","enhancedSecurityState":"AlwaysON"},"multiUserAuthorization":"Disabled","sourceScanConfiguration":{"state":"Disabled"}},"redundancySettings":{"standardTierStorageRedundancy":"GeoRedundant","crossRegionRestore":"Disabled"},"secureScore":"Adequate","bcdrSecurityLevel":"Good","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' headers: cache-control: - no-cache content-length: - - '1310' + - '1369' content-type: - application/json; charset=utf-8 date: - - Mon, 27 Oct 2025 13:40:52 GMT + - Tue, 21 Jul 2026 05:01:02 GMT expires: - '-1' pragma: @@ -201,7 +254,7 @@ interactions: x-ms-throttling-version: - v2 x-msedge-ref: - - 'Ref A: AA7E22B0E0104D6AA9D8D30FC2A96976 Ref B: MAA201060516017 Ref C: 2025-10-27T13:40:51Z' + - 'Ref A: D08E18F883A4469FA1192717A46C4977 Ref B: PNQ231110909025 Ref C: 2026-07-21T05:01:02Z' status: code: 200 message: OK @@ -219,9 +272,9 @@ interactions: ParameterSetName: - -n -g --location User-Agent: - - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.11.9 (Windows-10-10.0.26200-SP0) + - AZURECLI/2.88.0 azsdk-python-core/1.39.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003?api-version=2025-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003?api-version=2026-05-01 response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.RecoveryServices/vaults/clitest-vault000003'' @@ -235,7 +288,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 27 Oct 2025 13:40:53 GMT + - Tue, 21 Jul 2026 05:01:03 GMT expires: - '-1' pragma: @@ -249,7 +302,7 @@ interactions: x-ms-failure-cause: - gateway x-msedge-ref: - - 'Ref A: B19699F41514405CA398AFDFA5EA2A8B Ref B: MAA201060513011 Ref C: 2025-10-27T13:40:53Z' + - 'Ref A: 68D66A2ABCC84C28A90FF5755D756060 Ref B: PNQ231110908036 Ref C: 2026-07-21T05:01:03Z' status: code: 404 message: Not Found @@ -260,7 +313,8 @@ interactions: "Enabled", "monitoringSettings": {"azureMonitorAlertSettings": {"alertsForAllJobFailures": "Enabled", "alertsForAllReplicationIssues": "Enabled", "alertsForAllFailoverIssues": "Enabled"}, "classicAlertSettings": {"alertsForCriticalOperations": "Enabled", - "emailNotificationsForSiteRecovery": "Enabled"}}}}' + "emailNotificationsForSiteRecovery": "Enabled"}}, "costManagementSettings": + {"granularityLevel": "VaultLevel"}}}' headers: Accept: - application/json @@ -271,29 +325,29 @@ interactions: Connection: - keep-alive Content-Length: - - '553' + - '615' Content-Type: - application/json ParameterSetName: - -n -g --location User-Agent: - - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.11.9 (Windows-10-10.0.26200-SP0) + - AZURECLI/2.88.0 azsdk-python-core/1.39.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003?api-version=2025-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003?api-version=2026-05-01 response: body: - string: '{"location":"eastus2euap","name":"clitest-vault000003","etag":"W/\"datetime''2025-10-27T13%3A40%3A55.8759996Z''\"","properties":{"provisioningState":"Provisioning","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","monitoringSettings":{"azureMonitorAlertSettings":{"alertsForAllJobFailures":"Enabled","alertsForAllReplicationIssues":"Enabled","alertsForAllFailoverIssues":"Enabled"},"classicAlertSettings":{"alertsForCriticalOperations":"Enabled","emailNotificationsForSiteRecovery":"Enabled"}},"securitySettings":{"softDeleteSettings":{"softDeleteRetentionPeriodInDays":14,"softDeleteState":"AlwaysON","enhancedSecurityState":"AlwaysON"},"multiUserAuthorization":"Invalid","sourceScanConfiguration":{"state":"Disabled"}},"redundancySettings":{"standardTierStorageRedundancy":"GeoRedundant","crossRegionRestore":"Disabled"},"secureScore":"Adequate","bcdrSecurityLevel":"Good","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' + string: '{"location":"eastus2euap","name":"clitest-vault000003","etag":"W/\"datetime''2026-07-21T05%3A01%3A06.2685256Z''\"","properties":{"provisioningState":"Provisioning","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","monitoringSettings":{"azureMonitorAlertSettings":{"alertsForAllJobFailures":"Enabled","alertsForAllReplicationIssues":"Enabled","alertsForAllFailoverIssues":"Enabled"},"classicAlertSettings":{"alertsForCriticalOperations":"Enabled","emailNotificationsForSiteRecovery":"Enabled"}},"costManagementSettings":{"granularityLevel":"VaultLevel"},"securitySettings":{"softDeleteSettings":{"softDeleteRetentionPeriodInDays":14,"softDeleteState":"AlwaysON","enhancedSecurityState":"AlwaysON"},"multiUserAuthorization":"Invalid","sourceScanConfiguration":{"state":"Disabled"}},"redundancySettings":{"standardTierStorageRedundancy":"GeoRedundant","crossRegionRestore":"Disabled"},"secureScore":"Adequate","bcdrSecurityLevel":"Good","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/operationStatus/MjA0NzthZWMyOTdiMC04NDRjLTQ5YTYtYmViOC1lNDRiYjNjZjM4Y2I=?api-version=2025-08-01&t=638971692560434928&c=MIIIpDCCBoygAwIBAgITFgIdx-8P5Q2flkVe0wABAh3H7zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUxMDIwMTM0ODIxWhcNMjYwMTE4MTM0ODIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALJsx40wbBQQVymBKxEYB3QsXs7DWrmkLk1cvGC9Oh6ZUsiS6z4fZ9KUiL7u4Cb1R-5gfYTplSDkCfn9Y776fzY9tgxKTFF2KMooWQSUUNfMYuwrWFbbHGDx79k-SN6J44MhkxgVnvirjK5cOgtR1YwGjnk0x5Ea3-szYPplTQi12yBEDft-JR3YCKn54jq1stV1W2hRp_2g1BQImqyuswXZKY2DD-s3bQClN3clms4KDqdtTyXsWYLLd1wyrriHRsQnNbYpC1EqjwDyNGLTXHMVXKbeUefj5AwkYLnb77HgLc0IW7nFQwaOLB01n0OsHuhWZeUiilCDsiV76B_8MF0CAwEAAaOCBJEwggSNMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAdoGCCsGAQUFBwEBBIIBzDCCAcgwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDEuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDQuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwHQYDVR0OBBYEFBIs_XIgrlYGjVV6tC88QEhsK39fMA4GA1UdDwEB_wQEAwIFoDCCATUGA1UdHwSCASwwggEoMIIBJKCCASCgggEchkJodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMB8GA1UdIwQYMBaAFEijrWB1am_sYPNpVdEAsTJX_GzkMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAgEAoWGeh2L-xOp4WFwNcK7-42nE8XWzyiVfNq-en8umv6B7FIlZBqRTSHucIlGoZqT7uEkuOIkyfwKUKMHeX3kte0w5f4gSgSX-JsexZj509BqurtDEgPbEjh9zUpbDAM7sODNvfiZ0HVF6sREKDyDIRGhYl_C7qO6FPNUH0wiEMRNI92WewkvN5kxHFBO56OS26He5ElMpeDPNifRXSj2RrthZNiLhtVNqOXCXV8HvAO-8PBPQGpetO260pqROBjblZfst9LCba3YKdZ8o2ojOeG5_ANB5mSX3bsBsY2ULkbRKgNBi5AXJ7q0-n01yM6-uiSvZ8wrkHLfDJ6KlzSDTLJpoVa8AUeZoPEhJgyQInNCPK5nFOD-F1QNRwQj-B-s7y16iUVZiLZ3hkxODdrbMjfPRL2P3DYn1cg-jZVq0xDX1aSlRyQq6qi9xZ9RfBPeOrsZ3SHGm0XIJdlqtaYt0Evo6fWKiFXuJ-H6nf5Qy8sLTk2q160CH2IgsW5_tA0n0ySGt5n-9j610wwPdH6ImEQ1jli9U8Ur82WjB7qQhpmYPuHOyytAGttfk1271zkw5TOpkzJfGWvT5zYv436XCj6pouSk2GJmG1iR-9pO4kPK1LWp3ujV-IXZjP_-xg0wwwsvc0BDJJZZk4tElY91ySFzLXlN8QfTH67VHl7D8ILg&s=c_343SUuv6vvLtjmQ5BReWQV0J55UcXkCB9Z4J7FIbjV50G5YIMAFT1haOmq_KyR6nGM-u0x40OGKk4NKzPLiHHtZYlmzHARBgFxuZmyYcyu_Gu1o3MdN5-gXVIR3wSYGW1PhKM82OIPloOoomrqrQUgKO-BzAjNnQPnwbUI7SIUH0De3ugp9SKnrbmK7mtltfAj0TJpDtG4MQ1inPsRvy6TDGlDgoXslUdHZXfr52YsKsktrjCu857-k2JPN1xMMD5YyVcwPXlVuScdaTf_UUN1ZW-Qn8XNfnp_rbe6-sMdqzqHc9Z5hVZt1hG-glmfTdkzi4XpyfqQq6CYyXB7Bw&h=YTTbmIlfSPz9sFsRdhDl5Yy3W2zJp-AHBhxQPvWTVhY + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/operationStatus/MjA0Nzs2YzU3MWMzZi0xNGU3LTQyNDUtYjcxZC1mMjkxMTkxNzU2OGU=?api-version=2026-05-01&t=639202068663964694&c=MIIH9TCCBt2gAwIBAgIRAKnTo6mKeliSYj1GLETof4IwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVUyQyBDQSAwMTAeFw0yNjA3MDIxNTU4NDNaFw0yNjA5MjcyMTU4NDNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAlDQMyX5eVlNoyHQy97t41xstx7ISW3Jpt0fmktBr-SytLFjS2PEwnW3DFpc-bQgfDfHkKP0_FRLvm_mazEvS5KYzyX6nFjGqQTX3SfneJV5jo7nOwYnQHFTbkg0Dngz7AipTBy6yAiQqKMhRo_D-N4o3stwmKHeA0tAiEOx4G_PiAZBVgwqD_hS-porAKnsf-m7-vYsa-g9Cw0SQ2t7YIFgfqGifFcAH79L7QF5n4-toqH20MDZrR10dXpjNK50DvRiltXMo7xC198sVfC6ISY8hDbiFDpsKgL_lz-pJ2kyYJNyq1NUfS79AS70Bkl13eaOYbl8go_Oo41Ma5ArEgQIDAQABo4IE8jCCBO4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7Mv1WvWn7sAfft9pF9lwNBkNam0wHwYDVR0jBBgwFoAUz1EBqulDLGR2G0rwqsDykvhPw7swggHiBgNVHR8EggHZMIIB1TB1oHOgcYZvaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHegdaBzhnFodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyZXVhcC9jcmxzL2NjbWVlYXN0dXMyZXVhcHBraS9jY21lZWFzdHVzMmV1YXBpY2EwMS82NS9jdXJyZW50LmNybDBmoGSgYoZgaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHugeaB3hnVodHRwOi8vY2NtZWVhc3R1czJldWFwcGtpLmVhc3R1czJldWFwLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJldWFwaWNhMDEvNjUvY3VycmVudC5jcmwwggHnBggrBgEFBQcBAQSCAdkwggHVMHgGCCsGAQUFBzAChmxodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwegYIKwYBBQUHMAKGbmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NhY2VydHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxL2NlcnQuY2VyMGkGCCsGAQUFBzAChl1odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwcgYIKwYBBQUHMAKGZmh0dHA6Ly9jY21lZWFzdHVzMmV1YXBwa2kuZWFzdHVzMmV1YXAucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmV1YXBpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAndPCPc-CmjHOQpHPVSFI4dsJ3mAAA9L0QPDWwmXXvm66R08WToYQA9QCpkqxZEzl69AhSTR5x65hpeRv8xhwwj57QIuBD6rfMRghZH83T4x3bdOI4KmhFi_uY_52-cou5_xf0DyGAI_C77U5rC8TmVil8EsUCojV8rWkZXUBQSKZMaC1gzmzWW3pgKG9zwbD6J1M_7PW6f_zhE9KvGfBrLALoabdK0H_in5p3CyRMQee9pXSpsictb8cyfBIRU1fRSNmLnOjVSlF_Ll20gYIhnHvetGUxWU0EE9gWSJVUtwbqJjCeDouKPwe2UYUosoETTC7iluHZc0PV9EMfunH2w&s=IikkHZXBvdSey-gRe3wxuCBAV_0hFWqUT-dbnCZwdsM6pkY88_iQRXSLEHHVAAAsWVFwavNIhn8sgvzXTaSq2rMGD74ty3QiRxfhISFj5kLmMH4Wp-eKjsI3-x8GMoSdjRTEvNgxYe8mVmCHuRvj697XhtNEEjTtiZ3lLI4C6Fkz5kPv5A0a3S1jUQrr7-XG881Bpg2q2FNSQsBV2i5Cuvi7fJvM8qzr44d2bOMLsGJ14LfR62mg5g8luaR4m7cemPWnSa0Tg4kJRrrZHc_afOh1FQUYYzhu-y0mFsHBJT3F881IWS3zWjjcN6sbSZbiZxCwNTJ0LCfeX4--09aBeg&h=9ajXcNekwATT0WI3le4b5CLD2C3jqRhrhnG3DIdtN64 cache-control: - no-cache content-length: - - '1276' + - '1335' content-type: - application/json; charset=utf-8 date: - - Mon, 27 Oct 2025 13:40:55 GMT + - Tue, 21 Jul 2026 05:01:06 GMT expires: - '-1' pragma: @@ -305,13 +359,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=12f8ea5c-1212-449e-b31c-0a574f43076e/eastus2euap/59591847-b863-4655-bea4-8a515c58bd13 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=352782de-cadf-4f14-ad97-08cd2617ef55/eastus2euap/423b4341-8235-4f66-90a9-058288e4a86b x-ms-ratelimit-remaining-subscription-resource-requests: - '799' x-ms-throttling-version: - v1 x-msedge-ref: - - 'Ref A: CB073374617B44C0A0A0101B5653EECA Ref B: MAA201060516029 Ref C: 2025-10-27T13:40:54Z' + - 'Ref A: CFB48E637D74451BBF1D493BE6DD7263 Ref B: PNQ231110907023 Ref C: 2026-07-21T05:01:04Z' status: code: 201 message: Created @@ -329,17 +383,17 @@ interactions: ParameterSetName: - -n -g --location User-Agent: - - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.11.9 (Windows-10-10.0.26200-SP0) + - AZURECLI/2.88.0 azsdk-python-core/1.39.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/operationStatus/MjA0NzthZWMyOTdiMC04NDRjLTQ5YTYtYmViOC1lNDRiYjNjZjM4Y2I=?api-version=2025-08-01&t=638971692560434928&c=MIIIpDCCBoygAwIBAgITFgIdx-8P5Q2flkVe0wABAh3H7zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUxMDIwMTM0ODIxWhcNMjYwMTE4MTM0ODIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALJsx40wbBQQVymBKxEYB3QsXs7DWrmkLk1cvGC9Oh6ZUsiS6z4fZ9KUiL7u4Cb1R-5gfYTplSDkCfn9Y776fzY9tgxKTFF2KMooWQSUUNfMYuwrWFbbHGDx79k-SN6J44MhkxgVnvirjK5cOgtR1YwGjnk0x5Ea3-szYPplTQi12yBEDft-JR3YCKn54jq1stV1W2hRp_2g1BQImqyuswXZKY2DD-s3bQClN3clms4KDqdtTyXsWYLLd1wyrriHRsQnNbYpC1EqjwDyNGLTXHMVXKbeUefj5AwkYLnb77HgLc0IW7nFQwaOLB01n0OsHuhWZeUiilCDsiV76B_8MF0CAwEAAaOCBJEwggSNMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAdoGCCsGAQUFBwEBBIIBzDCCAcgwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDEuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDQuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwHQYDVR0OBBYEFBIs_XIgrlYGjVV6tC88QEhsK39fMA4GA1UdDwEB_wQEAwIFoDCCATUGA1UdHwSCASwwggEoMIIBJKCCASCgggEchkJodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMB8GA1UdIwQYMBaAFEijrWB1am_sYPNpVdEAsTJX_GzkMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAgEAoWGeh2L-xOp4WFwNcK7-42nE8XWzyiVfNq-en8umv6B7FIlZBqRTSHucIlGoZqT7uEkuOIkyfwKUKMHeX3kte0w5f4gSgSX-JsexZj509BqurtDEgPbEjh9zUpbDAM7sODNvfiZ0HVF6sREKDyDIRGhYl_C7qO6FPNUH0wiEMRNI92WewkvN5kxHFBO56OS26He5ElMpeDPNifRXSj2RrthZNiLhtVNqOXCXV8HvAO-8PBPQGpetO260pqROBjblZfst9LCba3YKdZ8o2ojOeG5_ANB5mSX3bsBsY2ULkbRKgNBi5AXJ7q0-n01yM6-uiSvZ8wrkHLfDJ6KlzSDTLJpoVa8AUeZoPEhJgyQInNCPK5nFOD-F1QNRwQj-B-s7y16iUVZiLZ3hkxODdrbMjfPRL2P3DYn1cg-jZVq0xDX1aSlRyQq6qi9xZ9RfBPeOrsZ3SHGm0XIJdlqtaYt0Evo6fWKiFXuJ-H6nf5Qy8sLTk2q160CH2IgsW5_tA0n0ySGt5n-9j610wwPdH6ImEQ1jli9U8Ur82WjB7qQhpmYPuHOyytAGttfk1271zkw5TOpkzJfGWvT5zYv436XCj6pouSk2GJmG1iR-9pO4kPK1LWp3ujV-IXZjP_-xg0wwwsvc0BDJJZZk4tElY91ySFzLXlN8QfTH67VHl7D8ILg&s=c_343SUuv6vvLtjmQ5BReWQV0J55UcXkCB9Z4J7FIbjV50G5YIMAFT1haOmq_KyR6nGM-u0x40OGKk4NKzPLiHHtZYlmzHARBgFxuZmyYcyu_Gu1o3MdN5-gXVIR3wSYGW1PhKM82OIPloOoomrqrQUgKO-BzAjNnQPnwbUI7SIUH0De3ugp9SKnrbmK7mtltfAj0TJpDtG4MQ1inPsRvy6TDGlDgoXslUdHZXfr52YsKsktrjCu857-k2JPN1xMMD5YyVcwPXlVuScdaTf_UUN1ZW-Qn8XNfnp_rbe6-sMdqzqHc9Z5hVZt1hG-glmfTdkzi4XpyfqQq6CYyXB7Bw&h=YTTbmIlfSPz9sFsRdhDl5Yy3W2zJp-AHBhxQPvWTVhY + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/operationStatus/MjA0Nzs2YzU3MWMzZi0xNGU3LTQyNDUtYjcxZC1mMjkxMTkxNzU2OGU=?api-version=2026-05-01&t=639202068663964694&c=MIIH9TCCBt2gAwIBAgIRAKnTo6mKeliSYj1GLETof4IwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVUyQyBDQSAwMTAeFw0yNjA3MDIxNTU4NDNaFw0yNjA5MjcyMTU4NDNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAlDQMyX5eVlNoyHQy97t41xstx7ISW3Jpt0fmktBr-SytLFjS2PEwnW3DFpc-bQgfDfHkKP0_FRLvm_mazEvS5KYzyX6nFjGqQTX3SfneJV5jo7nOwYnQHFTbkg0Dngz7AipTBy6yAiQqKMhRo_D-N4o3stwmKHeA0tAiEOx4G_PiAZBVgwqD_hS-porAKnsf-m7-vYsa-g9Cw0SQ2t7YIFgfqGifFcAH79L7QF5n4-toqH20MDZrR10dXpjNK50DvRiltXMo7xC198sVfC6ISY8hDbiFDpsKgL_lz-pJ2kyYJNyq1NUfS79AS70Bkl13eaOYbl8go_Oo41Ma5ArEgQIDAQABo4IE8jCCBO4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7Mv1WvWn7sAfft9pF9lwNBkNam0wHwYDVR0jBBgwFoAUz1EBqulDLGR2G0rwqsDykvhPw7swggHiBgNVHR8EggHZMIIB1TB1oHOgcYZvaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHegdaBzhnFodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyZXVhcC9jcmxzL2NjbWVlYXN0dXMyZXVhcHBraS9jY21lZWFzdHVzMmV1YXBpY2EwMS82NS9jdXJyZW50LmNybDBmoGSgYoZgaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHugeaB3hnVodHRwOi8vY2NtZWVhc3R1czJldWFwcGtpLmVhc3R1czJldWFwLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJldWFwaWNhMDEvNjUvY3VycmVudC5jcmwwggHnBggrBgEFBQcBAQSCAdkwggHVMHgGCCsGAQUFBzAChmxodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwegYIKwYBBQUHMAKGbmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NhY2VydHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxL2NlcnQuY2VyMGkGCCsGAQUFBzAChl1odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwcgYIKwYBBQUHMAKGZmh0dHA6Ly9jY21lZWFzdHVzMmV1YXBwa2kuZWFzdHVzMmV1YXAucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmV1YXBpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAndPCPc-CmjHOQpHPVSFI4dsJ3mAAA9L0QPDWwmXXvm66R08WToYQA9QCpkqxZEzl69AhSTR5x65hpeRv8xhwwj57QIuBD6rfMRghZH83T4x3bdOI4KmhFi_uY_52-cou5_xf0DyGAI_C77U5rC8TmVil8EsUCojV8rWkZXUBQSKZMaC1gzmzWW3pgKG9zwbD6J1M_7PW6f_zhE9KvGfBrLALoabdK0H_in5p3CyRMQee9pXSpsictb8cyfBIRU1fRSNmLnOjVSlF_Ll20gYIhnHvetGUxWU0EE9gWSJVUtwbqJjCeDouKPwe2UYUosoETTC7iluHZc0PV9EMfunH2w&s=IikkHZXBvdSey-gRe3wxuCBAV_0hFWqUT-dbnCZwdsM6pkY88_iQRXSLEHHVAAAsWVFwavNIhn8sgvzXTaSq2rMGD74ty3QiRxfhISFj5kLmMH4Wp-eKjsI3-x8GMoSdjRTEvNgxYe8mVmCHuRvj697XhtNEEjTtiZ3lLI4C6Fkz5kPv5A0a3S1jUQrr7-XG881Bpg2q2FNSQsBV2i5Cuvi7fJvM8qzr44d2bOMLsGJ14LfR62mg5g8luaR4m7cemPWnSa0Tg4kJRrrZHc_afOh1FQUYYzhu-y0mFsHBJT3F881IWS3zWjjcN6sbSZbiZxCwNTJ0LCfeX4--09aBeg&h=9ajXcNekwATT0WI3le4b5CLD2C3jqRhrhnG3DIdtN64 response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/operationStatus/MjA0NzthZWMyOTdiMC04NDRjLTQ5YTYtYmViOC1lNDRiYjNjZjM4Y2I=\",\r\n - \ \"name\": \"MjA0NzthZWMyOTdiMC04NDRjLTQ5YTYtYmViOC1lNDRiYjNjZjM4Y2I=\",\r\n + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/operationStatus/MjA0Nzs2YzU3MWMzZi0xNGU3LTQyNDUtYjcxZC1mMjkxMTkxNzU2OGU=\",\r\n + \ \"name\": \"MjA0Nzs2YzU3MWMzZi0xNGU3LTQyNDUtYjcxZC1mMjkxMTkxNzU2OGU=\",\r\n \ \"status\": \"InProgress\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/operationStatus/MjA0NzthZWMyOTdiMC04NDRjLTQ5YTYtYmViOC1lNDRiYjNjZjM4Y2I=?api-version=2025-08-01&t=638971692575417207&c=MIIIpDCCBoygAwIBAgITFgIdx-8P5Q2flkVe0wABAh3H7zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUxMDIwMTM0ODIxWhcNMjYwMTE4MTM0ODIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALJsx40wbBQQVymBKxEYB3QsXs7DWrmkLk1cvGC9Oh6ZUsiS6z4fZ9KUiL7u4Cb1R-5gfYTplSDkCfn9Y776fzY9tgxKTFF2KMooWQSUUNfMYuwrWFbbHGDx79k-SN6J44MhkxgVnvirjK5cOgtR1YwGjnk0x5Ea3-szYPplTQi12yBEDft-JR3YCKn54jq1stV1W2hRp_2g1BQImqyuswXZKY2DD-s3bQClN3clms4KDqdtTyXsWYLLd1wyrriHRsQnNbYpC1EqjwDyNGLTXHMVXKbeUefj5AwkYLnb77HgLc0IW7nFQwaOLB01n0OsHuhWZeUiilCDsiV76B_8MF0CAwEAAaOCBJEwggSNMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAdoGCCsGAQUFBwEBBIIBzDCCAcgwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDEuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDQuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwHQYDVR0OBBYEFBIs_XIgrlYGjVV6tC88QEhsK39fMA4GA1UdDwEB_wQEAwIFoDCCATUGA1UdHwSCASwwggEoMIIBJKCCASCgggEchkJodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMB8GA1UdIwQYMBaAFEijrWB1am_sYPNpVdEAsTJX_GzkMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAgEAoWGeh2L-xOp4WFwNcK7-42nE8XWzyiVfNq-en8umv6B7FIlZBqRTSHucIlGoZqT7uEkuOIkyfwKUKMHeX3kte0w5f4gSgSX-JsexZj509BqurtDEgPbEjh9zUpbDAM7sODNvfiZ0HVF6sREKDyDIRGhYl_C7qO6FPNUH0wiEMRNI92WewkvN5kxHFBO56OS26He5ElMpeDPNifRXSj2RrthZNiLhtVNqOXCXV8HvAO-8PBPQGpetO260pqROBjblZfst9LCba3YKdZ8o2ojOeG5_ANB5mSX3bsBsY2ULkbRKgNBi5AXJ7q0-n01yM6-uiSvZ8wrkHLfDJ6KlzSDTLJpoVa8AUeZoPEhJgyQInNCPK5nFOD-F1QNRwQj-B-s7y16iUVZiLZ3hkxODdrbMjfPRL2P3DYn1cg-jZVq0xDX1aSlRyQq6qi9xZ9RfBPeOrsZ3SHGm0XIJdlqtaYt0Evo6fWKiFXuJ-H6nf5Qy8sLTk2q160CH2IgsW5_tA0n0ySGt5n-9j610wwPdH6ImEQ1jli9U8Ur82WjB7qQhpmYPuHOyytAGttfk1271zkw5TOpkzJfGWvT5zYv436XCj6pouSk2GJmG1iR-9pO4kPK1LWp3ujV-IXZjP_-xg0wwwsvc0BDJJZZk4tElY91ySFzLXlN8QfTH67VHl7D8ILg&s=ldp2NWTBxU-QPzIpubRgmAt_5VagO4dMpLte9nWIXxHBOFRWBBQ9CSVfqrZ0TfPV7sYyvj6oHWW_2b7U0EEULYJSMOXQyX6G78JWiQJE_tn0paiuUyYlGeu7fs3xnSsSLpaTl6KSLDwcCoujXbl7HMPOK2wNV-0gggHfnfuNtTG60rKBgEQvcWQwp5mvUr6c4bxE0E5BdY75rJO9vtoLOagHzfgrJGE1SPmQfut5CKnMKpATCzKZNn-8HplIfKQP6g5OjRgion5bLXJOv2AtggrjMUGttgA-PoEvj9eYDGpLObBVnJf3SEegNeJPgHeAuwh0C1mjFq1bthfzuNSr0A&h=EzZfwcMSnNuAM7-h06-OqhZPtXeLBVqPfwaqQLj1-6E + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/operationStatus/MjA0Nzs2YzU3MWMzZi0xNGU3LTQyNDUtYjcxZC1mMjkxMTkxNzU2OGU=?api-version=2026-05-01&t=639202068671982935&c=MIIH9TCCBt2gAwIBAgIRAKnTo6mKeliSYj1GLETof4IwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVUyQyBDQSAwMTAeFw0yNjA3MDIxNTU4NDNaFw0yNjA5MjcyMTU4NDNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAlDQMyX5eVlNoyHQy97t41xstx7ISW3Jpt0fmktBr-SytLFjS2PEwnW3DFpc-bQgfDfHkKP0_FRLvm_mazEvS5KYzyX6nFjGqQTX3SfneJV5jo7nOwYnQHFTbkg0Dngz7AipTBy6yAiQqKMhRo_D-N4o3stwmKHeA0tAiEOx4G_PiAZBVgwqD_hS-porAKnsf-m7-vYsa-g9Cw0SQ2t7YIFgfqGifFcAH79L7QF5n4-toqH20MDZrR10dXpjNK50DvRiltXMo7xC198sVfC6ISY8hDbiFDpsKgL_lz-pJ2kyYJNyq1NUfS79AS70Bkl13eaOYbl8go_Oo41Ma5ArEgQIDAQABo4IE8jCCBO4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7Mv1WvWn7sAfft9pF9lwNBkNam0wHwYDVR0jBBgwFoAUz1EBqulDLGR2G0rwqsDykvhPw7swggHiBgNVHR8EggHZMIIB1TB1oHOgcYZvaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHegdaBzhnFodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyZXVhcC9jcmxzL2NjbWVlYXN0dXMyZXVhcHBraS9jY21lZWFzdHVzMmV1YXBpY2EwMS82NS9jdXJyZW50LmNybDBmoGSgYoZgaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHugeaB3hnVodHRwOi8vY2NtZWVhc3R1czJldWFwcGtpLmVhc3R1czJldWFwLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJldWFwaWNhMDEvNjUvY3VycmVudC5jcmwwggHnBggrBgEFBQcBAQSCAdkwggHVMHgGCCsGAQUFBzAChmxodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwegYIKwYBBQUHMAKGbmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NhY2VydHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxL2NlcnQuY2VyMGkGCCsGAQUFBzAChl1odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwcgYIKwYBBQUHMAKGZmh0dHA6Ly9jY21lZWFzdHVzMmV1YXBwa2kuZWFzdHVzMmV1YXAucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmV1YXBpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAndPCPc-CmjHOQpHPVSFI4dsJ3mAAA9L0QPDWwmXXvm66R08WToYQA9QCpkqxZEzl69AhSTR5x65hpeRv8xhwwj57QIuBD6rfMRghZH83T4x3bdOI4KmhFi_uY_52-cou5_xf0DyGAI_C77U5rC8TmVil8EsUCojV8rWkZXUBQSKZMaC1gzmzWW3pgKG9zwbD6J1M_7PW6f_zhE9KvGfBrLALoabdK0H_in5p3CyRMQee9pXSpsictb8cyfBIRU1fRSNmLnOjVSlF_Ll20gYIhnHvetGUxWU0EE9gWSJVUtwbqJjCeDouKPwe2UYUosoETTC7iluHZc0PV9EMfunH2w&s=CNi6W2-qSiBZJ7h8h936404TsWvui4zBxk9Hrs3WrSvFngVzjzPvi4iZEbXe8ce7F-k0EV8gnk1E9sr7TfNDIKrFz0E5UweULp_fAte7YT8qKiOCe30lN2m57AudMTVSOW1gcLIgWmxd5-UiS11Q_ctJsB_z3VC6cOvVhfRpLKI7Kh7zYVHHhTAz_e47z2DFrWR_k1O3MgHVbXvOr0H2dAZUPwuqBETynRgsLnNcWQi8VQTiJIoeGzfIXe4GPiyyM6UYqDJd4a3Wo5HaK5zM6pX35RyYwGLPzZ2GCwbxiERXsR9kvL8p2WT0hnobTFRof8XN6iKid3gPOuNErgENEQ&h=uQeBTQpcj-g_f4VZEqOZ2sCOgWfDvwpyO9TWwPKVYuA cache-control: - no-cache content-length: @@ -347,11 +401,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 27 Oct 2025 13:40:57 GMT + - Tue, 21 Jul 2026 05:01:07 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/operationResults/MjA0NzthZWMyOTdiMC04NDRjLTQ5YTYtYmViOC1lNDRiYjNjZjM4Y2I=?api-version=2025-08-01&t=638971692575417207&c=MIIIpDCCBoygAwIBAgITFgIdx-8P5Q2flkVe0wABAh3H7zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUxMDIwMTM0ODIxWhcNMjYwMTE4MTM0ODIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALJsx40wbBQQVymBKxEYB3QsXs7DWrmkLk1cvGC9Oh6ZUsiS6z4fZ9KUiL7u4Cb1R-5gfYTplSDkCfn9Y776fzY9tgxKTFF2KMooWQSUUNfMYuwrWFbbHGDx79k-SN6J44MhkxgVnvirjK5cOgtR1YwGjnk0x5Ea3-szYPplTQi12yBEDft-JR3YCKn54jq1stV1W2hRp_2g1BQImqyuswXZKY2DD-s3bQClN3clms4KDqdtTyXsWYLLd1wyrriHRsQnNbYpC1EqjwDyNGLTXHMVXKbeUefj5AwkYLnb77HgLc0IW7nFQwaOLB01n0OsHuhWZeUiilCDsiV76B_8MF0CAwEAAaOCBJEwggSNMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAdoGCCsGAQUFBwEBBIIBzDCCAcgwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDEuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDQuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwHQYDVR0OBBYEFBIs_XIgrlYGjVV6tC88QEhsK39fMA4GA1UdDwEB_wQEAwIFoDCCATUGA1UdHwSCASwwggEoMIIBJKCCASCgggEchkJodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMB8GA1UdIwQYMBaAFEijrWB1am_sYPNpVdEAsTJX_GzkMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAgEAoWGeh2L-xOp4WFwNcK7-42nE8XWzyiVfNq-en8umv6B7FIlZBqRTSHucIlGoZqT7uEkuOIkyfwKUKMHeX3kte0w5f4gSgSX-JsexZj509BqurtDEgPbEjh9zUpbDAM7sODNvfiZ0HVF6sREKDyDIRGhYl_C7qO6FPNUH0wiEMRNI92WewkvN5kxHFBO56OS26He5ElMpeDPNifRXSj2RrthZNiLhtVNqOXCXV8HvAO-8PBPQGpetO260pqROBjblZfst9LCba3YKdZ8o2ojOeG5_ANB5mSX3bsBsY2ULkbRKgNBi5AXJ7q0-n01yM6-uiSvZ8wrkHLfDJ6KlzSDTLJpoVa8AUeZoPEhJgyQInNCPK5nFOD-F1QNRwQj-B-s7y16iUVZiLZ3hkxODdrbMjfPRL2P3DYn1cg-jZVq0xDX1aSlRyQq6qi9xZ9RfBPeOrsZ3SHGm0XIJdlqtaYt0Evo6fWKiFXuJ-H6nf5Qy8sLTk2q160CH2IgsW5_tA0n0ySGt5n-9j610wwPdH6ImEQ1jli9U8Ur82WjB7qQhpmYPuHOyytAGttfk1271zkw5TOpkzJfGWvT5zYv436XCj6pouSk2GJmG1iR-9pO4kPK1LWp3ujV-IXZjP_-xg0wwwsvc0BDJJZZk4tElY91ySFzLXlN8QfTH67VHl7D8ILg&s=WvPSKv1idqdW7ZwXJY3qUtY0p2-T_33iRYYYwjIlySb07NEQigSlIKOLTa4omWakxKZ-2BGjoUyepJGHm30bffoYpQNs9zvcrDpIy0QK7uTgYjnfzxMGdUqSLtONFIvSyvRNhnASVhf-aEryZygmx_nByWYAr171VIuQCJZL-HUuIqG-zCyUAtn9H4Hgf3Zw4jVM2rJRFvHxBlRECZ13Wxd6ql8hH4QwO8jExoaFNnDRu3GCJUoBVSPcDjtJAefGgxt-8Et1P7wj-ID4bf7pvkCuM34lasUI24TQMp590zHoZwJB9qx52x0om_cQrxy480us7DXFbQmwz8xhyH_drA&h=kOB-pR68493nBxGu-WRllAFISEhHdqNEHJu8TnE-7ZA + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/operationResults/MjA0Nzs2YzU3MWMzZi0xNGU3LTQyNDUtYjcxZC1mMjkxMTkxNzU2OGU=?api-version=2026-05-01&t=639202068672139200&c=MIIH9TCCBt2gAwIBAgIRAKnTo6mKeliSYj1GLETof4IwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVUyQyBDQSAwMTAeFw0yNjA3MDIxNTU4NDNaFw0yNjA5MjcyMTU4NDNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAlDQMyX5eVlNoyHQy97t41xstx7ISW3Jpt0fmktBr-SytLFjS2PEwnW3DFpc-bQgfDfHkKP0_FRLvm_mazEvS5KYzyX6nFjGqQTX3SfneJV5jo7nOwYnQHFTbkg0Dngz7AipTBy6yAiQqKMhRo_D-N4o3stwmKHeA0tAiEOx4G_PiAZBVgwqD_hS-porAKnsf-m7-vYsa-g9Cw0SQ2t7YIFgfqGifFcAH79L7QF5n4-toqH20MDZrR10dXpjNK50DvRiltXMo7xC198sVfC6ISY8hDbiFDpsKgL_lz-pJ2kyYJNyq1NUfS79AS70Bkl13eaOYbl8go_Oo41Ma5ArEgQIDAQABo4IE8jCCBO4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7Mv1WvWn7sAfft9pF9lwNBkNam0wHwYDVR0jBBgwFoAUz1EBqulDLGR2G0rwqsDykvhPw7swggHiBgNVHR8EggHZMIIB1TB1oHOgcYZvaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHegdaBzhnFodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyZXVhcC9jcmxzL2NjbWVlYXN0dXMyZXVhcHBraS9jY21lZWFzdHVzMmV1YXBpY2EwMS82NS9jdXJyZW50LmNybDBmoGSgYoZgaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHugeaB3hnVodHRwOi8vY2NtZWVhc3R1czJldWFwcGtpLmVhc3R1czJldWFwLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJldWFwaWNhMDEvNjUvY3VycmVudC5jcmwwggHnBggrBgEFBQcBAQSCAdkwggHVMHgGCCsGAQUFBzAChmxodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwegYIKwYBBQUHMAKGbmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NhY2VydHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxL2NlcnQuY2VyMGkGCCsGAQUFBzAChl1odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwcgYIKwYBBQUHMAKGZmh0dHA6Ly9jY21lZWFzdHVzMmV1YXBwa2kuZWFzdHVzMmV1YXAucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmV1YXBpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAndPCPc-CmjHOQpHPVSFI4dsJ3mAAA9L0QPDWwmXXvm66R08WToYQA9QCpkqxZEzl69AhSTR5x65hpeRv8xhwwj57QIuBD6rfMRghZH83T4x3bdOI4KmhFi_uY_52-cou5_xf0DyGAI_C77U5rC8TmVil8EsUCojV8rWkZXUBQSKZMaC1gzmzWW3pgKG9zwbD6J1M_7PW6f_zhE9KvGfBrLALoabdK0H_in5p3CyRMQee9pXSpsictb8cyfBIRU1fRSNmLnOjVSlF_Ll20gYIhnHvetGUxWU0EE9gWSJVUtwbqJjCeDouKPwe2UYUosoETTC7iluHZc0PV9EMfunH2w&s=EhEBxf5J6BhG7nTM-N-_XpfBIZRxV4QQJRRDSVwhhkUconboN5DEC7kqJVuceDqkLHWIYRtBOsyDMrdxynPsU2yWXe9Q5upEeAagpAJ_P5B9blkUP7nEbQOvl_tWxcSV3r4FCB_fOH0M4lv3fR0ST3rdMnvW4yNXnMPjte584SZpNn5I69HBNG0p8k_1582TaAa-eGzkywoB6NqQMkFFIfP5UZQaDa8Jk8cUyHRsgUQAXw4d7s7ZOQcEeNUCPMXi8yHpsQ9y7dLdQbpeyaBy7SMG9c-2SLAB2RfoEb7_25RCLESAa1AHWnkJVMz2snMiRmy4P9u9b4ODXbVGAquyhg&h=cy2aO_gljDTaP2KNVw11oeDuiKUGkcwBJHzJtpwRHlw pragma: - no-cache strict-transport-security: @@ -361,11 +415,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=12f8ea5c-1212-449e-b31c-0a574f43076e/eastus2euap/8439b5da-86e2-48c6-9f07-3fc5c1b0f6f2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=352782de-cadf-4f14-ad97-08cd2617ef55/eastus2euap/9d2894d0-a60e-4ca4-a572-64293a746019 x-ms-throttling-version: - v2 x-msedge-ref: - - 'Ref A: 5B8CC793F3004AB18D6545D46BAEA214 Ref B: MAA201060513023 Ref C: 2025-10-27T13:40:57Z' + - 'Ref A: 27062BA2042540468697A10CBE18614C Ref B: PNQ231110909036 Ref C: 2026-07-21T05:01:07Z' status: code: 200 message: OK @@ -383,13 +437,13 @@ interactions: ParameterSetName: - -n -g --location User-Agent: - - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.11.9 (Windows-10-10.0.26200-SP0) + - AZURECLI/2.88.0 azsdk-python-core/1.39.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/operationStatus/MjA0NzthZWMyOTdiMC04NDRjLTQ5YTYtYmViOC1lNDRiYjNjZjM4Y2I=?api-version=2025-08-01&t=638971692560434928&c=MIIIpDCCBoygAwIBAgITFgIdx-8P5Q2flkVe0wABAh3H7zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUxMDIwMTM0ODIxWhcNMjYwMTE4MTM0ODIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALJsx40wbBQQVymBKxEYB3QsXs7DWrmkLk1cvGC9Oh6ZUsiS6z4fZ9KUiL7u4Cb1R-5gfYTplSDkCfn9Y776fzY9tgxKTFF2KMooWQSUUNfMYuwrWFbbHGDx79k-SN6J44MhkxgVnvirjK5cOgtR1YwGjnk0x5Ea3-szYPplTQi12yBEDft-JR3YCKn54jq1stV1W2hRp_2g1BQImqyuswXZKY2DD-s3bQClN3clms4KDqdtTyXsWYLLd1wyrriHRsQnNbYpC1EqjwDyNGLTXHMVXKbeUefj5AwkYLnb77HgLc0IW7nFQwaOLB01n0OsHuhWZeUiilCDsiV76B_8MF0CAwEAAaOCBJEwggSNMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAdoGCCsGAQUFBwEBBIIBzDCCAcgwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDEuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDQuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwHQYDVR0OBBYEFBIs_XIgrlYGjVV6tC88QEhsK39fMA4GA1UdDwEB_wQEAwIFoDCCATUGA1UdHwSCASwwggEoMIIBJKCCASCgggEchkJodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMB8GA1UdIwQYMBaAFEijrWB1am_sYPNpVdEAsTJX_GzkMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAgEAoWGeh2L-xOp4WFwNcK7-42nE8XWzyiVfNq-en8umv6B7FIlZBqRTSHucIlGoZqT7uEkuOIkyfwKUKMHeX3kte0w5f4gSgSX-JsexZj509BqurtDEgPbEjh9zUpbDAM7sODNvfiZ0HVF6sREKDyDIRGhYl_C7qO6FPNUH0wiEMRNI92WewkvN5kxHFBO56OS26He5ElMpeDPNifRXSj2RrthZNiLhtVNqOXCXV8HvAO-8PBPQGpetO260pqROBjblZfst9LCba3YKdZ8o2ojOeG5_ANB5mSX3bsBsY2ULkbRKgNBi5AXJ7q0-n01yM6-uiSvZ8wrkHLfDJ6KlzSDTLJpoVa8AUeZoPEhJgyQInNCPK5nFOD-F1QNRwQj-B-s7y16iUVZiLZ3hkxODdrbMjfPRL2P3DYn1cg-jZVq0xDX1aSlRyQq6qi9xZ9RfBPeOrsZ3SHGm0XIJdlqtaYt0Evo6fWKiFXuJ-H6nf5Qy8sLTk2q160CH2IgsW5_tA0n0ySGt5n-9j610wwPdH6ImEQ1jli9U8Ur82WjB7qQhpmYPuHOyytAGttfk1271zkw5TOpkzJfGWvT5zYv436XCj6pouSk2GJmG1iR-9pO4kPK1LWp3ujV-IXZjP_-xg0wwwsvc0BDJJZZk4tElY91ySFzLXlN8QfTH67VHl7D8ILg&s=c_343SUuv6vvLtjmQ5BReWQV0J55UcXkCB9Z4J7FIbjV50G5YIMAFT1haOmq_KyR6nGM-u0x40OGKk4NKzPLiHHtZYlmzHARBgFxuZmyYcyu_Gu1o3MdN5-gXVIR3wSYGW1PhKM82OIPloOoomrqrQUgKO-BzAjNnQPnwbUI7SIUH0De3ugp9SKnrbmK7mtltfAj0TJpDtG4MQ1inPsRvy6TDGlDgoXslUdHZXfr52YsKsktrjCu857-k2JPN1xMMD5YyVcwPXlVuScdaTf_UUN1ZW-Qn8XNfnp_rbe6-sMdqzqHc9Z5hVZt1hG-glmfTdkzi4XpyfqQq6CYyXB7Bw&h=YTTbmIlfSPz9sFsRdhDl5Yy3W2zJp-AHBhxQPvWTVhY + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/operationStatus/MjA0Nzs2YzU3MWMzZi0xNGU3LTQyNDUtYjcxZC1mMjkxMTkxNzU2OGU=?api-version=2026-05-01&t=639202068663964694&c=MIIH9TCCBt2gAwIBAgIRAKnTo6mKeliSYj1GLETof4IwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVUyQyBDQSAwMTAeFw0yNjA3MDIxNTU4NDNaFw0yNjA5MjcyMTU4NDNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAlDQMyX5eVlNoyHQy97t41xstx7ISW3Jpt0fmktBr-SytLFjS2PEwnW3DFpc-bQgfDfHkKP0_FRLvm_mazEvS5KYzyX6nFjGqQTX3SfneJV5jo7nOwYnQHFTbkg0Dngz7AipTBy6yAiQqKMhRo_D-N4o3stwmKHeA0tAiEOx4G_PiAZBVgwqD_hS-porAKnsf-m7-vYsa-g9Cw0SQ2t7YIFgfqGifFcAH79L7QF5n4-toqH20MDZrR10dXpjNK50DvRiltXMo7xC198sVfC6ISY8hDbiFDpsKgL_lz-pJ2kyYJNyq1NUfS79AS70Bkl13eaOYbl8go_Oo41Ma5ArEgQIDAQABo4IE8jCCBO4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7Mv1WvWn7sAfft9pF9lwNBkNam0wHwYDVR0jBBgwFoAUz1EBqulDLGR2G0rwqsDykvhPw7swggHiBgNVHR8EggHZMIIB1TB1oHOgcYZvaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHegdaBzhnFodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyZXVhcC9jcmxzL2NjbWVlYXN0dXMyZXVhcHBraS9jY21lZWFzdHVzMmV1YXBpY2EwMS82NS9jdXJyZW50LmNybDBmoGSgYoZgaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHugeaB3hnVodHRwOi8vY2NtZWVhc3R1czJldWFwcGtpLmVhc3R1czJldWFwLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJldWFwaWNhMDEvNjUvY3VycmVudC5jcmwwggHnBggrBgEFBQcBAQSCAdkwggHVMHgGCCsGAQUFBzAChmxodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwegYIKwYBBQUHMAKGbmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NhY2VydHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxL2NlcnQuY2VyMGkGCCsGAQUFBzAChl1odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwcgYIKwYBBQUHMAKGZmh0dHA6Ly9jY21lZWFzdHVzMmV1YXBwa2kuZWFzdHVzMmV1YXAucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmV1YXBpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAndPCPc-CmjHOQpHPVSFI4dsJ3mAAA9L0QPDWwmXXvm66R08WToYQA9QCpkqxZEzl69AhSTR5x65hpeRv8xhwwj57QIuBD6rfMRghZH83T4x3bdOI4KmhFi_uY_52-cou5_xf0DyGAI_C77U5rC8TmVil8EsUCojV8rWkZXUBQSKZMaC1gzmzWW3pgKG9zwbD6J1M_7PW6f_zhE9KvGfBrLALoabdK0H_in5p3CyRMQee9pXSpsictb8cyfBIRU1fRSNmLnOjVSlF_Ll20gYIhnHvetGUxWU0EE9gWSJVUtwbqJjCeDouKPwe2UYUosoETTC7iluHZc0PV9EMfunH2w&s=IikkHZXBvdSey-gRe3wxuCBAV_0hFWqUT-dbnCZwdsM6pkY88_iQRXSLEHHVAAAsWVFwavNIhn8sgvzXTaSq2rMGD74ty3QiRxfhISFj5kLmMH4Wp-eKjsI3-x8GMoSdjRTEvNgxYe8mVmCHuRvj697XhtNEEjTtiZ3lLI4C6Fkz5kPv5A0a3S1jUQrr7-XG881Bpg2q2FNSQsBV2i5Cuvi7fJvM8qzr44d2bOMLsGJ14LfR62mg5g8luaR4m7cemPWnSa0Tg4kJRrrZHc_afOh1FQUYYzhu-y0mFsHBJT3F881IWS3zWjjcN6sbSZbiZxCwNTJ0LCfeX4--09aBeg&h=9ajXcNekwATT0WI3le4b5CLD2C3jqRhrhnG3DIdtN64 response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/operationStatus/MjA0NzthZWMyOTdiMC04NDRjLTQ5YTYtYmViOC1lNDRiYjNjZjM4Y2I=\",\r\n - \ \"name\": \"MjA0NzthZWMyOTdiMC04NDRjLTQ5YTYtYmViOC1lNDRiYjNjZjM4Y2I=\",\r\n + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/operationStatus/MjA0Nzs2YzU3MWMzZi0xNGU3LTQyNDUtYjcxZC1mMjkxMTkxNzU2OGU=\",\r\n + \ \"name\": \"MjA0Nzs2YzU3MWMzZi0xNGU3LTQyNDUtYjcxZC1mMjkxMTkxNzU2OGU=\",\r\n \ \"status\": \"Succeeded\"\r\n}" headers: cache-control: @@ -399,7 +453,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 27 Oct 2025 13:41:58 GMT + - Tue, 21 Jul 2026 05:02:07 GMT expires: - '-1' pragma: @@ -411,11 +465,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=12f8ea5c-1212-449e-b31c-0a574f43076e/eastus2euap/5573fcbf-fb31-4d6a-afea-160b040a5239 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=352782de-cadf-4f14-ad97-08cd2617ef55/eastus2euap/052f1d1d-bf97-4973-b7f3-76234f4198e9 x-ms-throttling-version: - v2 x-msedge-ref: - - 'Ref A: 393CAC22EFED4F119B95350772890DDB Ref B: MAA201060516029 Ref C: 2025-10-27T13:41:58Z' + - 'Ref A: E52477F2420045A3AED90CCC728996B7 Ref B: PNQ231110909034 Ref C: 2026-07-21T05:02:07Z' status: code: 200 message: OK @@ -433,21 +487,21 @@ interactions: ParameterSetName: - -n -g --location User-Agent: - - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.11.9 (Windows-10-10.0.26200-SP0) + - AZURECLI/2.88.0 azsdk-python-core/1.39.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003?api-version=2025-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003?api-version=2026-05-01 response: body: - string: '{"location":"eastus2euap","name":"clitest-vault000003","etag":"W/\"datetime''2025-10-27T13%3A41%3A57.1007886Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","monitoringSettings":{"azureMonitorAlertSettings":{"alertsForAllJobFailures":"Enabled","alertsForAllReplicationIssues":"Enabled","alertsForAllFailoverIssues":"Enabled"},"classicAlertSettings":{"alertsForCriticalOperations":"Enabled","emailNotificationsForSiteRecovery":"Enabled"}},"backupStorageVersion":"Unassigned","securitySettings":{"softDeleteSettings":{"softDeleteRetentionPeriodInDays":14,"softDeleteState":"AlwaysON","enhancedSecurityState":"AlwaysON"},"multiUserAuthorization":"Disabled","sourceScanConfiguration":{"state":"Disabled"}},"redundancySettings":{"standardTierStorageRedundancy":"GeoRedundant","crossRegionRestore":"Disabled"},"secureScore":"Adequate","bcdrSecurityLevel":"Good","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' + string: '{"location":"eastus2euap","name":"clitest-vault000003","etag":"W/\"datetime''2026-07-21T05%3A02%3A07.0287516Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","monitoringSettings":{"azureMonitorAlertSettings":{"alertsForAllJobFailures":"Enabled","alertsForAllReplicationIssues":"Enabled","alertsForAllFailoverIssues":"Enabled"},"classicAlertSettings":{"alertsForCriticalOperations":"Enabled","emailNotificationsForSiteRecovery":"Enabled"}},"costManagementSettings":{"granularityLevel":"VaultLevel"},"backupStorageVersion":"Unassigned","securitySettings":{"softDeleteSettings":{"softDeleteRetentionPeriodInDays":14,"softDeleteState":"AlwaysON","enhancedSecurityState":"AlwaysON"},"multiUserAuthorization":"Disabled","sourceScanConfiguration":{"state":"Disabled"}},"redundancySettings":{"standardTierStorageRedundancy":"GeoRedundant","crossRegionRestore":"Disabled"},"secureScore":"Adequate","bcdrSecurityLevel":"Good","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' headers: cache-control: - no-cache content-length: - - '1310' + - '1369' content-type: - application/json; charset=utf-8 date: - - Mon, 27 Oct 2025 13:41:59 GMT + - Tue, 21 Jul 2026 05:02:08 GMT expires: - '-1' pragma: @@ -461,7 +515,7 @@ interactions: x-ms-throttling-version: - v2 x-msedge-ref: - - 'Ref A: 9028E020F36846838EC8F059C60F09EC Ref B: MAA201060513051 Ref C: 2025-10-27T13:41:59Z' + - 'Ref A: 6D601547E4E04F61ADA23F67B02CC67B Ref B: PNQ231110909029 Ref C: 2026-07-21T05:02:09Z' status: code: 200 message: OK @@ -479,9 +533,9 @@ interactions: ParameterSetName: - -n -g -l User-Agent: - - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.11.9 (Windows-10-10.0.26200-SP0) + - AZURECLI/2.88.0 azsdk-python-core/1.39.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000004?api-version=2025-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000004?api-version=2026-05-01 response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.RecoveryServices/vaults/clitest-vault000004'' @@ -495,7 +549,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 27 Oct 2025 13:42:01 GMT + - Tue, 21 Jul 2026 05:02:09 GMT expires: - '-1' pragma: @@ -509,7 +563,7 @@ interactions: x-ms-failure-cause: - gateway x-msedge-ref: - - 'Ref A: 498111CAC1EC46E8A3526E19734A6CBA Ref B: MAA201060516053 Ref C: 2025-10-27T13:42:00Z' + - 'Ref A: 8D88504990F94003B4CA2AB0DB6A55C4 Ref B: PNQ231110906023 Ref C: 2026-07-21T05:02:10Z' status: code: 404 message: Not Found @@ -520,7 +574,8 @@ interactions: "Enabled", "monitoringSettings": {"azureMonitorAlertSettings": {"alertsForAllJobFailures": "Enabled", "alertsForAllReplicationIssues": "Enabled", "alertsForAllFailoverIssues": "Enabled"}, "classicAlertSettings": {"alertsForCriticalOperations": "Enabled", - "emailNotificationsForSiteRecovery": "Enabled"}}}}' + "emailNotificationsForSiteRecovery": "Enabled"}}, "costManagementSettings": + {"granularityLevel": "VaultLevel"}}}' headers: Accept: - application/json @@ -531,29 +586,29 @@ interactions: Connection: - keep-alive Content-Length: - - '553' + - '615' Content-Type: - application/json ParameterSetName: - -n -g -l User-Agent: - - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.11.9 (Windows-10-10.0.26200-SP0) + - AZURECLI/2.88.0 azsdk-python-core/1.39.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000004?api-version=2025-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000004?api-version=2026-05-01 response: body: - string: '{"location":"eastus2euap","name":"clitest-vault000004","etag":"W/\"datetime''2025-10-27T13%3A42%3A02.0777039Z''\"","properties":{"provisioningState":"Provisioning","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","monitoringSettings":{"azureMonitorAlertSettings":{"alertsForAllJobFailures":"Enabled","alertsForAllReplicationIssues":"Enabled","alertsForAllFailoverIssues":"Enabled"},"classicAlertSettings":{"alertsForCriticalOperations":"Enabled","emailNotificationsForSiteRecovery":"Enabled"}},"securitySettings":{"softDeleteSettings":{"softDeleteRetentionPeriodInDays":14,"softDeleteState":"AlwaysON","enhancedSecurityState":"AlwaysON"},"multiUserAuthorization":"Invalid","sourceScanConfiguration":{"state":"Disabled"}},"redundancySettings":{"standardTierStorageRedundancy":"GeoRedundant","crossRegionRestore":"Disabled"},"secureScore":"Adequate","bcdrSecurityLevel":"Good","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000004","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' + string: '{"location":"eastus2euap","name":"clitest-vault000004","etag":"W/\"datetime''2026-07-21T05%3A02%3A11.7030462Z''\"","properties":{"provisioningState":"Provisioning","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","monitoringSettings":{"azureMonitorAlertSettings":{"alertsForAllJobFailures":"Enabled","alertsForAllReplicationIssues":"Enabled","alertsForAllFailoverIssues":"Enabled"},"classicAlertSettings":{"alertsForCriticalOperations":"Enabled","emailNotificationsForSiteRecovery":"Enabled"}},"costManagementSettings":{"granularityLevel":"VaultLevel"},"securitySettings":{"softDeleteSettings":{"softDeleteRetentionPeriodInDays":14,"softDeleteState":"AlwaysON","enhancedSecurityState":"AlwaysON"},"multiUserAuthorization":"Invalid","sourceScanConfiguration":{"state":"Disabled"}},"redundancySettings":{"standardTierStorageRedundancy":"GeoRedundant","crossRegionRestore":"Disabled"},"secureScore":"Adequate","bcdrSecurityLevel":"Good","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000004","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000004/operationStatus/MjA0Nzs4OGQ2OTIyNi1kOWM5LTRmNjktOGRlMS02MThmZjUxZjA5YmU=?api-version=2025-08-01&t=638971693222054169&c=MIIIpDCCBoygAwIBAgITFgIdx-8P5Q2flkVe0wABAh3H7zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUxMDIwMTM0ODIxWhcNMjYwMTE4MTM0ODIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALJsx40wbBQQVymBKxEYB3QsXs7DWrmkLk1cvGC9Oh6ZUsiS6z4fZ9KUiL7u4Cb1R-5gfYTplSDkCfn9Y776fzY9tgxKTFF2KMooWQSUUNfMYuwrWFbbHGDx79k-SN6J44MhkxgVnvirjK5cOgtR1YwGjnk0x5Ea3-szYPplTQi12yBEDft-JR3YCKn54jq1stV1W2hRp_2g1BQImqyuswXZKY2DD-s3bQClN3clms4KDqdtTyXsWYLLd1wyrriHRsQnNbYpC1EqjwDyNGLTXHMVXKbeUefj5AwkYLnb77HgLc0IW7nFQwaOLB01n0OsHuhWZeUiilCDsiV76B_8MF0CAwEAAaOCBJEwggSNMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAdoGCCsGAQUFBwEBBIIBzDCCAcgwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDEuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDQuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwHQYDVR0OBBYEFBIs_XIgrlYGjVV6tC88QEhsK39fMA4GA1UdDwEB_wQEAwIFoDCCATUGA1UdHwSCASwwggEoMIIBJKCCASCgggEchkJodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMB8GA1UdIwQYMBaAFEijrWB1am_sYPNpVdEAsTJX_GzkMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAgEAoWGeh2L-xOp4WFwNcK7-42nE8XWzyiVfNq-en8umv6B7FIlZBqRTSHucIlGoZqT7uEkuOIkyfwKUKMHeX3kte0w5f4gSgSX-JsexZj509BqurtDEgPbEjh9zUpbDAM7sODNvfiZ0HVF6sREKDyDIRGhYl_C7qO6FPNUH0wiEMRNI92WewkvN5kxHFBO56OS26He5ElMpeDPNifRXSj2RrthZNiLhtVNqOXCXV8HvAO-8PBPQGpetO260pqROBjblZfst9LCba3YKdZ8o2ojOeG5_ANB5mSX3bsBsY2ULkbRKgNBi5AXJ7q0-n01yM6-uiSvZ8wrkHLfDJ6KlzSDTLJpoVa8AUeZoPEhJgyQInNCPK5nFOD-F1QNRwQj-B-s7y16iUVZiLZ3hkxODdrbMjfPRL2P3DYn1cg-jZVq0xDX1aSlRyQq6qi9xZ9RfBPeOrsZ3SHGm0XIJdlqtaYt0Evo6fWKiFXuJ-H6nf5Qy8sLTk2q160CH2IgsW5_tA0n0ySGt5n-9j610wwPdH6ImEQ1jli9U8Ur82WjB7qQhpmYPuHOyytAGttfk1271zkw5TOpkzJfGWvT5zYv436XCj6pouSk2GJmG1iR-9pO4kPK1LWp3ujV-IXZjP_-xg0wwwsvc0BDJJZZk4tElY91ySFzLXlN8QfTH67VHl7D8ILg&s=nNwYRKi_A-8ceaBNbOi1XPFiRTXe_gwInPbjEY69KcC6Wcsry6rSWhBRkTMs4woLiZ51D9HBYJS-hn3RjtZUsfY4faaAD7FE1a_8tZiCWTvIdiu8wd2TqQ30I5SWC5qC7rPRtJapM3IVcIDKXnspGHI4_sdyVgLsMZ0QVaGHMjzwxHftrFviUScxVJnPK1DBZn0XvRHeluUxw9DmPYoSNi8CsHxVu4bh4wsmu1HQCiK4oPrNsVunbpmyE01WYANnD_TJjM_HDVFjtUot1RfHOeISVllIi37LzmQezPh1dZmC_sSMrQERagBA3R-E4I8AXWikosHb9-942WZ0d_gNhA&h=3Wq8hO7l8Um-RXR9VAKg3e9PPmeMlJRt8sdYXBzwcx0 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000004/operationStatus/MjA0NztmY2MzMTk0YS02ZTkxLTRkODUtYTIyZS1iZDY4ZDI1YmE4OWM=?api-version=2026-05-01&t=639202069318051674&c=MIIH9TCCBt2gAwIBAgIRAKnTo6mKeliSYj1GLETof4IwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVUyQyBDQSAwMTAeFw0yNjA3MDIxNTU4NDNaFw0yNjA5MjcyMTU4NDNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAlDQMyX5eVlNoyHQy97t41xstx7ISW3Jpt0fmktBr-SytLFjS2PEwnW3DFpc-bQgfDfHkKP0_FRLvm_mazEvS5KYzyX6nFjGqQTX3SfneJV5jo7nOwYnQHFTbkg0Dngz7AipTBy6yAiQqKMhRo_D-N4o3stwmKHeA0tAiEOx4G_PiAZBVgwqD_hS-porAKnsf-m7-vYsa-g9Cw0SQ2t7YIFgfqGifFcAH79L7QF5n4-toqH20MDZrR10dXpjNK50DvRiltXMo7xC198sVfC6ISY8hDbiFDpsKgL_lz-pJ2kyYJNyq1NUfS79AS70Bkl13eaOYbl8go_Oo41Ma5ArEgQIDAQABo4IE8jCCBO4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7Mv1WvWn7sAfft9pF9lwNBkNam0wHwYDVR0jBBgwFoAUz1EBqulDLGR2G0rwqsDykvhPw7swggHiBgNVHR8EggHZMIIB1TB1oHOgcYZvaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHegdaBzhnFodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyZXVhcC9jcmxzL2NjbWVlYXN0dXMyZXVhcHBraS9jY21lZWFzdHVzMmV1YXBpY2EwMS82NS9jdXJyZW50LmNybDBmoGSgYoZgaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHugeaB3hnVodHRwOi8vY2NtZWVhc3R1czJldWFwcGtpLmVhc3R1czJldWFwLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJldWFwaWNhMDEvNjUvY3VycmVudC5jcmwwggHnBggrBgEFBQcBAQSCAdkwggHVMHgGCCsGAQUFBzAChmxodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwegYIKwYBBQUHMAKGbmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NhY2VydHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxL2NlcnQuY2VyMGkGCCsGAQUFBzAChl1odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwcgYIKwYBBQUHMAKGZmh0dHA6Ly9jY21lZWFzdHVzMmV1YXBwa2kuZWFzdHVzMmV1YXAucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmV1YXBpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAndPCPc-CmjHOQpHPVSFI4dsJ3mAAA9L0QPDWwmXXvm66R08WToYQA9QCpkqxZEzl69AhSTR5x65hpeRv8xhwwj57QIuBD6rfMRghZH83T4x3bdOI4KmhFi_uY_52-cou5_xf0DyGAI_C77U5rC8TmVil8EsUCojV8rWkZXUBQSKZMaC1gzmzWW3pgKG9zwbD6J1M_7PW6f_zhE9KvGfBrLALoabdK0H_in5p3CyRMQee9pXSpsictb8cyfBIRU1fRSNmLnOjVSlF_Ll20gYIhnHvetGUxWU0EE9gWSJVUtwbqJjCeDouKPwe2UYUosoETTC7iluHZc0PV9EMfunH2w&s=HBQd4P98Oy9c3wlzUXJ4rv4NVpb4KNUsIQR_5ndhEjiMUjGqrhL6Rw71K87EOIP8JfyMwQo5_LnX_lhn2MY2-JDC6qqtkoDgV5f821xlS6YzJ2FIE1iDcRdZCoETF4gcEheaIKfS_oCA_G6oV_3KNOHAyKFcO3g3gGQpGn3azIZrBXfjKzgX493wmccIJJA7LVodi46R-3iAJi5M5-NaQSYOQzKE4JWjRBAlR7SqZ422aHNPApgAgXeOTKykXx9h-ORsizzKseSBDB7dfMwBofx53wYkgYSR5b_g7XeolNbEn08gdHyBx-dRt9tqlG6KWT3iCZqFBnzfYTlqqVocKw&h=QO3pmnU9Se3LfHQOXpUloVrya2Zv1THmq09_YD0ZbkY cache-control: - no-cache content-length: - - '1276' + - '1335' content-type: - application/json; charset=utf-8 date: - - Mon, 27 Oct 2025 13:42:01 GMT + - Tue, 21 Jul 2026 05:02:11 GMT expires: - '-1' pragma: @@ -565,13 +620,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=12f8ea5c-1212-449e-b31c-0a574f43076e/eastus2euap/0dbc5bbb-11e0-44b8-8c7b-6fa476641f17 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=352782de-cadf-4f14-ad97-08cd2617ef55/eastus2euap/339f61fc-3803-4485-993c-1b4b99b1bec8 x-ms-ratelimit-remaining-subscription-resource-requests: - '799' x-ms-throttling-version: - v1 x-msedge-ref: - - 'Ref A: E981280A54974D85900508E42F96B3E4 Ref B: MAA201060513025 Ref C: 2025-10-27T13:42:01Z' + - 'Ref A: 678C2F0C42E54C4187EEB6F98B770437 Ref B: PNQ231110909042 Ref C: 2026-07-21T05:02:10Z' status: code: 201 message: Created @@ -589,67 +644,13 @@ interactions: ParameterSetName: - -n -g -l User-Agent: - - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.11.9 (Windows-10-10.0.26200-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000004/operationStatus/MjA0Nzs4OGQ2OTIyNi1kOWM5LTRmNjktOGRlMS02MThmZjUxZjA5YmU=?api-version=2025-08-01&t=638971693222054169&c=MIIIpDCCBoygAwIBAgITFgIdx-8P5Q2flkVe0wABAh3H7zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUxMDIwMTM0ODIxWhcNMjYwMTE4MTM0ODIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALJsx40wbBQQVymBKxEYB3QsXs7DWrmkLk1cvGC9Oh6ZUsiS6z4fZ9KUiL7u4Cb1R-5gfYTplSDkCfn9Y776fzY9tgxKTFF2KMooWQSUUNfMYuwrWFbbHGDx79k-SN6J44MhkxgVnvirjK5cOgtR1YwGjnk0x5Ea3-szYPplTQi12yBEDft-JR3YCKn54jq1stV1W2hRp_2g1BQImqyuswXZKY2DD-s3bQClN3clms4KDqdtTyXsWYLLd1wyrriHRsQnNbYpC1EqjwDyNGLTXHMVXKbeUefj5AwkYLnb77HgLc0IW7nFQwaOLB01n0OsHuhWZeUiilCDsiV76B_8MF0CAwEAAaOCBJEwggSNMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAdoGCCsGAQUFBwEBBIIBzDCCAcgwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDEuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDQuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwHQYDVR0OBBYEFBIs_XIgrlYGjVV6tC88QEhsK39fMA4GA1UdDwEB_wQEAwIFoDCCATUGA1UdHwSCASwwggEoMIIBJKCCASCgggEchkJodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMB8GA1UdIwQYMBaAFEijrWB1am_sYPNpVdEAsTJX_GzkMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAgEAoWGeh2L-xOp4WFwNcK7-42nE8XWzyiVfNq-en8umv6B7FIlZBqRTSHucIlGoZqT7uEkuOIkyfwKUKMHeX3kte0w5f4gSgSX-JsexZj509BqurtDEgPbEjh9zUpbDAM7sODNvfiZ0HVF6sREKDyDIRGhYl_C7qO6FPNUH0wiEMRNI92WewkvN5kxHFBO56OS26He5ElMpeDPNifRXSj2RrthZNiLhtVNqOXCXV8HvAO-8PBPQGpetO260pqROBjblZfst9LCba3YKdZ8o2ojOeG5_ANB5mSX3bsBsY2ULkbRKgNBi5AXJ7q0-n01yM6-uiSvZ8wrkHLfDJ6KlzSDTLJpoVa8AUeZoPEhJgyQInNCPK5nFOD-F1QNRwQj-B-s7y16iUVZiLZ3hkxODdrbMjfPRL2P3DYn1cg-jZVq0xDX1aSlRyQq6qi9xZ9RfBPeOrsZ3SHGm0XIJdlqtaYt0Evo6fWKiFXuJ-H6nf5Qy8sLTk2q160CH2IgsW5_tA0n0ySGt5n-9j610wwPdH6ImEQ1jli9U8Ur82WjB7qQhpmYPuHOyytAGttfk1271zkw5TOpkzJfGWvT5zYv436XCj6pouSk2GJmG1iR-9pO4kPK1LWp3ujV-IXZjP_-xg0wwwsvc0BDJJZZk4tElY91ySFzLXlN8QfTH67VHl7D8ILg&s=nNwYRKi_A-8ceaBNbOi1XPFiRTXe_gwInPbjEY69KcC6Wcsry6rSWhBRkTMs4woLiZ51D9HBYJS-hn3RjtZUsfY4faaAD7FE1a_8tZiCWTvIdiu8wd2TqQ30I5SWC5qC7rPRtJapM3IVcIDKXnspGHI4_sdyVgLsMZ0QVaGHMjzwxHftrFviUScxVJnPK1DBZn0XvRHeluUxw9DmPYoSNi8CsHxVu4bh4wsmu1HQCiK4oPrNsVunbpmyE01WYANnD_TJjM_HDVFjtUot1RfHOeISVllIi37LzmQezPh1dZmC_sSMrQERagBA3R-E4I8AXWikosHb9-942WZ0d_gNhA&h=3Wq8hO7l8Um-RXR9VAKg3e9PPmeMlJRt8sdYXBzwcx0 - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000004/operationStatus/MjA0Nzs4OGQ2OTIyNi1kOWM5LTRmNjktOGRlMS02MThmZjUxZjA5YmU=\",\r\n - \ \"name\": \"MjA0Nzs4OGQ2OTIyNi1kOWM5LTRmNjktOGRlMS02MThmZjUxZjA5YmU=\",\r\n - \ \"status\": \"InProgress\"\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000004/operationStatus/MjA0Nzs4OGQ2OTIyNi1kOWM5LTRmNjktOGRlMS02MThmZjUxZjA5YmU=?api-version=2025-08-01&t=638971693229662349&c=MIIIpDCCBoygAwIBAgITFgIdx-8P5Q2flkVe0wABAh3H7zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUxMDIwMTM0ODIxWhcNMjYwMTE4MTM0ODIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALJsx40wbBQQVymBKxEYB3QsXs7DWrmkLk1cvGC9Oh6ZUsiS6z4fZ9KUiL7u4Cb1R-5gfYTplSDkCfn9Y776fzY9tgxKTFF2KMooWQSUUNfMYuwrWFbbHGDx79k-SN6J44MhkxgVnvirjK5cOgtR1YwGjnk0x5Ea3-szYPplTQi12yBEDft-JR3YCKn54jq1stV1W2hRp_2g1BQImqyuswXZKY2DD-s3bQClN3clms4KDqdtTyXsWYLLd1wyrriHRsQnNbYpC1EqjwDyNGLTXHMVXKbeUefj5AwkYLnb77HgLc0IW7nFQwaOLB01n0OsHuhWZeUiilCDsiV76B_8MF0CAwEAAaOCBJEwggSNMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAdoGCCsGAQUFBwEBBIIBzDCCAcgwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDEuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDQuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwHQYDVR0OBBYEFBIs_XIgrlYGjVV6tC88QEhsK39fMA4GA1UdDwEB_wQEAwIFoDCCATUGA1UdHwSCASwwggEoMIIBJKCCASCgggEchkJodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMB8GA1UdIwQYMBaAFEijrWB1am_sYPNpVdEAsTJX_GzkMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAgEAoWGeh2L-xOp4WFwNcK7-42nE8XWzyiVfNq-en8umv6B7FIlZBqRTSHucIlGoZqT7uEkuOIkyfwKUKMHeX3kte0w5f4gSgSX-JsexZj509BqurtDEgPbEjh9zUpbDAM7sODNvfiZ0HVF6sREKDyDIRGhYl_C7qO6FPNUH0wiEMRNI92WewkvN5kxHFBO56OS26He5ElMpeDPNifRXSj2RrthZNiLhtVNqOXCXV8HvAO-8PBPQGpetO260pqROBjblZfst9LCba3YKdZ8o2ojOeG5_ANB5mSX3bsBsY2ULkbRKgNBi5AXJ7q0-n01yM6-uiSvZ8wrkHLfDJ6KlzSDTLJpoVa8AUeZoPEhJgyQInNCPK5nFOD-F1QNRwQj-B-s7y16iUVZiLZ3hkxODdrbMjfPRL2P3DYn1cg-jZVq0xDX1aSlRyQq6qi9xZ9RfBPeOrsZ3SHGm0XIJdlqtaYt0Evo6fWKiFXuJ-H6nf5Qy8sLTk2q160CH2IgsW5_tA0n0ySGt5n-9j610wwPdH6ImEQ1jli9U8Ur82WjB7qQhpmYPuHOyytAGttfk1271zkw5TOpkzJfGWvT5zYv436XCj6pouSk2GJmG1iR-9pO4kPK1LWp3ujV-IXZjP_-xg0wwwsvc0BDJJZZk4tElY91ySFzLXlN8QfTH67VHl7D8ILg&s=lVXGSOBEuSuRBg8msGv03ytXKkatFJmbkXtDST4gytXZDXYlaRYlwbLflPIi1_suzVuCVrebyzhKLgl-ZAUhHXtIhuqpT4MsnzFjBduUxtW2VW172Z0lK_SESFlA3s07ndhg3cdbu_fHvdMus0J7zBMtgqKp2Wgla2IFm8XLytFksyxTnnQHaEClworBjVahqR6lFhl_lOmnHHCFcgQLcYMfObrkjP27_OsxKXkJ94xkhl2xg7yxGkFIRBNDvDCybpNiGJtUbpsU632O4M-BwUF2fWqPe_E88xZ54nOVaHdKQqSrN0u7SLVqJqoz_wpjyq96LK7t93VNN9itJpu4hw&h=wfYPh8YHmexObkIf_2OhWzlw6JMAe9CrQfUTrX7PI1Y - cache-control: - - no-cache - content-length: - - '346' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 27 Oct 2025 13:42:03 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000004/operationResults/MjA0Nzs4OGQ2OTIyNi1kOWM5LTRmNjktOGRlMS02MThmZjUxZjA5YmU=?api-version=2025-08-01&t=638971693229817559&c=MIIIpDCCBoygAwIBAgITFgIdx-8P5Q2flkVe0wABAh3H7zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUxMDIwMTM0ODIxWhcNMjYwMTE4MTM0ODIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALJsx40wbBQQVymBKxEYB3QsXs7DWrmkLk1cvGC9Oh6ZUsiS6z4fZ9KUiL7u4Cb1R-5gfYTplSDkCfn9Y776fzY9tgxKTFF2KMooWQSUUNfMYuwrWFbbHGDx79k-SN6J44MhkxgVnvirjK5cOgtR1YwGjnk0x5Ea3-szYPplTQi12yBEDft-JR3YCKn54jq1stV1W2hRp_2g1BQImqyuswXZKY2DD-s3bQClN3clms4KDqdtTyXsWYLLd1wyrriHRsQnNbYpC1EqjwDyNGLTXHMVXKbeUefj5AwkYLnb77HgLc0IW7nFQwaOLB01n0OsHuhWZeUiilCDsiV76B_8MF0CAwEAAaOCBJEwggSNMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAdoGCCsGAQUFBwEBBIIBzDCCAcgwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDEuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDQuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwHQYDVR0OBBYEFBIs_XIgrlYGjVV6tC88QEhsK39fMA4GA1UdDwEB_wQEAwIFoDCCATUGA1UdHwSCASwwggEoMIIBJKCCASCgggEchkJodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMB8GA1UdIwQYMBaAFEijrWB1am_sYPNpVdEAsTJX_GzkMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAgEAoWGeh2L-xOp4WFwNcK7-42nE8XWzyiVfNq-en8umv6B7FIlZBqRTSHucIlGoZqT7uEkuOIkyfwKUKMHeX3kte0w5f4gSgSX-JsexZj509BqurtDEgPbEjh9zUpbDAM7sODNvfiZ0HVF6sREKDyDIRGhYl_C7qO6FPNUH0wiEMRNI92WewkvN5kxHFBO56OS26He5ElMpeDPNifRXSj2RrthZNiLhtVNqOXCXV8HvAO-8PBPQGpetO260pqROBjblZfst9LCba3YKdZ8o2ojOeG5_ANB5mSX3bsBsY2ULkbRKgNBi5AXJ7q0-n01yM6-uiSvZ8wrkHLfDJ6KlzSDTLJpoVa8AUeZoPEhJgyQInNCPK5nFOD-F1QNRwQj-B-s7y16iUVZiLZ3hkxODdrbMjfPRL2P3DYn1cg-jZVq0xDX1aSlRyQq6qi9xZ9RfBPeOrsZ3SHGm0XIJdlqtaYt0Evo6fWKiFXuJ-H6nf5Qy8sLTk2q160CH2IgsW5_tA0n0ySGt5n-9j610wwPdH6ImEQ1jli9U8Ur82WjB7qQhpmYPuHOyytAGttfk1271zkw5TOpkzJfGWvT5zYv436XCj6pouSk2GJmG1iR-9pO4kPK1LWp3ujV-IXZjP_-xg0wwwsvc0BDJJZZk4tElY91ySFzLXlN8QfTH67VHl7D8ILg&s=IDyA9wvs-_4m88ryR_RecjaJEqD4niEsuAuwXC60pVm-MdS_ipfG17i3qISBF5YC9fcuNjw2qAaz469a90F_RjQ9yW4G3AiQk2sXuiklbzSPP_gO9reLn7AUBcfeYsnPS3DwFW7OUmEWcloaOtQU8DlP4b-PWM3ICmqPAZMGsFsawLq7HTIHCiq2uJiQu4_VadxcyL14BkGQKxFBjAm2GP-gQKrCw9bP4R-ZD1E_GfLH2Hc8vrDw5G4k7Ehn2csWjf51BuTzB8PQxPJ98cSjzf9Rq3JIeUJNgUOct1eMH4RXmopTwlobp5WocFsoXF2H_GYNgd2Yi7EKjb4gXY-9uQ&h=W1FRNMYD1h0lJ7x_1tr4jehals68ZqZtBGqRarclc0s - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=12f8ea5c-1212-449e-b31c-0a574f43076e/eastus2euap/58761817-f0a5-4356-8f30-6bce3d1378f7 - x-ms-throttling-version: - - v2 - x-msedge-ref: - - 'Ref A: A92021BB9087477294CCD905358067DA Ref B: MAA201060514025 Ref C: 2025-10-27T13:42:02Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - backup vault create - Connection: - - keep-alive - ParameterSetName: - - -n -g -l - User-Agent: - - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.11.9 (Windows-10-10.0.26200-SP0) + - AZURECLI/2.88.0 azsdk-python-core/1.39.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000004/operationStatus/MjA0Nzs4OGQ2OTIyNi1kOWM5LTRmNjktOGRlMS02MThmZjUxZjA5YmU=?api-version=2025-08-01&t=638971693222054169&c=MIIIpDCCBoygAwIBAgITFgIdx-8P5Q2flkVe0wABAh3H7zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUxMDIwMTM0ODIxWhcNMjYwMTE4MTM0ODIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALJsx40wbBQQVymBKxEYB3QsXs7DWrmkLk1cvGC9Oh6ZUsiS6z4fZ9KUiL7u4Cb1R-5gfYTplSDkCfn9Y776fzY9tgxKTFF2KMooWQSUUNfMYuwrWFbbHGDx79k-SN6J44MhkxgVnvirjK5cOgtR1YwGjnk0x5Ea3-szYPplTQi12yBEDft-JR3YCKn54jq1stV1W2hRp_2g1BQImqyuswXZKY2DD-s3bQClN3clms4KDqdtTyXsWYLLd1wyrriHRsQnNbYpC1EqjwDyNGLTXHMVXKbeUefj5AwkYLnb77HgLc0IW7nFQwaOLB01n0OsHuhWZeUiilCDsiV76B_8MF0CAwEAAaOCBJEwggSNMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAdoGCCsGAQUFBwEBBIIBzDCCAcgwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDEuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDQuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwHQYDVR0OBBYEFBIs_XIgrlYGjVV6tC88QEhsK39fMA4GA1UdDwEB_wQEAwIFoDCCATUGA1UdHwSCASwwggEoMIIBJKCCASCgggEchkJodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMB8GA1UdIwQYMBaAFEijrWB1am_sYPNpVdEAsTJX_GzkMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAgEAoWGeh2L-xOp4WFwNcK7-42nE8XWzyiVfNq-en8umv6B7FIlZBqRTSHucIlGoZqT7uEkuOIkyfwKUKMHeX3kte0w5f4gSgSX-JsexZj509BqurtDEgPbEjh9zUpbDAM7sODNvfiZ0HVF6sREKDyDIRGhYl_C7qO6FPNUH0wiEMRNI92WewkvN5kxHFBO56OS26He5ElMpeDPNifRXSj2RrthZNiLhtVNqOXCXV8HvAO-8PBPQGpetO260pqROBjblZfst9LCba3YKdZ8o2ojOeG5_ANB5mSX3bsBsY2ULkbRKgNBi5AXJ7q0-n01yM6-uiSvZ8wrkHLfDJ6KlzSDTLJpoVa8AUeZoPEhJgyQInNCPK5nFOD-F1QNRwQj-B-s7y16iUVZiLZ3hkxODdrbMjfPRL2P3DYn1cg-jZVq0xDX1aSlRyQq6qi9xZ9RfBPeOrsZ3SHGm0XIJdlqtaYt0Evo6fWKiFXuJ-H6nf5Qy8sLTk2q160CH2IgsW5_tA0n0ySGt5n-9j610wwPdH6ImEQ1jli9U8Ur82WjB7qQhpmYPuHOyytAGttfk1271zkw5TOpkzJfGWvT5zYv436XCj6pouSk2GJmG1iR-9pO4kPK1LWp3ujV-IXZjP_-xg0wwwsvc0BDJJZZk4tElY91ySFzLXlN8QfTH67VHl7D8ILg&s=nNwYRKi_A-8ceaBNbOi1XPFiRTXe_gwInPbjEY69KcC6Wcsry6rSWhBRkTMs4woLiZ51D9HBYJS-hn3RjtZUsfY4faaAD7FE1a_8tZiCWTvIdiu8wd2TqQ30I5SWC5qC7rPRtJapM3IVcIDKXnspGHI4_sdyVgLsMZ0QVaGHMjzwxHftrFviUScxVJnPK1DBZn0XvRHeluUxw9DmPYoSNi8CsHxVu4bh4wsmu1HQCiK4oPrNsVunbpmyE01WYANnD_TJjM_HDVFjtUot1RfHOeISVllIi37LzmQezPh1dZmC_sSMrQERagBA3R-E4I8AXWikosHb9-942WZ0d_gNhA&h=3Wq8hO7l8Um-RXR9VAKg3e9PPmeMlJRt8sdYXBzwcx0 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000004/operationStatus/MjA0NztmY2MzMTk0YS02ZTkxLTRkODUtYTIyZS1iZDY4ZDI1YmE4OWM=?api-version=2026-05-01&t=639202069318051674&c=MIIH9TCCBt2gAwIBAgIRAKnTo6mKeliSYj1GLETof4IwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVUyQyBDQSAwMTAeFw0yNjA3MDIxNTU4NDNaFw0yNjA5MjcyMTU4NDNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAlDQMyX5eVlNoyHQy97t41xstx7ISW3Jpt0fmktBr-SytLFjS2PEwnW3DFpc-bQgfDfHkKP0_FRLvm_mazEvS5KYzyX6nFjGqQTX3SfneJV5jo7nOwYnQHFTbkg0Dngz7AipTBy6yAiQqKMhRo_D-N4o3stwmKHeA0tAiEOx4G_PiAZBVgwqD_hS-porAKnsf-m7-vYsa-g9Cw0SQ2t7YIFgfqGifFcAH79L7QF5n4-toqH20MDZrR10dXpjNK50DvRiltXMo7xC198sVfC6ISY8hDbiFDpsKgL_lz-pJ2kyYJNyq1NUfS79AS70Bkl13eaOYbl8go_Oo41Ma5ArEgQIDAQABo4IE8jCCBO4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7Mv1WvWn7sAfft9pF9lwNBkNam0wHwYDVR0jBBgwFoAUz1EBqulDLGR2G0rwqsDykvhPw7swggHiBgNVHR8EggHZMIIB1TB1oHOgcYZvaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHegdaBzhnFodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyZXVhcC9jcmxzL2NjbWVlYXN0dXMyZXVhcHBraS9jY21lZWFzdHVzMmV1YXBpY2EwMS82NS9jdXJyZW50LmNybDBmoGSgYoZgaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHugeaB3hnVodHRwOi8vY2NtZWVhc3R1czJldWFwcGtpLmVhc3R1czJldWFwLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJldWFwaWNhMDEvNjUvY3VycmVudC5jcmwwggHnBggrBgEFBQcBAQSCAdkwggHVMHgGCCsGAQUFBzAChmxodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwegYIKwYBBQUHMAKGbmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NhY2VydHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxL2NlcnQuY2VyMGkGCCsGAQUFBzAChl1odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwcgYIKwYBBQUHMAKGZmh0dHA6Ly9jY21lZWFzdHVzMmV1YXBwa2kuZWFzdHVzMmV1YXAucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmV1YXBpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAndPCPc-CmjHOQpHPVSFI4dsJ3mAAA9L0QPDWwmXXvm66R08WToYQA9QCpkqxZEzl69AhSTR5x65hpeRv8xhwwj57QIuBD6rfMRghZH83T4x3bdOI4KmhFi_uY_52-cou5_xf0DyGAI_C77U5rC8TmVil8EsUCojV8rWkZXUBQSKZMaC1gzmzWW3pgKG9zwbD6J1M_7PW6f_zhE9KvGfBrLALoabdK0H_in5p3CyRMQee9pXSpsictb8cyfBIRU1fRSNmLnOjVSlF_Ll20gYIhnHvetGUxWU0EE9gWSJVUtwbqJjCeDouKPwe2UYUosoETTC7iluHZc0PV9EMfunH2w&s=HBQd4P98Oy9c3wlzUXJ4rv4NVpb4KNUsIQR_5ndhEjiMUjGqrhL6Rw71K87EOIP8JfyMwQo5_LnX_lhn2MY2-JDC6qqtkoDgV5f821xlS6YzJ2FIE1iDcRdZCoETF4gcEheaIKfS_oCA_G6oV_3KNOHAyKFcO3g3gGQpGn3azIZrBXfjKzgX493wmccIJJA7LVodi46R-3iAJi5M5-NaQSYOQzKE4JWjRBAlR7SqZ422aHNPApgAgXeOTKykXx9h-ORsizzKseSBDB7dfMwBofx53wYkgYSR5b_g7XeolNbEn08gdHyBx-dRt9tqlG6KWT3iCZqFBnzfYTlqqVocKw&h=QO3pmnU9Se3LfHQOXpUloVrya2Zv1THmq09_YD0ZbkY response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000004/operationStatus/MjA0Nzs4OGQ2OTIyNi1kOWM5LTRmNjktOGRlMS02MThmZjUxZjA5YmU=\",\r\n - \ \"name\": \"MjA0Nzs4OGQ2OTIyNi1kOWM5LTRmNjktOGRlMS02MThmZjUxZjA5YmU=\",\r\n + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000004/operationStatus/MjA0NztmY2MzMTk0YS02ZTkxLTRkODUtYTIyZS1iZDY4ZDI1YmE4OWM=\",\r\n + \ \"name\": \"MjA0NztmY2MzMTk0YS02ZTkxLTRkODUtYTIyZS1iZDY4ZDI1YmE4OWM=\",\r\n \ \"status\": \"Succeeded\"\r\n}" headers: cache-control: @@ -659,7 +660,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 27 Oct 2025 13:43:03 GMT + - Tue, 21 Jul 2026 05:02:12 GMT expires: - '-1' pragma: @@ -671,11 +672,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=12f8ea5c-1212-449e-b31c-0a574f43076e/eastus2euap/44b25f7b-1932-465f-9596-366be4cc10b4 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=352782de-cadf-4f14-ad97-08cd2617ef55/eastus2euap/0e3876d8-39c6-4536-8663-acc09ad49fe2 x-ms-throttling-version: - v2 x-msedge-ref: - - 'Ref A: 5CD613057C4745E7A8D8CEC1510246AA Ref B: MAA201060513053 Ref C: 2025-10-27T13:43:03Z' + - 'Ref A: 041995F2BB0545189DC3448F1D1E3453 Ref B: PNQ231110906036 Ref C: 2026-07-21T05:02:12Z' status: code: 200 message: OK @@ -693,21 +694,21 @@ interactions: ParameterSetName: - -n -g -l User-Agent: - - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.11.9 (Windows-10-10.0.26200-SP0) + - AZURECLI/2.88.0 azsdk-python-core/1.39.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000004?api-version=2025-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000004?api-version=2026-05-01 response: body: - string: '{"location":"eastus2euap","name":"clitest-vault000004","etag":"W/\"datetime''2025-10-27T13%3A42%3A03.3640265Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","monitoringSettings":{"azureMonitorAlertSettings":{"alertsForAllJobFailures":"Enabled","alertsForAllReplicationIssues":"Enabled","alertsForAllFailoverIssues":"Enabled"},"classicAlertSettings":{"alertsForCriticalOperations":"Enabled","emailNotificationsForSiteRecovery":"Enabled"}},"backupStorageVersion":"Unassigned","securitySettings":{"softDeleteSettings":{"softDeleteRetentionPeriodInDays":14,"softDeleteState":"AlwaysON","enhancedSecurityState":"AlwaysON"},"multiUserAuthorization":"Disabled","sourceScanConfiguration":{"state":"Disabled"}},"redundancySettings":{"standardTierStorageRedundancy":"GeoRedundant","crossRegionRestore":"Disabled"},"secureScore":"Adequate","bcdrSecurityLevel":"Good","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000004","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' + string: '{"location":"eastus2euap","name":"clitest-vault000004","etag":"W/\"datetime''2026-07-21T05%3A02%3A12.4980463Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","monitoringSettings":{"azureMonitorAlertSettings":{"alertsForAllJobFailures":"Enabled","alertsForAllReplicationIssues":"Enabled","alertsForAllFailoverIssues":"Enabled"},"classicAlertSettings":{"alertsForCriticalOperations":"Enabled","emailNotificationsForSiteRecovery":"Enabled"}},"costManagementSettings":{"granularityLevel":"VaultLevel"},"backupStorageVersion":"Unassigned","securitySettings":{"softDeleteSettings":{"softDeleteRetentionPeriodInDays":14,"softDeleteState":"AlwaysON","enhancedSecurityState":"AlwaysON"},"multiUserAuthorization":"Disabled","sourceScanConfiguration":{"state":"Disabled"}},"redundancySettings":{"standardTierStorageRedundancy":"GeoRedundant","crossRegionRestore":"Disabled"},"secureScore":"Adequate","bcdrSecurityLevel":"Good","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000004","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' headers: cache-control: - no-cache content-length: - - '1310' + - '1369' content-type: - application/json; charset=utf-8 date: - - Mon, 27 Oct 2025 13:43:04 GMT + - Tue, 21 Jul 2026 05:02:13 GMT expires: - '-1' pragma: @@ -721,7 +722,7 @@ interactions: x-ms-throttling-version: - v2 x-msedge-ref: - - 'Ref A: 19A60D8E4B914E11831740BB410DD39C Ref B: MAA201060513029 Ref C: 2025-10-27T13:43:04Z' + - 'Ref A: 0E4115C3598F4FB5AAAEC27C5E285C71 Ref B: PNQ231110909040 Ref C: 2026-07-21T05:02:13Z' status: code: 200 message: OK @@ -739,9 +740,9 @@ interactions: ParameterSetName: - -n -g -l --public-network-access --immutability-state --cross-subscription-restore-state User-Agent: - - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.11.9 (Windows-10-10.0.26200-SP0) + - AZURECLI/2.88.0 azsdk-python-core/1.39.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005?api-version=2025-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005?api-version=2026-05-01 response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.RecoveryServices/vaults/clitest-vault000005'' @@ -755,7 +756,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 27 Oct 2025 13:43:05 GMT + - Tue, 21 Jul 2026 05:02:14 GMT expires: - '-1' pragma: @@ -769,7 +770,7 @@ interactions: x-ms-failure-cause: - gateway x-msedge-ref: - - 'Ref A: 894344AC15C24806912380B832D1DCE5 Ref B: MAA201060513031 Ref C: 2025-10-27T13:43:05Z' + - 'Ref A: 4435A15E0F7A4AAD8BEA41681CAF03ED Ref B: PNQ231110907025 Ref C: 2026-07-21T05:02:14Z' status: code: 404 message: Not Found @@ -777,12 +778,13 @@ interactions: body: '{"location": "eastus2euap", "sku": {"name": "Standard"}, "properties": {"securitySettings": {"softDeleteSettings": {"enhancedSecurityState": "AlwaysOn", "softDeleteState": "AlwaysOn", "softDeleteRetentionPeriodInDays": 14}, "immutabilitySettings": - {"state": "Unlocked"}}, "publicNetworkAccess": "Disabled", "monitoringSettings": - {"azureMonitorAlertSettings": {"alertsForAllJobFailures": "Enabled", "alertsForAllReplicationIssues": - "Enabled", "alertsForAllFailoverIssues": "Enabled"}, "classicAlertSettings": - {"alertsForCriticalOperations": "Enabled", "emailNotificationsForSiteRecovery": - "Enabled"}}, "restoreSettings": {"crossSubscriptionRestoreSettings": {"crossSubscriptionRestoreState": - "Disabled"}}}}' + {"state": "Unlocked", "configuration": {"type": "AsPerPolicy"}}}, "publicNetworkAccess": + "Disabled", "monitoringSettings": {"azureMonitorAlertSettings": {"alertsForAllJobFailures": + "Enabled", "alertsForAllReplicationIssues": "Enabled", "alertsForAllFailoverIssues": + "Enabled"}, "classicAlertSettings": {"alertsForCriticalOperations": "Enabled", + "emailNotificationsForSiteRecovery": "Enabled"}}, "restoreSettings": {"crossSubscriptionRestoreSettings": + {"crossSubscriptionRestoreState": "Disabled"}}, "costManagementSettings": {"granularityLevel": + "VaultLevel"}}}' headers: Accept: - application/json @@ -793,29 +795,29 @@ interactions: Connection: - keep-alive Content-Length: - - '705' + - '809' Content-Type: - application/json ParameterSetName: - -n -g -l --public-network-access --immutability-state --cross-subscription-restore-state User-Agent: - - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.11.9 (Windows-10-10.0.26200-SP0) + - AZURECLI/2.88.0 azsdk-python-core/1.39.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005?api-version=2025-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005?api-version=2026-05-01 response: body: - string: '{"location":"eastus2euap","name":"clitest-vault000005","etag":"W/\"datetime''2025-10-27T13%3A43%3A07.4837897Z''\"","properties":{"provisioningState":"Provisioning","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","monitoringSettings":{"azureMonitorAlertSettings":{"alertsForAllJobFailures":"Enabled","alertsForAllReplicationIssues":"Enabled","alertsForAllFailoverIssues":"Enabled"},"classicAlertSettings":{"alertsForCriticalOperations":"Enabled","emailNotificationsForSiteRecovery":"Enabled"}},"securitySettings":{"immutabilitySettings":{"state":"Unlocked"},"softDeleteSettings":{"softDeleteRetentionPeriodInDays":14,"softDeleteState":"AlwaysON","enhancedSecurityState":"AlwaysON"},"multiUserAuthorization":"Invalid","sourceScanConfiguration":{"state":"Disabled"}},"redundancySettings":{"standardTierStorageRedundancy":"GeoRedundant","crossRegionRestore":"Disabled"},"secureScore":"Adequate","bcdrSecurityLevel":"Good","publicNetworkAccess":"Disabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Disabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' + string: '{"location":"eastus2euap","name":"clitest-vault000005","etag":"W/\"datetime''2026-07-21T05%3A02%3A15.4604225Z''\"","properties":{"provisioningState":"Provisioning","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","monitoringSettings":{"azureMonitorAlertSettings":{"alertsForAllJobFailures":"Enabled","alertsForAllReplicationIssues":"Enabled","alertsForAllFailoverIssues":"Enabled"},"classicAlertSettings":{"alertsForCriticalOperations":"Enabled","emailNotificationsForSiteRecovery":"Enabled"}},"costManagementSettings":{"granularityLevel":"VaultLevel"},"securitySettings":{"immutabilitySettings":{"state":"Unlocked","configuration":{"type":"AsPerPolicy"}},"softDeleteSettings":{"softDeleteRetentionPeriodInDays":14,"softDeleteState":"AlwaysON","enhancedSecurityState":"AlwaysON"},"multiUserAuthorization":"Invalid","sourceScanConfiguration":{"state":"Disabled"}},"redundancySettings":{"standardTierStorageRedundancy":"GeoRedundant","crossRegionRestore":"Disabled"},"secureScore":"Adequate","bcdrSecurityLevel":"Good","publicNetworkAccess":"Disabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Disabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005/operationStatus/MjA0Nzs1YWQ1YzU4ZC05NmM0LTQxMTItYTZjZi0wYTllZmUwYmE2MDg=?api-version=2025-08-01&t=638971693876719280&c=MIIIpDCCBoygAwIBAgITFgIdx-8P5Q2flkVe0wABAh3H7zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUxMDIwMTM0ODIxWhcNMjYwMTE4MTM0ODIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALJsx40wbBQQVymBKxEYB3QsXs7DWrmkLk1cvGC9Oh6ZUsiS6z4fZ9KUiL7u4Cb1R-5gfYTplSDkCfn9Y776fzY9tgxKTFF2KMooWQSUUNfMYuwrWFbbHGDx79k-SN6J44MhkxgVnvirjK5cOgtR1YwGjnk0x5Ea3-szYPplTQi12yBEDft-JR3YCKn54jq1stV1W2hRp_2g1BQImqyuswXZKY2DD-s3bQClN3clms4KDqdtTyXsWYLLd1wyrriHRsQnNbYpC1EqjwDyNGLTXHMVXKbeUefj5AwkYLnb77HgLc0IW7nFQwaOLB01n0OsHuhWZeUiilCDsiV76B_8MF0CAwEAAaOCBJEwggSNMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAdoGCCsGAQUFBwEBBIIBzDCCAcgwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDEuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDQuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwHQYDVR0OBBYEFBIs_XIgrlYGjVV6tC88QEhsK39fMA4GA1UdDwEB_wQEAwIFoDCCATUGA1UdHwSCASwwggEoMIIBJKCCASCgggEchkJodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMB8GA1UdIwQYMBaAFEijrWB1am_sYPNpVdEAsTJX_GzkMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAgEAoWGeh2L-xOp4WFwNcK7-42nE8XWzyiVfNq-en8umv6B7FIlZBqRTSHucIlGoZqT7uEkuOIkyfwKUKMHeX3kte0w5f4gSgSX-JsexZj509BqurtDEgPbEjh9zUpbDAM7sODNvfiZ0HVF6sREKDyDIRGhYl_C7qO6FPNUH0wiEMRNI92WewkvN5kxHFBO56OS26He5ElMpeDPNifRXSj2RrthZNiLhtVNqOXCXV8HvAO-8PBPQGpetO260pqROBjblZfst9LCba3YKdZ8o2ojOeG5_ANB5mSX3bsBsY2ULkbRKgNBi5AXJ7q0-n01yM6-uiSvZ8wrkHLfDJ6KlzSDTLJpoVa8AUeZoPEhJgyQInNCPK5nFOD-F1QNRwQj-B-s7y16iUVZiLZ3hkxODdrbMjfPRL2P3DYn1cg-jZVq0xDX1aSlRyQq6qi9xZ9RfBPeOrsZ3SHGm0XIJdlqtaYt0Evo6fWKiFXuJ-H6nf5Qy8sLTk2q160CH2IgsW5_tA0n0ySGt5n-9j610wwPdH6ImEQ1jli9U8Ur82WjB7qQhpmYPuHOyytAGttfk1271zkw5TOpkzJfGWvT5zYv436XCj6pouSk2GJmG1iR-9pO4kPK1LWp3ujV-IXZjP_-xg0wwwsvc0BDJJZZk4tElY91ySFzLXlN8QfTH67VHl7D8ILg&s=qZp0P5t3eu93wXLU-C4L2XeNems04fbE1deZVOP3EmAd2yBB0tD29weVfhWkjuaNxD1X7Pdg7xliuPnZ4aD2VvWd6yO-S6PuqCRx_SymLXEsFV8Wz3UezRcgQ2xwOSWzLARLFya4ExWwl9RN3rYz3lg81xr7u1LkfW0E0Y-P0On-6GRHXq3OiAZHgdCPxc6NNKiiwJZ3o5xwu9_jEUC4p7DC-TIga6RQzDxqmL2744xxnGejNtPSfS638vLUmj8M0gGyavZC_XKxlK0DCe-DZ_8ZeY2CxPGapIuyG_gdZU7MkSLwf57TI86AnhzfvVRo_Y8hVqktQW4P13NJThe2kA&h=OJzEGzKLs4aDVZBtGGaKsUB3Yxpm7UPvLqHb_SBPc0k + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005/operationStatus/MjA0Nzs1ZTliN2U5ZC02NDI5LTQ2MTQtYTFiOC0wYTExNjIwMWZjZWM=?api-version=2026-05-01&t=639202069355710720&c=MIIH9TCCBt2gAwIBAgIRAKnTo6mKeliSYj1GLETof4IwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVUyQyBDQSAwMTAeFw0yNjA3MDIxNTU4NDNaFw0yNjA5MjcyMTU4NDNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAlDQMyX5eVlNoyHQy97t41xstx7ISW3Jpt0fmktBr-SytLFjS2PEwnW3DFpc-bQgfDfHkKP0_FRLvm_mazEvS5KYzyX6nFjGqQTX3SfneJV5jo7nOwYnQHFTbkg0Dngz7AipTBy6yAiQqKMhRo_D-N4o3stwmKHeA0tAiEOx4G_PiAZBVgwqD_hS-porAKnsf-m7-vYsa-g9Cw0SQ2t7YIFgfqGifFcAH79L7QF5n4-toqH20MDZrR10dXpjNK50DvRiltXMo7xC198sVfC6ISY8hDbiFDpsKgL_lz-pJ2kyYJNyq1NUfS79AS70Bkl13eaOYbl8go_Oo41Ma5ArEgQIDAQABo4IE8jCCBO4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7Mv1WvWn7sAfft9pF9lwNBkNam0wHwYDVR0jBBgwFoAUz1EBqulDLGR2G0rwqsDykvhPw7swggHiBgNVHR8EggHZMIIB1TB1oHOgcYZvaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHegdaBzhnFodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyZXVhcC9jcmxzL2NjbWVlYXN0dXMyZXVhcHBraS9jY21lZWFzdHVzMmV1YXBpY2EwMS82NS9jdXJyZW50LmNybDBmoGSgYoZgaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHugeaB3hnVodHRwOi8vY2NtZWVhc3R1czJldWFwcGtpLmVhc3R1czJldWFwLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJldWFwaWNhMDEvNjUvY3VycmVudC5jcmwwggHnBggrBgEFBQcBAQSCAdkwggHVMHgGCCsGAQUFBzAChmxodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwegYIKwYBBQUHMAKGbmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NhY2VydHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxL2NlcnQuY2VyMGkGCCsGAQUFBzAChl1odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwcgYIKwYBBQUHMAKGZmh0dHA6Ly9jY21lZWFzdHVzMmV1YXBwa2kuZWFzdHVzMmV1YXAucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmV1YXBpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAndPCPc-CmjHOQpHPVSFI4dsJ3mAAA9L0QPDWwmXXvm66R08WToYQA9QCpkqxZEzl69AhSTR5x65hpeRv8xhwwj57QIuBD6rfMRghZH83T4x3bdOI4KmhFi_uY_52-cou5_xf0DyGAI_C77U5rC8TmVil8EsUCojV8rWkZXUBQSKZMaC1gzmzWW3pgKG9zwbD6J1M_7PW6f_zhE9KvGfBrLALoabdK0H_in5p3CyRMQee9pXSpsictb8cyfBIRU1fRSNmLnOjVSlF_Ll20gYIhnHvetGUxWU0EE9gWSJVUtwbqJjCeDouKPwe2UYUosoETTC7iluHZc0PV9EMfunH2w&s=WHnztrHomWPVHwmfalqD8qD_IteCMErrJUCoIzVXuHimh2BVOh_tIPrbsqxX1aXAKRYt_sjq52DlgU7TKHJ4Dsu2H3k6xIoOPFIAj7dOzliDdW1Tm6nUKrJfj0GSr-Zk0GP6AWDwwUFObcktMU8i5WbjLXH6Xs_i80sL4T4CNLLRcwgwaaoqVHSwQXxt4pN7A9SNLHdbgR7424bLWfZ9aOLH1wJfQr2W37EaL4a_4-yG3IeKNJT9WcKqBDmysCMhbwahuaSYZY6av7ZCVycE6X6McrPsJmVPc3fNqZ1HncYigg1fd531Bb2ioQEF0VgoQSnZZ1S22RDt1Rvm11HYaQ&h=eiR2ezdJ4zKBvxH0iD1TV1KjBUYmidtYZA1DsdCJDao cache-control: - no-cache content-length: - - '1322' + - '1420' content-type: - application/json; charset=utf-8 date: - - Mon, 27 Oct 2025 13:43:07 GMT + - Tue, 21 Jul 2026 05:02:15 GMT expires: - '-1' pragma: @@ -827,13 +829,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=12f8ea5c-1212-449e-b31c-0a574f43076e/eastus2euap/b6a93f64-5be8-47e0-8993-bb17b413006a + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=352782de-cadf-4f14-ad97-08cd2617ef55/eastus2euap/f760ec5e-3d2c-4722-9c12-0267efb129fb x-ms-ratelimit-remaining-subscription-resource-requests: - - '799' + - '798' x-ms-throttling-version: - v1 x-msedge-ref: - - 'Ref A: 36ECD3E922FB44B7BD6876C258AACE70 Ref B: MAA201060516035 Ref C: 2025-10-27T13:43:06Z' + - 'Ref A: BDEC95F2F7234919BAC7FAC51728F510 Ref B: PNQ231110909023 Ref C: 2026-07-21T05:02:15Z' status: code: 201 message: Created @@ -851,17 +853,17 @@ interactions: ParameterSetName: - -n -g -l --public-network-access --immutability-state --cross-subscription-restore-state User-Agent: - - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.11.9 (Windows-10-10.0.26200-SP0) + - AZURECLI/2.88.0 azsdk-python-core/1.39.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005/operationStatus/MjA0Nzs1YWQ1YzU4ZC05NmM0LTQxMTItYTZjZi0wYTllZmUwYmE2MDg=?api-version=2025-08-01&t=638971693876719280&c=MIIIpDCCBoygAwIBAgITFgIdx-8P5Q2flkVe0wABAh3H7zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUxMDIwMTM0ODIxWhcNMjYwMTE4MTM0ODIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALJsx40wbBQQVymBKxEYB3QsXs7DWrmkLk1cvGC9Oh6ZUsiS6z4fZ9KUiL7u4Cb1R-5gfYTplSDkCfn9Y776fzY9tgxKTFF2KMooWQSUUNfMYuwrWFbbHGDx79k-SN6J44MhkxgVnvirjK5cOgtR1YwGjnk0x5Ea3-szYPplTQi12yBEDft-JR3YCKn54jq1stV1W2hRp_2g1BQImqyuswXZKY2DD-s3bQClN3clms4KDqdtTyXsWYLLd1wyrriHRsQnNbYpC1EqjwDyNGLTXHMVXKbeUefj5AwkYLnb77HgLc0IW7nFQwaOLB01n0OsHuhWZeUiilCDsiV76B_8MF0CAwEAAaOCBJEwggSNMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAdoGCCsGAQUFBwEBBIIBzDCCAcgwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDEuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDQuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwHQYDVR0OBBYEFBIs_XIgrlYGjVV6tC88QEhsK39fMA4GA1UdDwEB_wQEAwIFoDCCATUGA1UdHwSCASwwggEoMIIBJKCCASCgggEchkJodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMB8GA1UdIwQYMBaAFEijrWB1am_sYPNpVdEAsTJX_GzkMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAgEAoWGeh2L-xOp4WFwNcK7-42nE8XWzyiVfNq-en8umv6B7FIlZBqRTSHucIlGoZqT7uEkuOIkyfwKUKMHeX3kte0w5f4gSgSX-JsexZj509BqurtDEgPbEjh9zUpbDAM7sODNvfiZ0HVF6sREKDyDIRGhYl_C7qO6FPNUH0wiEMRNI92WewkvN5kxHFBO56OS26He5ElMpeDPNifRXSj2RrthZNiLhtVNqOXCXV8HvAO-8PBPQGpetO260pqROBjblZfst9LCba3YKdZ8o2ojOeG5_ANB5mSX3bsBsY2ULkbRKgNBi5AXJ7q0-n01yM6-uiSvZ8wrkHLfDJ6KlzSDTLJpoVa8AUeZoPEhJgyQInNCPK5nFOD-F1QNRwQj-B-s7y16iUVZiLZ3hkxODdrbMjfPRL2P3DYn1cg-jZVq0xDX1aSlRyQq6qi9xZ9RfBPeOrsZ3SHGm0XIJdlqtaYt0Evo6fWKiFXuJ-H6nf5Qy8sLTk2q160CH2IgsW5_tA0n0ySGt5n-9j610wwPdH6ImEQ1jli9U8Ur82WjB7qQhpmYPuHOyytAGttfk1271zkw5TOpkzJfGWvT5zYv436XCj6pouSk2GJmG1iR-9pO4kPK1LWp3ujV-IXZjP_-xg0wwwsvc0BDJJZZk4tElY91ySFzLXlN8QfTH67VHl7D8ILg&s=qZp0P5t3eu93wXLU-C4L2XeNems04fbE1deZVOP3EmAd2yBB0tD29weVfhWkjuaNxD1X7Pdg7xliuPnZ4aD2VvWd6yO-S6PuqCRx_SymLXEsFV8Wz3UezRcgQ2xwOSWzLARLFya4ExWwl9RN3rYz3lg81xr7u1LkfW0E0Y-P0On-6GRHXq3OiAZHgdCPxc6NNKiiwJZ3o5xwu9_jEUC4p7DC-TIga6RQzDxqmL2744xxnGejNtPSfS638vLUmj8M0gGyavZC_XKxlK0DCe-DZ_8ZeY2CxPGapIuyG_gdZU7MkSLwf57TI86AnhzfvVRo_Y8hVqktQW4P13NJThe2kA&h=OJzEGzKLs4aDVZBtGGaKsUB3Yxpm7UPvLqHb_SBPc0k + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005/operationStatus/MjA0Nzs1ZTliN2U5ZC02NDI5LTQ2MTQtYTFiOC0wYTExNjIwMWZjZWM=?api-version=2026-05-01&t=639202069355710720&c=MIIH9TCCBt2gAwIBAgIRAKnTo6mKeliSYj1GLETof4IwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVUyQyBDQSAwMTAeFw0yNjA3MDIxNTU4NDNaFw0yNjA5MjcyMTU4NDNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAlDQMyX5eVlNoyHQy97t41xstx7ISW3Jpt0fmktBr-SytLFjS2PEwnW3DFpc-bQgfDfHkKP0_FRLvm_mazEvS5KYzyX6nFjGqQTX3SfneJV5jo7nOwYnQHFTbkg0Dngz7AipTBy6yAiQqKMhRo_D-N4o3stwmKHeA0tAiEOx4G_PiAZBVgwqD_hS-porAKnsf-m7-vYsa-g9Cw0SQ2t7YIFgfqGifFcAH79L7QF5n4-toqH20MDZrR10dXpjNK50DvRiltXMo7xC198sVfC6ISY8hDbiFDpsKgL_lz-pJ2kyYJNyq1NUfS79AS70Bkl13eaOYbl8go_Oo41Ma5ArEgQIDAQABo4IE8jCCBO4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7Mv1WvWn7sAfft9pF9lwNBkNam0wHwYDVR0jBBgwFoAUz1EBqulDLGR2G0rwqsDykvhPw7swggHiBgNVHR8EggHZMIIB1TB1oHOgcYZvaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHegdaBzhnFodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyZXVhcC9jcmxzL2NjbWVlYXN0dXMyZXVhcHBraS9jY21lZWFzdHVzMmV1YXBpY2EwMS82NS9jdXJyZW50LmNybDBmoGSgYoZgaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHugeaB3hnVodHRwOi8vY2NtZWVhc3R1czJldWFwcGtpLmVhc3R1czJldWFwLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJldWFwaWNhMDEvNjUvY3VycmVudC5jcmwwggHnBggrBgEFBQcBAQSCAdkwggHVMHgGCCsGAQUFBzAChmxodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwegYIKwYBBQUHMAKGbmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NhY2VydHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxL2NlcnQuY2VyMGkGCCsGAQUFBzAChl1odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwcgYIKwYBBQUHMAKGZmh0dHA6Ly9jY21lZWFzdHVzMmV1YXBwa2kuZWFzdHVzMmV1YXAucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmV1YXBpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAndPCPc-CmjHOQpHPVSFI4dsJ3mAAA9L0QPDWwmXXvm66R08WToYQA9QCpkqxZEzl69AhSTR5x65hpeRv8xhwwj57QIuBD6rfMRghZH83T4x3bdOI4KmhFi_uY_52-cou5_xf0DyGAI_C77U5rC8TmVil8EsUCojV8rWkZXUBQSKZMaC1gzmzWW3pgKG9zwbD6J1M_7PW6f_zhE9KvGfBrLALoabdK0H_in5p3CyRMQee9pXSpsictb8cyfBIRU1fRSNmLnOjVSlF_Ll20gYIhnHvetGUxWU0EE9gWSJVUtwbqJjCeDouKPwe2UYUosoETTC7iluHZc0PV9EMfunH2w&s=WHnztrHomWPVHwmfalqD8qD_IteCMErrJUCoIzVXuHimh2BVOh_tIPrbsqxX1aXAKRYt_sjq52DlgU7TKHJ4Dsu2H3k6xIoOPFIAj7dOzliDdW1Tm6nUKrJfj0GSr-Zk0GP6AWDwwUFObcktMU8i5WbjLXH6Xs_i80sL4T4CNLLRcwgwaaoqVHSwQXxt4pN7A9SNLHdbgR7424bLWfZ9aOLH1wJfQr2W37EaL4a_4-yG3IeKNJT9WcKqBDmysCMhbwahuaSYZY6av7ZCVycE6X6McrPsJmVPc3fNqZ1HncYigg1fd531Bb2ioQEF0VgoQSnZZ1S22RDt1Rvm11HYaQ&h=eiR2ezdJ4zKBvxH0iD1TV1KjBUYmidtYZA1DsdCJDao response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005/operationStatus/MjA0Nzs1YWQ1YzU4ZC05NmM0LTQxMTItYTZjZi0wYTllZmUwYmE2MDg=\",\r\n - \ \"name\": \"MjA0Nzs1YWQ1YzU4ZC05NmM0LTQxMTItYTZjZi0wYTllZmUwYmE2MDg=\",\r\n + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005/operationStatus/MjA0Nzs1ZTliN2U5ZC02NDI5LTQ2MTQtYTFiOC0wYTExNjIwMWZjZWM=\",\r\n + \ \"name\": \"MjA0Nzs1ZTliN2U5ZC02NDI5LTQ2MTQtYTFiOC0wYTExNjIwMWZjZWM=\",\r\n \ \"status\": \"InProgress\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005/operationStatus/MjA0Nzs1YWQ1YzU4ZC05NmM0LTQxMTItYTZjZi0wYTllZmUwYmE2MDg=?api-version=2025-08-01&t=638971693888948194&c=MIIIpDCCBoygAwIBAgITFgIdx-8P5Q2flkVe0wABAh3H7zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUxMDIwMTM0ODIxWhcNMjYwMTE4MTM0ODIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALJsx40wbBQQVymBKxEYB3QsXs7DWrmkLk1cvGC9Oh6ZUsiS6z4fZ9KUiL7u4Cb1R-5gfYTplSDkCfn9Y776fzY9tgxKTFF2KMooWQSUUNfMYuwrWFbbHGDx79k-SN6J44MhkxgVnvirjK5cOgtR1YwGjnk0x5Ea3-szYPplTQi12yBEDft-JR3YCKn54jq1stV1W2hRp_2g1BQImqyuswXZKY2DD-s3bQClN3clms4KDqdtTyXsWYLLd1wyrriHRsQnNbYpC1EqjwDyNGLTXHMVXKbeUefj5AwkYLnb77HgLc0IW7nFQwaOLB01n0OsHuhWZeUiilCDsiV76B_8MF0CAwEAAaOCBJEwggSNMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAdoGCCsGAQUFBwEBBIIBzDCCAcgwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDEuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDQuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwHQYDVR0OBBYEFBIs_XIgrlYGjVV6tC88QEhsK39fMA4GA1UdDwEB_wQEAwIFoDCCATUGA1UdHwSCASwwggEoMIIBJKCCASCgggEchkJodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMB8GA1UdIwQYMBaAFEijrWB1am_sYPNpVdEAsTJX_GzkMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAgEAoWGeh2L-xOp4WFwNcK7-42nE8XWzyiVfNq-en8umv6B7FIlZBqRTSHucIlGoZqT7uEkuOIkyfwKUKMHeX3kte0w5f4gSgSX-JsexZj509BqurtDEgPbEjh9zUpbDAM7sODNvfiZ0HVF6sREKDyDIRGhYl_C7qO6FPNUH0wiEMRNI92WewkvN5kxHFBO56OS26He5ElMpeDPNifRXSj2RrthZNiLhtVNqOXCXV8HvAO-8PBPQGpetO260pqROBjblZfst9LCba3YKdZ8o2ojOeG5_ANB5mSX3bsBsY2ULkbRKgNBi5AXJ7q0-n01yM6-uiSvZ8wrkHLfDJ6KlzSDTLJpoVa8AUeZoPEhJgyQInNCPK5nFOD-F1QNRwQj-B-s7y16iUVZiLZ3hkxODdrbMjfPRL2P3DYn1cg-jZVq0xDX1aSlRyQq6qi9xZ9RfBPeOrsZ3SHGm0XIJdlqtaYt0Evo6fWKiFXuJ-H6nf5Qy8sLTk2q160CH2IgsW5_tA0n0ySGt5n-9j610wwPdH6ImEQ1jli9U8Ur82WjB7qQhpmYPuHOyytAGttfk1271zkw5TOpkzJfGWvT5zYv436XCj6pouSk2GJmG1iR-9pO4kPK1LWp3ujV-IXZjP_-xg0wwwsvc0BDJJZZk4tElY91ySFzLXlN8QfTH67VHl7D8ILg&s=iBZc7LoAemSZMbc_jW4eLen860w0aIDmt38ylZiN836a09kimqmmJvHt5IQP21pOFGkJUMDpYwufoK5SPr8y1Se3So8JL_BbSfRSb83HIOVdzyXQIRx_NOdy-CVWMkEDA-ijDM9SBiUS-vs6mo-AaGU8SgLzBIKyWSV-pj-fGQGJr4XgXyxbZmemQenZul4RpMa4CfEi3IdAc9K5zw8WzmiaZmOKbBczWUQg3Tvi9BdownHmRQsdnuXIqBokI-Gi8urgHrrK9IxGaLN7TomzXFb5Bjz1U_UuMK69W_pKG3zat8HbEnBHAsbfVDuNIxyBoI6NBlSAoIyHTLOGLAetAA&h=kF9zAjfu3miSynTWPQb9TWWmvWKz6wjnnIbgUZKG6ZM + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005/operationStatus/MjA0Nzs1ZTliN2U5ZC02NDI5LTQ2MTQtYTFiOC0wYTExNjIwMWZjZWM=?api-version=2026-05-01&t=639202069363259539&c=MIIH9TCCBt2gAwIBAgIRAKnTo6mKeliSYj1GLETof4IwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVUyQyBDQSAwMTAeFw0yNjA3MDIxNTU4NDNaFw0yNjA5MjcyMTU4NDNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAlDQMyX5eVlNoyHQy97t41xstx7ISW3Jpt0fmktBr-SytLFjS2PEwnW3DFpc-bQgfDfHkKP0_FRLvm_mazEvS5KYzyX6nFjGqQTX3SfneJV5jo7nOwYnQHFTbkg0Dngz7AipTBy6yAiQqKMhRo_D-N4o3stwmKHeA0tAiEOx4G_PiAZBVgwqD_hS-porAKnsf-m7-vYsa-g9Cw0SQ2t7YIFgfqGifFcAH79L7QF5n4-toqH20MDZrR10dXpjNK50DvRiltXMo7xC198sVfC6ISY8hDbiFDpsKgL_lz-pJ2kyYJNyq1NUfS79AS70Bkl13eaOYbl8go_Oo41Ma5ArEgQIDAQABo4IE8jCCBO4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7Mv1WvWn7sAfft9pF9lwNBkNam0wHwYDVR0jBBgwFoAUz1EBqulDLGR2G0rwqsDykvhPw7swggHiBgNVHR8EggHZMIIB1TB1oHOgcYZvaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHegdaBzhnFodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyZXVhcC9jcmxzL2NjbWVlYXN0dXMyZXVhcHBraS9jY21lZWFzdHVzMmV1YXBpY2EwMS82NS9jdXJyZW50LmNybDBmoGSgYoZgaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHugeaB3hnVodHRwOi8vY2NtZWVhc3R1czJldWFwcGtpLmVhc3R1czJldWFwLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJldWFwaWNhMDEvNjUvY3VycmVudC5jcmwwggHnBggrBgEFBQcBAQSCAdkwggHVMHgGCCsGAQUFBzAChmxodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwegYIKwYBBQUHMAKGbmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NhY2VydHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxL2NlcnQuY2VyMGkGCCsGAQUFBzAChl1odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwcgYIKwYBBQUHMAKGZmh0dHA6Ly9jY21lZWFzdHVzMmV1YXBwa2kuZWFzdHVzMmV1YXAucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmV1YXBpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAndPCPc-CmjHOQpHPVSFI4dsJ3mAAA9L0QPDWwmXXvm66R08WToYQA9QCpkqxZEzl69AhSTR5x65hpeRv8xhwwj57QIuBD6rfMRghZH83T4x3bdOI4KmhFi_uY_52-cou5_xf0DyGAI_C77U5rC8TmVil8EsUCojV8rWkZXUBQSKZMaC1gzmzWW3pgKG9zwbD6J1M_7PW6f_zhE9KvGfBrLALoabdK0H_in5p3CyRMQee9pXSpsictb8cyfBIRU1fRSNmLnOjVSlF_Ll20gYIhnHvetGUxWU0EE9gWSJVUtwbqJjCeDouKPwe2UYUosoETTC7iluHZc0PV9EMfunH2w&s=Vzv75oBOPJ-N-CTK6NNhwCUx8WIOCgsXVi078rGnRIZ98-Biu9IkNQbuls9zGJLNOD-oJCUvuJ6Lz_IN40OrQBEXnZ_ncuLTiasFrU1p1oi7cfYdRcSlbsGdjKuXIafz1ztOB_6DNHDupft-HqQdV9apAExZbUaZjSclsp_PzT6luMlsZV9MSoiKSAp6vTbD7GipxOJdulNneqbgEi2VD_L6oIZjnveXXfOuZhWmq82f50OSuvJtGJ0Z8_PHTZUzNhLZFEIeQuMz-UArSewb6ELo4QdAFHOAsjgHbiTD7YX2IZg2WsDnMsqy7Pkv8sufqk92fz_kP_VPDmFKP4re3A&h=EEihzjt6bVH8K9rL_Glzytw3HOWZnm4ms9O9Y13IMRc cache-control: - no-cache content-length: @@ -869,11 +871,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 27 Oct 2025 13:43:08 GMT + - Tue, 21 Jul 2026 05:02:15 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005/operationResults/MjA0Nzs1YWQ1YzU4ZC05NmM0LTQxMTItYTZjZi0wYTllZmUwYmE2MDg=?api-version=2025-08-01&t=638971693888948194&c=MIIIpDCCBoygAwIBAgITFgIdx-8P5Q2flkVe0wABAh3H7zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUxMDIwMTM0ODIxWhcNMjYwMTE4MTM0ODIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALJsx40wbBQQVymBKxEYB3QsXs7DWrmkLk1cvGC9Oh6ZUsiS6z4fZ9KUiL7u4Cb1R-5gfYTplSDkCfn9Y776fzY9tgxKTFF2KMooWQSUUNfMYuwrWFbbHGDx79k-SN6J44MhkxgVnvirjK5cOgtR1YwGjnk0x5Ea3-szYPplTQi12yBEDft-JR3YCKn54jq1stV1W2hRp_2g1BQImqyuswXZKY2DD-s3bQClN3clms4KDqdtTyXsWYLLd1wyrriHRsQnNbYpC1EqjwDyNGLTXHMVXKbeUefj5AwkYLnb77HgLc0IW7nFQwaOLB01n0OsHuhWZeUiilCDsiV76B_8MF0CAwEAAaOCBJEwggSNMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAdoGCCsGAQUFBwEBBIIBzDCCAcgwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDEuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDQuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwHQYDVR0OBBYEFBIs_XIgrlYGjVV6tC88QEhsK39fMA4GA1UdDwEB_wQEAwIFoDCCATUGA1UdHwSCASwwggEoMIIBJKCCASCgggEchkJodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMB8GA1UdIwQYMBaAFEijrWB1am_sYPNpVdEAsTJX_GzkMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAgEAoWGeh2L-xOp4WFwNcK7-42nE8XWzyiVfNq-en8umv6B7FIlZBqRTSHucIlGoZqT7uEkuOIkyfwKUKMHeX3kte0w5f4gSgSX-JsexZj509BqurtDEgPbEjh9zUpbDAM7sODNvfiZ0HVF6sREKDyDIRGhYl_C7qO6FPNUH0wiEMRNI92WewkvN5kxHFBO56OS26He5ElMpeDPNifRXSj2RrthZNiLhtVNqOXCXV8HvAO-8PBPQGpetO260pqROBjblZfst9LCba3YKdZ8o2ojOeG5_ANB5mSX3bsBsY2ULkbRKgNBi5AXJ7q0-n01yM6-uiSvZ8wrkHLfDJ6KlzSDTLJpoVa8AUeZoPEhJgyQInNCPK5nFOD-F1QNRwQj-B-s7y16iUVZiLZ3hkxODdrbMjfPRL2P3DYn1cg-jZVq0xDX1aSlRyQq6qi9xZ9RfBPeOrsZ3SHGm0XIJdlqtaYt0Evo6fWKiFXuJ-H6nf5Qy8sLTk2q160CH2IgsW5_tA0n0ySGt5n-9j610wwPdH6ImEQ1jli9U8Ur82WjB7qQhpmYPuHOyytAGttfk1271zkw5TOpkzJfGWvT5zYv436XCj6pouSk2GJmG1iR-9pO4kPK1LWp3ujV-IXZjP_-xg0wwwsvc0BDJJZZk4tElY91ySFzLXlN8QfTH67VHl7D8ILg&s=W21zGWfkhtwLuBIOVPM9zsheQvGTIPquGEeDMRRVsN3JstPP2_6535S-EZ46-QeU6CAXny9CK-70yqfOhWRZubZJe31GE54Qjg64lHi_3DyLUeYuFLw6Hv-1ihUxzcVEWIcLSZ-Sx8cq7rPmsHB37mlPKQmk_80LUW4O0vkbrmFr4zXkD4KOH-wPegMuS1001HdMmODFZdv5hkkDH_eYmR5G1OWszBuuGC8wjHRvnTLckV-TNN0r6GY2xMhu3VxCjDfEUxQwcNi3p_tbpQZPUwZb8Ge6GTMMFySHs0LLb05otBOXN3uxz1tRVfwnpBM6mWhOaEQ-Wuvk7PCxWmXrCw&h=MQscyU4RGQWXphZ57lcO0QTjIOWWxSDhrz2D_VWOJ6c + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005/operationResults/MjA0Nzs1ZTliN2U5ZC02NDI5LTQ2MTQtYTFiOC0wYTExNjIwMWZjZWM=?api-version=2026-05-01&t=639202069363416094&c=MIIH9TCCBt2gAwIBAgIRAKnTo6mKeliSYj1GLETof4IwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVUyQyBDQSAwMTAeFw0yNjA3MDIxNTU4NDNaFw0yNjA5MjcyMTU4NDNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAlDQMyX5eVlNoyHQy97t41xstx7ISW3Jpt0fmktBr-SytLFjS2PEwnW3DFpc-bQgfDfHkKP0_FRLvm_mazEvS5KYzyX6nFjGqQTX3SfneJV5jo7nOwYnQHFTbkg0Dngz7AipTBy6yAiQqKMhRo_D-N4o3stwmKHeA0tAiEOx4G_PiAZBVgwqD_hS-porAKnsf-m7-vYsa-g9Cw0SQ2t7YIFgfqGifFcAH79L7QF5n4-toqH20MDZrR10dXpjNK50DvRiltXMo7xC198sVfC6ISY8hDbiFDpsKgL_lz-pJ2kyYJNyq1NUfS79AS70Bkl13eaOYbl8go_Oo41Ma5ArEgQIDAQABo4IE8jCCBO4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7Mv1WvWn7sAfft9pF9lwNBkNam0wHwYDVR0jBBgwFoAUz1EBqulDLGR2G0rwqsDykvhPw7swggHiBgNVHR8EggHZMIIB1TB1oHOgcYZvaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHegdaBzhnFodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyZXVhcC9jcmxzL2NjbWVlYXN0dXMyZXVhcHBraS9jY21lZWFzdHVzMmV1YXBpY2EwMS82NS9jdXJyZW50LmNybDBmoGSgYoZgaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHugeaB3hnVodHRwOi8vY2NtZWVhc3R1czJldWFwcGtpLmVhc3R1czJldWFwLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJldWFwaWNhMDEvNjUvY3VycmVudC5jcmwwggHnBggrBgEFBQcBAQSCAdkwggHVMHgGCCsGAQUFBzAChmxodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwegYIKwYBBQUHMAKGbmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NhY2VydHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxL2NlcnQuY2VyMGkGCCsGAQUFBzAChl1odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwcgYIKwYBBQUHMAKGZmh0dHA6Ly9jY21lZWFzdHVzMmV1YXBwa2kuZWFzdHVzMmV1YXAucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmV1YXBpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAndPCPc-CmjHOQpHPVSFI4dsJ3mAAA9L0QPDWwmXXvm66R08WToYQA9QCpkqxZEzl69AhSTR5x65hpeRv8xhwwj57QIuBD6rfMRghZH83T4x3bdOI4KmhFi_uY_52-cou5_xf0DyGAI_C77U5rC8TmVil8EsUCojV8rWkZXUBQSKZMaC1gzmzWW3pgKG9zwbD6J1M_7PW6f_zhE9KvGfBrLALoabdK0H_in5p3CyRMQee9pXSpsictb8cyfBIRU1fRSNmLnOjVSlF_Ll20gYIhnHvetGUxWU0EE9gWSJVUtwbqJjCeDouKPwe2UYUosoETTC7iluHZc0PV9EMfunH2w&s=idhRploTP2NIYeN3cRubVhnQ7eY12661ReHL3UL7zD6HKb8Dfv_hBR8I0vwMREICixtA1cbm-__m42RO-9502SpEp3EUmmImfYs3xhUC5WBlwVsO7s8OAh1mkD5LZ3E1PNsl6VzhFrxwc1u-uDSw5TfHqcyws6ovIPJQZ-JUA4oVY2S_gZRl6ES75VAZitgpteJshlibsxOsRfVWTNdZwYMwP0qSkDa-ptwdtp_L2h8Eik3zt23R2PCt5aP4ZQBzmAPIXE5AD7_hm3fDlN7EN4N111C9K6USaDgfOO10ZdrVnm9y9iUhjku0-DDpmRSFnuva7y9z2j96fql4tFwe_w&h=3TdPrLmzWXtwlcmDDel-MHizTcGDSATLwsw_94gn5WQ pragma: - no-cache strict-transport-security: @@ -883,11 +885,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=12f8ea5c-1212-449e-b31c-0a574f43076e/eastus2euap/e7ad60ab-298f-4a46-8624-c60fc9d11e9e + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=352782de-cadf-4f14-ad97-08cd2617ef55/eastus2euap/aa0ff69a-c90c-4dd6-b840-468323519a6b x-ms-throttling-version: - v2 x-msedge-ref: - - 'Ref A: 84300662EDA04C48A8EA3006812A3B18 Ref B: MAA201060516037 Ref C: 2025-10-27T13:43:08Z' + - 'Ref A: 25857639346342C585ECABDFAD1CDBD3 Ref B: PNQ231110908036 Ref C: 2026-07-21T05:02:16Z' status: code: 200 message: OK @@ -905,13 +907,13 @@ interactions: ParameterSetName: - -n -g -l --public-network-access --immutability-state --cross-subscription-restore-state User-Agent: - - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.11.9 (Windows-10-10.0.26200-SP0) + - AZURECLI/2.88.0 azsdk-python-core/1.39.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005/operationStatus/MjA0Nzs1YWQ1YzU4ZC05NmM0LTQxMTItYTZjZi0wYTllZmUwYmE2MDg=?api-version=2025-08-01&t=638971693876719280&c=MIIIpDCCBoygAwIBAgITFgIdx-8P5Q2flkVe0wABAh3H7zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUxMDIwMTM0ODIxWhcNMjYwMTE4MTM0ODIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALJsx40wbBQQVymBKxEYB3QsXs7DWrmkLk1cvGC9Oh6ZUsiS6z4fZ9KUiL7u4Cb1R-5gfYTplSDkCfn9Y776fzY9tgxKTFF2KMooWQSUUNfMYuwrWFbbHGDx79k-SN6J44MhkxgVnvirjK5cOgtR1YwGjnk0x5Ea3-szYPplTQi12yBEDft-JR3YCKn54jq1stV1W2hRp_2g1BQImqyuswXZKY2DD-s3bQClN3clms4KDqdtTyXsWYLLd1wyrriHRsQnNbYpC1EqjwDyNGLTXHMVXKbeUefj5AwkYLnb77HgLc0IW7nFQwaOLB01n0OsHuhWZeUiilCDsiV76B_8MF0CAwEAAaOCBJEwggSNMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAdoGCCsGAQUFBwEBBIIBzDCCAcgwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDEuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDQuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwHQYDVR0OBBYEFBIs_XIgrlYGjVV6tC88QEhsK39fMA4GA1UdDwEB_wQEAwIFoDCCATUGA1UdHwSCASwwggEoMIIBJKCCASCgggEchkJodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMB8GA1UdIwQYMBaAFEijrWB1am_sYPNpVdEAsTJX_GzkMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAgEAoWGeh2L-xOp4WFwNcK7-42nE8XWzyiVfNq-en8umv6B7FIlZBqRTSHucIlGoZqT7uEkuOIkyfwKUKMHeX3kte0w5f4gSgSX-JsexZj509BqurtDEgPbEjh9zUpbDAM7sODNvfiZ0HVF6sREKDyDIRGhYl_C7qO6FPNUH0wiEMRNI92WewkvN5kxHFBO56OS26He5ElMpeDPNifRXSj2RrthZNiLhtVNqOXCXV8HvAO-8PBPQGpetO260pqROBjblZfst9LCba3YKdZ8o2ojOeG5_ANB5mSX3bsBsY2ULkbRKgNBi5AXJ7q0-n01yM6-uiSvZ8wrkHLfDJ6KlzSDTLJpoVa8AUeZoPEhJgyQInNCPK5nFOD-F1QNRwQj-B-s7y16iUVZiLZ3hkxODdrbMjfPRL2P3DYn1cg-jZVq0xDX1aSlRyQq6qi9xZ9RfBPeOrsZ3SHGm0XIJdlqtaYt0Evo6fWKiFXuJ-H6nf5Qy8sLTk2q160CH2IgsW5_tA0n0ySGt5n-9j610wwPdH6ImEQ1jli9U8Ur82WjB7qQhpmYPuHOyytAGttfk1271zkw5TOpkzJfGWvT5zYv436XCj6pouSk2GJmG1iR-9pO4kPK1LWp3ujV-IXZjP_-xg0wwwsvc0BDJJZZk4tElY91ySFzLXlN8QfTH67VHl7D8ILg&s=qZp0P5t3eu93wXLU-C4L2XeNems04fbE1deZVOP3EmAd2yBB0tD29weVfhWkjuaNxD1X7Pdg7xliuPnZ4aD2VvWd6yO-S6PuqCRx_SymLXEsFV8Wz3UezRcgQ2xwOSWzLARLFya4ExWwl9RN3rYz3lg81xr7u1LkfW0E0Y-P0On-6GRHXq3OiAZHgdCPxc6NNKiiwJZ3o5xwu9_jEUC4p7DC-TIga6RQzDxqmL2744xxnGejNtPSfS638vLUmj8M0gGyavZC_XKxlK0DCe-DZ_8ZeY2CxPGapIuyG_gdZU7MkSLwf57TI86AnhzfvVRo_Y8hVqktQW4P13NJThe2kA&h=OJzEGzKLs4aDVZBtGGaKsUB3Yxpm7UPvLqHb_SBPc0k + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005/operationStatus/MjA0Nzs1ZTliN2U5ZC02NDI5LTQ2MTQtYTFiOC0wYTExNjIwMWZjZWM=?api-version=2026-05-01&t=639202069355710720&c=MIIH9TCCBt2gAwIBAgIRAKnTo6mKeliSYj1GLETof4IwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVUyQyBDQSAwMTAeFw0yNjA3MDIxNTU4NDNaFw0yNjA5MjcyMTU4NDNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAlDQMyX5eVlNoyHQy97t41xstx7ISW3Jpt0fmktBr-SytLFjS2PEwnW3DFpc-bQgfDfHkKP0_FRLvm_mazEvS5KYzyX6nFjGqQTX3SfneJV5jo7nOwYnQHFTbkg0Dngz7AipTBy6yAiQqKMhRo_D-N4o3stwmKHeA0tAiEOx4G_PiAZBVgwqD_hS-porAKnsf-m7-vYsa-g9Cw0SQ2t7YIFgfqGifFcAH79L7QF5n4-toqH20MDZrR10dXpjNK50DvRiltXMo7xC198sVfC6ISY8hDbiFDpsKgL_lz-pJ2kyYJNyq1NUfS79AS70Bkl13eaOYbl8go_Oo41Ma5ArEgQIDAQABo4IE8jCCBO4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7Mv1WvWn7sAfft9pF9lwNBkNam0wHwYDVR0jBBgwFoAUz1EBqulDLGR2G0rwqsDykvhPw7swggHiBgNVHR8EggHZMIIB1TB1oHOgcYZvaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHegdaBzhnFodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyZXVhcC9jcmxzL2NjbWVlYXN0dXMyZXVhcHBraS9jY21lZWFzdHVzMmV1YXBpY2EwMS82NS9jdXJyZW50LmNybDBmoGSgYoZgaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHugeaB3hnVodHRwOi8vY2NtZWVhc3R1czJldWFwcGtpLmVhc3R1czJldWFwLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJldWFwaWNhMDEvNjUvY3VycmVudC5jcmwwggHnBggrBgEFBQcBAQSCAdkwggHVMHgGCCsGAQUFBzAChmxodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwegYIKwYBBQUHMAKGbmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NhY2VydHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxL2NlcnQuY2VyMGkGCCsGAQUFBzAChl1odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwcgYIKwYBBQUHMAKGZmh0dHA6Ly9jY21lZWFzdHVzMmV1YXBwa2kuZWFzdHVzMmV1YXAucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmV1YXBpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAndPCPc-CmjHOQpHPVSFI4dsJ3mAAA9L0QPDWwmXXvm66R08WToYQA9QCpkqxZEzl69AhSTR5x65hpeRv8xhwwj57QIuBD6rfMRghZH83T4x3bdOI4KmhFi_uY_52-cou5_xf0DyGAI_C77U5rC8TmVil8EsUCojV8rWkZXUBQSKZMaC1gzmzWW3pgKG9zwbD6J1M_7PW6f_zhE9KvGfBrLALoabdK0H_in5p3CyRMQee9pXSpsictb8cyfBIRU1fRSNmLnOjVSlF_Ll20gYIhnHvetGUxWU0EE9gWSJVUtwbqJjCeDouKPwe2UYUosoETTC7iluHZc0PV9EMfunH2w&s=WHnztrHomWPVHwmfalqD8qD_IteCMErrJUCoIzVXuHimh2BVOh_tIPrbsqxX1aXAKRYt_sjq52DlgU7TKHJ4Dsu2H3k6xIoOPFIAj7dOzliDdW1Tm6nUKrJfj0GSr-Zk0GP6AWDwwUFObcktMU8i5WbjLXH6Xs_i80sL4T4CNLLRcwgwaaoqVHSwQXxt4pN7A9SNLHdbgR7424bLWfZ9aOLH1wJfQr2W37EaL4a_4-yG3IeKNJT9WcKqBDmysCMhbwahuaSYZY6av7ZCVycE6X6McrPsJmVPc3fNqZ1HncYigg1fd531Bb2ioQEF0VgoQSnZZ1S22RDt1Rvm11HYaQ&h=eiR2ezdJ4zKBvxH0iD1TV1KjBUYmidtYZA1DsdCJDao response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005/operationStatus/MjA0Nzs1YWQ1YzU4ZC05NmM0LTQxMTItYTZjZi0wYTllZmUwYmE2MDg=\",\r\n - \ \"name\": \"MjA0Nzs1YWQ1YzU4ZC05NmM0LTQxMTItYTZjZi0wYTllZmUwYmE2MDg=\",\r\n + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005/operationStatus/MjA0Nzs1ZTliN2U5ZC02NDI5LTQ2MTQtYTFiOC0wYTExNjIwMWZjZWM=\",\r\n + \ \"name\": \"MjA0Nzs1ZTliN2U5ZC02NDI5LTQ2MTQtYTFiOC0wYTExNjIwMWZjZWM=\",\r\n \ \"status\": \"Succeeded\"\r\n}" headers: cache-control: @@ -921,7 +923,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 27 Oct 2025 13:44:10 GMT + - Tue, 21 Jul 2026 05:03:16 GMT expires: - '-1' pragma: @@ -933,11 +935,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=12f8ea5c-1212-449e-b31c-0a574f43076e/eastus2euap/a05fd22f-8d7f-45a4-8697-ea0542a8a833 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=352782de-cadf-4f14-ad97-08cd2617ef55/eastus2euap/e3c7966c-7cb4-48a2-bd92-0d29c5424819 x-ms-throttling-version: - v2 x-msedge-ref: - - 'Ref A: 8DA71054A97940F595A8A3D3937518D2 Ref B: MAA201060515019 Ref C: 2025-10-27T13:44:09Z' + - 'Ref A: EE821D26D54E45D38D8FD5B9E122A243 Ref B: PNQ231110907040 Ref C: 2026-07-21T05:03:17Z' status: code: 200 message: OK @@ -955,21 +957,21 @@ interactions: ParameterSetName: - -n -g -l --public-network-access --immutability-state --cross-subscription-restore-state User-Agent: - - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.11.9 (Windows-10-10.0.26200-SP0) + - AZURECLI/2.88.0 azsdk-python-core/1.39.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005?api-version=2025-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005?api-version=2026-05-01 response: body: - string: '{"location":"eastus2euap","name":"clitest-vault000005","etag":"W/\"datetime''2025-10-27T13%3A44%3A08.3707921Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","monitoringSettings":{"azureMonitorAlertSettings":{"alertsForAllJobFailures":"Enabled","alertsForAllReplicationIssues":"Enabled","alertsForAllFailoverIssues":"Enabled"},"classicAlertSettings":{"alertsForCriticalOperations":"Enabled","emailNotificationsForSiteRecovery":"Enabled"}},"backupStorageVersion":"Unassigned","securitySettings":{"immutabilitySettings":{"state":"Unlocked"},"softDeleteSettings":{"softDeleteRetentionPeriodInDays":14,"softDeleteState":"AlwaysON","enhancedSecurityState":"AlwaysON"},"multiUserAuthorization":"Disabled","sourceScanConfiguration":{"state":"Disabled"}},"redundancySettings":{"standardTierStorageRedundancy":"GeoRedundant","crossRegionRestore":"Disabled"},"secureScore":"Adequate","bcdrSecurityLevel":"Good","publicNetworkAccess":"Disabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Disabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' + string: '{"location":"eastus2euap","name":"clitest-vault000005","etag":"W/\"datetime''2026-07-21T05%3A03%3A16.1784537Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","monitoringSettings":{"azureMonitorAlertSettings":{"alertsForAllJobFailures":"Enabled","alertsForAllReplicationIssues":"Enabled","alertsForAllFailoverIssues":"Enabled"},"classicAlertSettings":{"alertsForCriticalOperations":"Enabled","emailNotificationsForSiteRecovery":"Enabled"}},"costManagementSettings":{"granularityLevel":"VaultLevel"},"backupStorageVersion":"Unassigned","securitySettings":{"immutabilitySettings":{"state":"Unlocked","configuration":{"type":"AsPerPolicy"}},"softDeleteSettings":{"softDeleteRetentionPeriodInDays":14,"softDeleteState":"AlwaysON","enhancedSecurityState":"AlwaysON"},"multiUserAuthorization":"Disabled","sourceScanConfiguration":{"state":"Disabled"}},"redundancySettings":{"standardTierStorageRedundancy":"GeoRedundant","crossRegionRestore":"Disabled"},"secureScore":"Adequate","bcdrSecurityLevel":"Good","publicNetworkAccess":"Disabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Disabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' headers: cache-control: - no-cache content-length: - - '1356' + - '1454' content-type: - application/json; charset=utf-8 date: - - Mon, 27 Oct 2025 13:44:10 GMT + - Tue, 21 Jul 2026 05:03:17 GMT expires: - '-1' pragma: @@ -983,7 +985,7 @@ interactions: x-ms-throttling-version: - v2 x-msedge-ref: - - 'Ref A: FE2A5CB447BB456D96EE8C0EB9AC8A10 Ref B: MAA201060514045 Ref C: 2025-10-27T13:44:10Z' + - 'Ref A: BFF98BD04F8F4B09AEA4CE116EF7B1ED Ref B: PNQ231110909023 Ref C: 2026-07-21T05:03:17Z' status: code: 200 message: OK @@ -1001,21 +1003,21 @@ interactions: ParameterSetName: - -n -g --public-network-access User-Agent: - - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.11.9 (Windows-10-10.0.26200-SP0) + - AZURECLI/2.88.0 azsdk-python-core/1.39.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005?api-version=2025-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005?api-version=2026-05-01 response: body: - string: '{"location":"eastus2euap","name":"clitest-vault000005","etag":"W/\"datetime''2025-10-27T13%3A44%3A08.3707921Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","monitoringSettings":{"azureMonitorAlertSettings":{"alertsForAllJobFailures":"Enabled","alertsForAllReplicationIssues":"Enabled","alertsForAllFailoverIssues":"Enabled"},"classicAlertSettings":{"alertsForCriticalOperations":"Enabled","emailNotificationsForSiteRecovery":"Enabled"}},"backupStorageVersion":"Unassigned","securitySettings":{"immutabilitySettings":{"state":"Unlocked"},"softDeleteSettings":{"softDeleteRetentionPeriodInDays":14,"softDeleteState":"AlwaysON","enhancedSecurityState":"AlwaysON"},"multiUserAuthorization":"Disabled","sourceScanConfiguration":{"state":"Disabled"}},"redundancySettings":{"standardTierStorageRedundancy":"GeoRedundant","crossRegionRestore":"Disabled"},"secureScore":"Adequate","bcdrSecurityLevel":"Good","publicNetworkAccess":"Disabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Disabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' + string: '{"location":"eastus2euap","name":"clitest-vault000005","etag":"W/\"datetime''2026-07-21T05%3A03%3A16.1784537Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","monitoringSettings":{"azureMonitorAlertSettings":{"alertsForAllJobFailures":"Enabled","alertsForAllReplicationIssues":"Enabled","alertsForAllFailoverIssues":"Enabled"},"classicAlertSettings":{"alertsForCriticalOperations":"Enabled","emailNotificationsForSiteRecovery":"Enabled"}},"costManagementSettings":{"granularityLevel":"VaultLevel"},"backupStorageVersion":"Unassigned","securitySettings":{"immutabilitySettings":{"state":"Unlocked","configuration":{"type":"AsPerPolicy"}},"softDeleteSettings":{"softDeleteRetentionPeriodInDays":14,"softDeleteState":"AlwaysON","enhancedSecurityState":"AlwaysON"},"multiUserAuthorization":"Disabled","sourceScanConfiguration":{"state":"Disabled"}},"redundancySettings":{"standardTierStorageRedundancy":"GeoRedundant","crossRegionRestore":"Disabled"},"secureScore":"Adequate","bcdrSecurityLevel":"Good","publicNetworkAccess":"Disabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Disabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' headers: cache-control: - no-cache content-length: - - '1356' + - '1454' content-type: - application/json; charset=utf-8 date: - - Mon, 27 Oct 2025 13:44:12 GMT + - Tue, 21 Jul 2026 05:03:18 GMT expires: - '-1' pragma: @@ -1029,7 +1031,7 @@ interactions: x-ms-throttling-version: - v2 x-msedge-ref: - - 'Ref A: 20E0E36DB6D1446FA2C36D97965B3D05 Ref B: MAA201060516047 Ref C: 2025-10-27T13:44:11Z' + - 'Ref A: 7604E9F9F1EF49ED8DC5881CE8823FFE Ref B: PNQ231110906060 Ref C: 2026-07-21T05:03:18Z' status: code: 200 message: OK @@ -1051,25 +1053,25 @@ interactions: ParameterSetName: - -n -g --public-network-access User-Agent: - - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.11.9 (Windows-10-10.0.26200-SP0) + - AZURECLI/2.88.0 azsdk-python-core/1.39.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005?api-version=2025-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005?api-version=2026-05-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005/operationStatus/NDA5NTswZjZjZDk1ZC1mMjUzLTQ2MDUtOGE2NC0zZTQwM2Y5YzNjMWE=?api-version=2025-08-01&t=638971694543216750&c=MIIIpDCCBoygAwIBAgITFgIdx-8P5Q2flkVe0wABAh3H7zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUxMDIwMTM0ODIxWhcNMjYwMTE4MTM0ODIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALJsx40wbBQQVymBKxEYB3QsXs7DWrmkLk1cvGC9Oh6ZUsiS6z4fZ9KUiL7u4Cb1R-5gfYTplSDkCfn9Y776fzY9tgxKTFF2KMooWQSUUNfMYuwrWFbbHGDx79k-SN6J44MhkxgVnvirjK5cOgtR1YwGjnk0x5Ea3-szYPplTQi12yBEDft-JR3YCKn54jq1stV1W2hRp_2g1BQImqyuswXZKY2DD-s3bQClN3clms4KDqdtTyXsWYLLd1wyrriHRsQnNbYpC1EqjwDyNGLTXHMVXKbeUefj5AwkYLnb77HgLc0IW7nFQwaOLB01n0OsHuhWZeUiilCDsiV76B_8MF0CAwEAAaOCBJEwggSNMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAdoGCCsGAQUFBwEBBIIBzDCCAcgwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDEuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDQuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwHQYDVR0OBBYEFBIs_XIgrlYGjVV6tC88QEhsK39fMA4GA1UdDwEB_wQEAwIFoDCCATUGA1UdHwSCASwwggEoMIIBJKCCASCgggEchkJodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMB8GA1UdIwQYMBaAFEijrWB1am_sYPNpVdEAsTJX_GzkMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAgEAoWGeh2L-xOp4WFwNcK7-42nE8XWzyiVfNq-en8umv6B7FIlZBqRTSHucIlGoZqT7uEkuOIkyfwKUKMHeX3kte0w5f4gSgSX-JsexZj509BqurtDEgPbEjh9zUpbDAM7sODNvfiZ0HVF6sREKDyDIRGhYl_C7qO6FPNUH0wiEMRNI92WewkvN5kxHFBO56OS26He5ElMpeDPNifRXSj2RrthZNiLhtVNqOXCXV8HvAO-8PBPQGpetO260pqROBjblZfst9LCba3YKdZ8o2ojOeG5_ANB5mSX3bsBsY2ULkbRKgNBi5AXJ7q0-n01yM6-uiSvZ8wrkHLfDJ6KlzSDTLJpoVa8AUeZoPEhJgyQInNCPK5nFOD-F1QNRwQj-B-s7y16iUVZiLZ3hkxODdrbMjfPRL2P3DYn1cg-jZVq0xDX1aSlRyQq6qi9xZ9RfBPeOrsZ3SHGm0XIJdlqtaYt0Evo6fWKiFXuJ-H6nf5Qy8sLTk2q160CH2IgsW5_tA0n0ySGt5n-9j610wwPdH6ImEQ1jli9U8Ur82WjB7qQhpmYPuHOyytAGttfk1271zkw5TOpkzJfGWvT5zYv436XCj6pouSk2GJmG1iR-9pO4kPK1LWp3ujV-IXZjP_-xg0wwwsvc0BDJJZZk4tElY91ySFzLXlN8QfTH67VHl7D8ILg&s=iyLWlb1lyIUo3BDeeD7AS3VJtD3hb336P0rAiIrVRF5EicVj2D-CElknvG2Xeolk8dXsQRRisI9m7aSChmbrmOyFEvgFWt1XoXzgbxqY0OUaSN1umUzu-gZxDU-PEgW_ctABhBjcLRbC6J5VCU0cENcQUUn0z-7GFIYu1q8JRILvMlw1L7W3ZWIaS3WewfsXpaeEMC3d0PORbU4HR02fL4sr9aVkZVOo2nx3yTMBklAqmG7B-3uDYtL8N-ovs-SrZ82fcBg4CGO_cYExSndDHZAEWGqzqvK_wpEmu4SLsGeC07KLQLpwlzvw10NP_64mnPvVl-697Mpghgtgjls5Cg&h=TyfQF6IO2Ht1z1iPgNzMqP7JK6Jf5CLYanVXMSFCNq4 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005/operationStatus/NDA5NTs1MWJlMTlmOS1jMzhhLTRmNGUtOTlhZi01OGNiZTRjODgyMjM=?api-version=2026-05-01&t=639202070002147193&c=MIIH9TCCBt2gAwIBAgIRAKnTo6mKeliSYj1GLETof4IwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVUyQyBDQSAwMTAeFw0yNjA3MDIxNTU4NDNaFw0yNjA5MjcyMTU4NDNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAlDQMyX5eVlNoyHQy97t41xstx7ISW3Jpt0fmktBr-SytLFjS2PEwnW3DFpc-bQgfDfHkKP0_FRLvm_mazEvS5KYzyX6nFjGqQTX3SfneJV5jo7nOwYnQHFTbkg0Dngz7AipTBy6yAiQqKMhRo_D-N4o3stwmKHeA0tAiEOx4G_PiAZBVgwqD_hS-porAKnsf-m7-vYsa-g9Cw0SQ2t7YIFgfqGifFcAH79L7QF5n4-toqH20MDZrR10dXpjNK50DvRiltXMo7xC198sVfC6ISY8hDbiFDpsKgL_lz-pJ2kyYJNyq1NUfS79AS70Bkl13eaOYbl8go_Oo41Ma5ArEgQIDAQABo4IE8jCCBO4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7Mv1WvWn7sAfft9pF9lwNBkNam0wHwYDVR0jBBgwFoAUz1EBqulDLGR2G0rwqsDykvhPw7swggHiBgNVHR8EggHZMIIB1TB1oHOgcYZvaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHegdaBzhnFodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyZXVhcC9jcmxzL2NjbWVlYXN0dXMyZXVhcHBraS9jY21lZWFzdHVzMmV1YXBpY2EwMS82NS9jdXJyZW50LmNybDBmoGSgYoZgaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHugeaB3hnVodHRwOi8vY2NtZWVhc3R1czJldWFwcGtpLmVhc3R1czJldWFwLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJldWFwaWNhMDEvNjUvY3VycmVudC5jcmwwggHnBggrBgEFBQcBAQSCAdkwggHVMHgGCCsGAQUFBzAChmxodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwegYIKwYBBQUHMAKGbmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NhY2VydHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxL2NlcnQuY2VyMGkGCCsGAQUFBzAChl1odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwcgYIKwYBBQUHMAKGZmh0dHA6Ly9jY21lZWFzdHVzMmV1YXBwa2kuZWFzdHVzMmV1YXAucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmV1YXBpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAndPCPc-CmjHOQpHPVSFI4dsJ3mAAA9L0QPDWwmXXvm66R08WToYQA9QCpkqxZEzl69AhSTR5x65hpeRv8xhwwj57QIuBD6rfMRghZH83T4x3bdOI4KmhFi_uY_52-cou5_xf0DyGAI_C77U5rC8TmVil8EsUCojV8rWkZXUBQSKZMaC1gzmzWW3pgKG9zwbD6J1M_7PW6f_zhE9KvGfBrLALoabdK0H_in5p3CyRMQee9pXSpsictb8cyfBIRU1fRSNmLnOjVSlF_Ll20gYIhnHvetGUxWU0EE9gWSJVUtwbqJjCeDouKPwe2UYUosoETTC7iluHZc0PV9EMfunH2w&s=joh3ZTVBW67B3zlyXJzsw5Ey4Z7GdVIBmVM_m_AfL2h_PH3BPoPmI4bUhy-feXKZ_lf7NuyJD6Qi5_75yip6xBj8LEr4gupELkxUWWLmcTCK1jGtwFZHyFMIMCsja8XRe-lJxruXz07IDTPumQMsgsMlDte8VbMVQjCPq3O95CKqtcLoAdpsh9QXevHcmuuaGA86EGefcKDKkYIvyY4hIVlJkzFn4okNDmY-5G2b6nB8qtL6DfsTqT1gOhdN6-DavyFsN3wVvGnEc3zc4hftYnptsa1m6UaYJPzJmfD_3KPMjCoy94U1QZ-M3ol_4UAHph4pVOJZmgJyTBPQCAXtRw&h=9xrC2KLxT6ZO5oLIUNdfrhKRwBSSfBSrXOFpTr0KHSo cache-control: - no-cache content-length: - '0' date: - - Mon, 27 Oct 2025 13:44:13 GMT + - Tue, 21 Jul 2026 05:03:20 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005/operationResults/NDA5NTswZjZjZDk1ZC1mMjUzLTQ2MDUtOGE2NC0zZTQwM2Y5YzNjMWE=?api-version=2025-08-01&t=638971694543373335&c=MIIIpDCCBoygAwIBAgITFgIdx-8P5Q2flkVe0wABAh3H7zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUxMDIwMTM0ODIxWhcNMjYwMTE4MTM0ODIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALJsx40wbBQQVymBKxEYB3QsXs7DWrmkLk1cvGC9Oh6ZUsiS6z4fZ9KUiL7u4Cb1R-5gfYTplSDkCfn9Y776fzY9tgxKTFF2KMooWQSUUNfMYuwrWFbbHGDx79k-SN6J44MhkxgVnvirjK5cOgtR1YwGjnk0x5Ea3-szYPplTQi12yBEDft-JR3YCKn54jq1stV1W2hRp_2g1BQImqyuswXZKY2DD-s3bQClN3clms4KDqdtTyXsWYLLd1wyrriHRsQnNbYpC1EqjwDyNGLTXHMVXKbeUefj5AwkYLnb77HgLc0IW7nFQwaOLB01n0OsHuhWZeUiilCDsiV76B_8MF0CAwEAAaOCBJEwggSNMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAdoGCCsGAQUFBwEBBIIBzDCCAcgwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDEuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDQuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwHQYDVR0OBBYEFBIs_XIgrlYGjVV6tC88QEhsK39fMA4GA1UdDwEB_wQEAwIFoDCCATUGA1UdHwSCASwwggEoMIIBJKCCASCgggEchkJodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMB8GA1UdIwQYMBaAFEijrWB1am_sYPNpVdEAsTJX_GzkMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAgEAoWGeh2L-xOp4WFwNcK7-42nE8XWzyiVfNq-en8umv6B7FIlZBqRTSHucIlGoZqT7uEkuOIkyfwKUKMHeX3kte0w5f4gSgSX-JsexZj509BqurtDEgPbEjh9zUpbDAM7sODNvfiZ0HVF6sREKDyDIRGhYl_C7qO6FPNUH0wiEMRNI92WewkvN5kxHFBO56OS26He5ElMpeDPNifRXSj2RrthZNiLhtVNqOXCXV8HvAO-8PBPQGpetO260pqROBjblZfst9LCba3YKdZ8o2ojOeG5_ANB5mSX3bsBsY2ULkbRKgNBi5AXJ7q0-n01yM6-uiSvZ8wrkHLfDJ6KlzSDTLJpoVa8AUeZoPEhJgyQInNCPK5nFOD-F1QNRwQj-B-s7y16iUVZiLZ3hkxODdrbMjfPRL2P3DYn1cg-jZVq0xDX1aSlRyQq6qi9xZ9RfBPeOrsZ3SHGm0XIJdlqtaYt0Evo6fWKiFXuJ-H6nf5Qy8sLTk2q160CH2IgsW5_tA0n0ySGt5n-9j610wwPdH6ImEQ1jli9U8Ur82WjB7qQhpmYPuHOyytAGttfk1271zkw5TOpkzJfGWvT5zYv436XCj6pouSk2GJmG1iR-9pO4kPK1LWp3ujV-IXZjP_-xg0wwwsvc0BDJJZZk4tElY91ySFzLXlN8QfTH67VHl7D8ILg&s=beEwnmHIzkEGy-2QRBQtkipHcbioO_yPk0nLx5c3ehsli6UVc6EFr5tlNnVo9yO4cqPVJ4p0QDiHoeEsMPNmT5Qg29Mv4oFB3Clu8RhC5SyOV-0YnqwlPXq-33ptBX6rVdceNSKVIW9ZXnkuln-LU4q-ex_IzantMP98E-pFezXpUzUu81ueLNN_GR8vYoYyN8jtSfL18jaUflWWNu0lA-i5zNGp0ci6jdofX6eq37OwGsx6cX-Nr-ZdqLSIJpWGQzPOQtnNyF0T1rOuxd4pEW8SlFFW_yTyR14gPeHO4uxn6M5NYXsFRcKISTWQi0d5VBSCNJB_Ty6w1EYS9MWKSw&h=OYf-c4ssLXuREVqSOM0bu-yxqYZUBAEXffCNfb-JXYg + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005/operationResults/NDA5NTs1MWJlMTlmOS1jMzhhLTRmNGUtOTlhZi01OGNiZTRjODgyMjM=?api-version=2026-05-01&t=639202070002303465&c=MIIH9TCCBt2gAwIBAgIRAKnTo6mKeliSYj1GLETof4IwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVUyQyBDQSAwMTAeFw0yNjA3MDIxNTU4NDNaFw0yNjA5MjcyMTU4NDNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAlDQMyX5eVlNoyHQy97t41xstx7ISW3Jpt0fmktBr-SytLFjS2PEwnW3DFpc-bQgfDfHkKP0_FRLvm_mazEvS5KYzyX6nFjGqQTX3SfneJV5jo7nOwYnQHFTbkg0Dngz7AipTBy6yAiQqKMhRo_D-N4o3stwmKHeA0tAiEOx4G_PiAZBVgwqD_hS-porAKnsf-m7-vYsa-g9Cw0SQ2t7YIFgfqGifFcAH79L7QF5n4-toqH20MDZrR10dXpjNK50DvRiltXMo7xC198sVfC6ISY8hDbiFDpsKgL_lz-pJ2kyYJNyq1NUfS79AS70Bkl13eaOYbl8go_Oo41Ma5ArEgQIDAQABo4IE8jCCBO4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7Mv1WvWn7sAfft9pF9lwNBkNam0wHwYDVR0jBBgwFoAUz1EBqulDLGR2G0rwqsDykvhPw7swggHiBgNVHR8EggHZMIIB1TB1oHOgcYZvaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHegdaBzhnFodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyZXVhcC9jcmxzL2NjbWVlYXN0dXMyZXVhcHBraS9jY21lZWFzdHVzMmV1YXBpY2EwMS82NS9jdXJyZW50LmNybDBmoGSgYoZgaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHugeaB3hnVodHRwOi8vY2NtZWVhc3R1czJldWFwcGtpLmVhc3R1czJldWFwLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJldWFwaWNhMDEvNjUvY3VycmVudC5jcmwwggHnBggrBgEFBQcBAQSCAdkwggHVMHgGCCsGAQUFBzAChmxodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwegYIKwYBBQUHMAKGbmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NhY2VydHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxL2NlcnQuY2VyMGkGCCsGAQUFBzAChl1odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwcgYIKwYBBQUHMAKGZmh0dHA6Ly9jY21lZWFzdHVzMmV1YXBwa2kuZWFzdHVzMmV1YXAucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmV1YXBpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAndPCPc-CmjHOQpHPVSFI4dsJ3mAAA9L0QPDWwmXXvm66R08WToYQA9QCpkqxZEzl69AhSTR5x65hpeRv8xhwwj57QIuBD6rfMRghZH83T4x3bdOI4KmhFi_uY_52-cou5_xf0DyGAI_C77U5rC8TmVil8EsUCojV8rWkZXUBQSKZMaC1gzmzWW3pgKG9zwbD6J1M_7PW6f_zhE9KvGfBrLALoabdK0H_in5p3CyRMQee9pXSpsictb8cyfBIRU1fRSNmLnOjVSlF_Ll20gYIhnHvetGUxWU0EE9gWSJVUtwbqJjCeDouKPwe2UYUosoETTC7iluHZc0PV9EMfunH2w&s=h6DbjgqNTgev1tKw8b2yFjPX6pFCkXFOBVLBOzEntJLSeSSHyvEpZHOmKsjMfkHgshpXAKRCBX3OFYJLxJx4umOBKBPPcGK5OLO32tXTwEdw2iugCkAkBf2-bf7XooifakRqqSXM1XwgoENZoz4Pq5XsjKzJvy8Y3uMs9OpW_rsQ9LmSKhF8LMuOjw_a0p3BYcnMVMDqH3-mmbn2zfMdGhqMU6Rgw2ZXDQu7kQF2cUUXLa3JNgAJo8zvTxgLD6kSD57iPAPuD8ChdMyH2Z5iGHcceF3mFeYZXT2WLig_wXvN7esDaOM_0RYzlHlciH6y2lcaKePbm4ORxwbntkRYzQ&h=0H0SsdjG6qwb2aEKYk9rqk5klvKMdwfQqk7j5MY4aq8 pragma: - no-cache strict-transport-security: @@ -1079,13 +1081,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=12f8ea5c-1212-449e-b31c-0a574f43076e/eastus2euap/3781fe88-de24-4f04-8cf0-52b42cd0170a + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=352782de-cadf-4f14-ad97-08cd2617ef55/eastus2euap/9910e7c3-d49d-41f4-8319-e0e6c77bb952 x-ms-ratelimit-remaining-subscription-resource-requests: - '799' x-ms-throttling-version: - v1 x-msedge-ref: - - 'Ref A: 028BDB9A464047E9BD4875699A19FA42 Ref B: MAA201060513009 Ref C: 2025-10-27T13:44:12Z' + - 'Ref A: B6789485635E4CBE9589A599AD8C2FF0 Ref B: PNQ231110907023 Ref C: 2026-07-21T05:03:19Z' status: code: 202 message: Accepted @@ -1103,13 +1105,67 @@ interactions: ParameterSetName: - -n -g --public-network-access User-Agent: - - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.11.9 (Windows-10-10.0.26200-SP0) + - AZURECLI/2.88.0 azsdk-python-core/1.39.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005/operationStatus/NDA5NTs1MWJlMTlmOS1jMzhhLTRmNGUtOTlhZi01OGNiZTRjODgyMjM=?api-version=2026-05-01&t=639202070002147193&c=MIIH9TCCBt2gAwIBAgIRAKnTo6mKeliSYj1GLETof4IwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVUyQyBDQSAwMTAeFw0yNjA3MDIxNTU4NDNaFw0yNjA5MjcyMTU4NDNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAlDQMyX5eVlNoyHQy97t41xstx7ISW3Jpt0fmktBr-SytLFjS2PEwnW3DFpc-bQgfDfHkKP0_FRLvm_mazEvS5KYzyX6nFjGqQTX3SfneJV5jo7nOwYnQHFTbkg0Dngz7AipTBy6yAiQqKMhRo_D-N4o3stwmKHeA0tAiEOx4G_PiAZBVgwqD_hS-porAKnsf-m7-vYsa-g9Cw0SQ2t7YIFgfqGifFcAH79L7QF5n4-toqH20MDZrR10dXpjNK50DvRiltXMo7xC198sVfC6ISY8hDbiFDpsKgL_lz-pJ2kyYJNyq1NUfS79AS70Bkl13eaOYbl8go_Oo41Ma5ArEgQIDAQABo4IE8jCCBO4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7Mv1WvWn7sAfft9pF9lwNBkNam0wHwYDVR0jBBgwFoAUz1EBqulDLGR2G0rwqsDykvhPw7swggHiBgNVHR8EggHZMIIB1TB1oHOgcYZvaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHegdaBzhnFodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyZXVhcC9jcmxzL2NjbWVlYXN0dXMyZXVhcHBraS9jY21lZWFzdHVzMmV1YXBpY2EwMS82NS9jdXJyZW50LmNybDBmoGSgYoZgaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHugeaB3hnVodHRwOi8vY2NtZWVhc3R1czJldWFwcGtpLmVhc3R1czJldWFwLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJldWFwaWNhMDEvNjUvY3VycmVudC5jcmwwggHnBggrBgEFBQcBAQSCAdkwggHVMHgGCCsGAQUFBzAChmxodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwegYIKwYBBQUHMAKGbmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NhY2VydHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxL2NlcnQuY2VyMGkGCCsGAQUFBzAChl1odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwcgYIKwYBBQUHMAKGZmh0dHA6Ly9jY21lZWFzdHVzMmV1YXBwa2kuZWFzdHVzMmV1YXAucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmV1YXBpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAndPCPc-CmjHOQpHPVSFI4dsJ3mAAA9L0QPDWwmXXvm66R08WToYQA9QCpkqxZEzl69AhSTR5x65hpeRv8xhwwj57QIuBD6rfMRghZH83T4x3bdOI4KmhFi_uY_52-cou5_xf0DyGAI_C77U5rC8TmVil8EsUCojV8rWkZXUBQSKZMaC1gzmzWW3pgKG9zwbD6J1M_7PW6f_zhE9KvGfBrLALoabdK0H_in5p3CyRMQee9pXSpsictb8cyfBIRU1fRSNmLnOjVSlF_Ll20gYIhnHvetGUxWU0EE9gWSJVUtwbqJjCeDouKPwe2UYUosoETTC7iluHZc0PV9EMfunH2w&s=joh3ZTVBW67B3zlyXJzsw5Ey4Z7GdVIBmVM_m_AfL2h_PH3BPoPmI4bUhy-feXKZ_lf7NuyJD6Qi5_75yip6xBj8LEr4gupELkxUWWLmcTCK1jGtwFZHyFMIMCsja8XRe-lJxruXz07IDTPumQMsgsMlDte8VbMVQjCPq3O95CKqtcLoAdpsh9QXevHcmuuaGA86EGefcKDKkYIvyY4hIVlJkzFn4okNDmY-5G2b6nB8qtL6DfsTqT1gOhdN6-DavyFsN3wVvGnEc3zc4hftYnptsa1m6UaYJPzJmfD_3KPMjCoy94U1QZ-M3ol_4UAHph4pVOJZmgJyTBPQCAXtRw&h=9xrC2KLxT6ZO5oLIUNdfrhKRwBSSfBSrXOFpTr0KHSo + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005/operationStatus/NDA5NTs1MWJlMTlmOS1jMzhhLTRmNGUtOTlhZi01OGNiZTRjODgyMjM=\",\r\n + \ \"name\": \"NDA5NTs1MWJlMTlmOS1jMzhhLTRmNGUtOTlhZi01OGNiZTRjODgyMjM=\",\r\n + \ \"status\": \"InProgress\"\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005/operationStatus/NDA5NTs1MWJlMTlmOS1jMzhhLTRmNGUtOTlhZi01OGNiZTRjODgyMjM=?api-version=2026-05-01&t=639202070014792770&c=MIIH9TCCBt2gAwIBAgIRAKnTo6mKeliSYj1GLETof4IwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVUyQyBDQSAwMTAeFw0yNjA3MDIxNTU4NDNaFw0yNjA5MjcyMTU4NDNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAlDQMyX5eVlNoyHQy97t41xstx7ISW3Jpt0fmktBr-SytLFjS2PEwnW3DFpc-bQgfDfHkKP0_FRLvm_mazEvS5KYzyX6nFjGqQTX3SfneJV5jo7nOwYnQHFTbkg0Dngz7AipTBy6yAiQqKMhRo_D-N4o3stwmKHeA0tAiEOx4G_PiAZBVgwqD_hS-porAKnsf-m7-vYsa-g9Cw0SQ2t7YIFgfqGifFcAH79L7QF5n4-toqH20MDZrR10dXpjNK50DvRiltXMo7xC198sVfC6ISY8hDbiFDpsKgL_lz-pJ2kyYJNyq1NUfS79AS70Bkl13eaOYbl8go_Oo41Ma5ArEgQIDAQABo4IE8jCCBO4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7Mv1WvWn7sAfft9pF9lwNBkNam0wHwYDVR0jBBgwFoAUz1EBqulDLGR2G0rwqsDykvhPw7swggHiBgNVHR8EggHZMIIB1TB1oHOgcYZvaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHegdaBzhnFodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyZXVhcC9jcmxzL2NjbWVlYXN0dXMyZXVhcHBraS9jY21lZWFzdHVzMmV1YXBpY2EwMS82NS9jdXJyZW50LmNybDBmoGSgYoZgaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHugeaB3hnVodHRwOi8vY2NtZWVhc3R1czJldWFwcGtpLmVhc3R1czJldWFwLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJldWFwaWNhMDEvNjUvY3VycmVudC5jcmwwggHnBggrBgEFBQcBAQSCAdkwggHVMHgGCCsGAQUFBzAChmxodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwegYIKwYBBQUHMAKGbmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NhY2VydHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxL2NlcnQuY2VyMGkGCCsGAQUFBzAChl1odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwcgYIKwYBBQUHMAKGZmh0dHA6Ly9jY21lZWFzdHVzMmV1YXBwa2kuZWFzdHVzMmV1YXAucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmV1YXBpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAndPCPc-CmjHOQpHPVSFI4dsJ3mAAA9L0QPDWwmXXvm66R08WToYQA9QCpkqxZEzl69AhSTR5x65hpeRv8xhwwj57QIuBD6rfMRghZH83T4x3bdOI4KmhFi_uY_52-cou5_xf0DyGAI_C77U5rC8TmVil8EsUCojV8rWkZXUBQSKZMaC1gzmzWW3pgKG9zwbD6J1M_7PW6f_zhE9KvGfBrLALoabdK0H_in5p3CyRMQee9pXSpsictb8cyfBIRU1fRSNmLnOjVSlF_Ll20gYIhnHvetGUxWU0EE9gWSJVUtwbqJjCeDouKPwe2UYUosoETTC7iluHZc0PV9EMfunH2w&s=KAC75XyHslpWIjrGH-C3_ZncaUARJLgz4c3AtciQpGEVl4dF5bWxglbRJyubPeBc7Izc_FivBfx1Aj-lAIFB73vG6dfT6xvAns2xHHbnl4ent8j8tvxbcZYdASejBzVcUlBTuWE7VVACkHKmcJpwMrRUHgXLjHrpDwp6YrVgz7FsR-A5gingCCkU63RQsZ4_J9ZHdhJdGvwqDqaDxoUBEg2DnY-uxAuL2aAJLqE-cPFgoKmfMzvhN31Shd1XJeewJi3wl74QPzYfSJvr4T90DcB-Luegb8Iw2VYQ8drzDU_ZSBKVRK4_eKf_orpuETuGled6iA-a39vZO0E3OPjX4A&h=jr767kVBkxU_d0SuxDp3edvBbahMLcIrnWBNfsHz2oA + cache-control: + - no-cache + content-length: + - '346' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 21 Jul 2026 05:03:20 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005/operationResults/NDA5NTs1MWJlMTlmOS1jMzhhLTRmNGUtOTlhZi01OGNiZTRjODgyMjM=?api-version=2026-05-01&t=639202070014792770&c=MIIH9TCCBt2gAwIBAgIRAKnTo6mKeliSYj1GLETof4IwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVUyQyBDQSAwMTAeFw0yNjA3MDIxNTU4NDNaFw0yNjA5MjcyMTU4NDNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAlDQMyX5eVlNoyHQy97t41xstx7ISW3Jpt0fmktBr-SytLFjS2PEwnW3DFpc-bQgfDfHkKP0_FRLvm_mazEvS5KYzyX6nFjGqQTX3SfneJV5jo7nOwYnQHFTbkg0Dngz7AipTBy6yAiQqKMhRo_D-N4o3stwmKHeA0tAiEOx4G_PiAZBVgwqD_hS-porAKnsf-m7-vYsa-g9Cw0SQ2t7YIFgfqGifFcAH79L7QF5n4-toqH20MDZrR10dXpjNK50DvRiltXMo7xC198sVfC6ISY8hDbiFDpsKgL_lz-pJ2kyYJNyq1NUfS79AS70Bkl13eaOYbl8go_Oo41Ma5ArEgQIDAQABo4IE8jCCBO4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7Mv1WvWn7sAfft9pF9lwNBkNam0wHwYDVR0jBBgwFoAUz1EBqulDLGR2G0rwqsDykvhPw7swggHiBgNVHR8EggHZMIIB1TB1oHOgcYZvaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHegdaBzhnFodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyZXVhcC9jcmxzL2NjbWVlYXN0dXMyZXVhcHBraS9jY21lZWFzdHVzMmV1YXBpY2EwMS82NS9jdXJyZW50LmNybDBmoGSgYoZgaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHugeaB3hnVodHRwOi8vY2NtZWVhc3R1czJldWFwcGtpLmVhc3R1czJldWFwLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJldWFwaWNhMDEvNjUvY3VycmVudC5jcmwwggHnBggrBgEFBQcBAQSCAdkwggHVMHgGCCsGAQUFBzAChmxodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwegYIKwYBBQUHMAKGbmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NhY2VydHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxL2NlcnQuY2VyMGkGCCsGAQUFBzAChl1odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwcgYIKwYBBQUHMAKGZmh0dHA6Ly9jY21lZWFzdHVzMmV1YXBwa2kuZWFzdHVzMmV1YXAucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmV1YXBpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAndPCPc-CmjHOQpHPVSFI4dsJ3mAAA9L0QPDWwmXXvm66R08WToYQA9QCpkqxZEzl69AhSTR5x65hpeRv8xhwwj57QIuBD6rfMRghZH83T4x3bdOI4KmhFi_uY_52-cou5_xf0DyGAI_C77U5rC8TmVil8EsUCojV8rWkZXUBQSKZMaC1gzmzWW3pgKG9zwbD6J1M_7PW6f_zhE9KvGfBrLALoabdK0H_in5p3CyRMQee9pXSpsictb8cyfBIRU1fRSNmLnOjVSlF_Ll20gYIhnHvetGUxWU0EE9gWSJVUtwbqJjCeDouKPwe2UYUosoETTC7iluHZc0PV9EMfunH2w&s=cpQsLFfBSZf_gBIhRO5ZCQC-hoiXyEgz642f6AdwCAh-7-QgXBCEqM9KLc_Z4D9zPnVdH1RiT_I4cJOiHjvwafH7D1lthyhAnnPCCad2COPkitb6Z6Dj8j6VrKxwqkwjSbmmPzm80rbKEIKb61QWJb9Ya8mVF5fIZ7f0SocPCWTxhijKFCDNg0cqxOw8YfDBMunP2BS0xXLiNtHnuNOs8hcjcNN6UTqqlMYllGTA_676Hf87yaJ9_gyZ-WlQwp23fyfc5af2PcFwdU9BZakxxl3_6tXJYWT1uFxC0R72rptNz_JtjynY4kWvqhKIwu_Zv5IJgZCF0RbiFga3f9l-Uw&h=Fc6SzFg8m183jxg4i-Zh2qqz7t6j6sbdFhSM6vTLhnM + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=352782de-cadf-4f14-ad97-08cd2617ef55/eastus2euap/1d0e45a7-22a9-44fb-900f-e3f0b6392bab + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 06B65D2A4F9541458BDF2A7E8A732FF5 Ref B: PNQ231110909034 Ref C: 2026-07-21T05:03:20Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - backup vault update + Connection: + - keep-alive + ParameterSetName: + - -n -g --public-network-access + User-Agent: + - AZURECLI/2.88.0 azsdk-python-core/1.39.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005/operationStatus/NDA5NTswZjZjZDk1ZC1mMjUzLTQ2MDUtOGE2NC0zZTQwM2Y5YzNjMWE=?api-version=2025-08-01&t=638971694543216750&c=MIIIpDCCBoygAwIBAgITFgIdx-8P5Q2flkVe0wABAh3H7zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUxMDIwMTM0ODIxWhcNMjYwMTE4MTM0ODIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALJsx40wbBQQVymBKxEYB3QsXs7DWrmkLk1cvGC9Oh6ZUsiS6z4fZ9KUiL7u4Cb1R-5gfYTplSDkCfn9Y776fzY9tgxKTFF2KMooWQSUUNfMYuwrWFbbHGDx79k-SN6J44MhkxgVnvirjK5cOgtR1YwGjnk0x5Ea3-szYPplTQi12yBEDft-JR3YCKn54jq1stV1W2hRp_2g1BQImqyuswXZKY2DD-s3bQClN3clms4KDqdtTyXsWYLLd1wyrriHRsQnNbYpC1EqjwDyNGLTXHMVXKbeUefj5AwkYLnb77HgLc0IW7nFQwaOLB01n0OsHuhWZeUiilCDsiV76B_8MF0CAwEAAaOCBJEwggSNMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAdoGCCsGAQUFBwEBBIIBzDCCAcgwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDEuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDQuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwHQYDVR0OBBYEFBIs_XIgrlYGjVV6tC88QEhsK39fMA4GA1UdDwEB_wQEAwIFoDCCATUGA1UdHwSCASwwggEoMIIBJKCCASCgggEchkJodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMB8GA1UdIwQYMBaAFEijrWB1am_sYPNpVdEAsTJX_GzkMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAgEAoWGeh2L-xOp4WFwNcK7-42nE8XWzyiVfNq-en8umv6B7FIlZBqRTSHucIlGoZqT7uEkuOIkyfwKUKMHeX3kte0w5f4gSgSX-JsexZj509BqurtDEgPbEjh9zUpbDAM7sODNvfiZ0HVF6sREKDyDIRGhYl_C7qO6FPNUH0wiEMRNI92WewkvN5kxHFBO56OS26He5ElMpeDPNifRXSj2RrthZNiLhtVNqOXCXV8HvAO-8PBPQGpetO260pqROBjblZfst9LCba3YKdZ8o2ojOeG5_ANB5mSX3bsBsY2ULkbRKgNBi5AXJ7q0-n01yM6-uiSvZ8wrkHLfDJ6KlzSDTLJpoVa8AUeZoPEhJgyQInNCPK5nFOD-F1QNRwQj-B-s7y16iUVZiLZ3hkxODdrbMjfPRL2P3DYn1cg-jZVq0xDX1aSlRyQq6qi9xZ9RfBPeOrsZ3SHGm0XIJdlqtaYt0Evo6fWKiFXuJ-H6nf5Qy8sLTk2q160CH2IgsW5_tA0n0ySGt5n-9j610wwPdH6ImEQ1jli9U8Ur82WjB7qQhpmYPuHOyytAGttfk1271zkw5TOpkzJfGWvT5zYv436XCj6pouSk2GJmG1iR-9pO4kPK1LWp3ujV-IXZjP_-xg0wwwsvc0BDJJZZk4tElY91ySFzLXlN8QfTH67VHl7D8ILg&s=iyLWlb1lyIUo3BDeeD7AS3VJtD3hb336P0rAiIrVRF5EicVj2D-CElknvG2Xeolk8dXsQRRisI9m7aSChmbrmOyFEvgFWt1XoXzgbxqY0OUaSN1umUzu-gZxDU-PEgW_ctABhBjcLRbC6J5VCU0cENcQUUn0z-7GFIYu1q8JRILvMlw1L7W3ZWIaS3WewfsXpaeEMC3d0PORbU4HR02fL4sr9aVkZVOo2nx3yTMBklAqmG7B-3uDYtL8N-ovs-SrZ82fcBg4CGO_cYExSndDHZAEWGqzqvK_wpEmu4SLsGeC07KLQLpwlzvw10NP_64mnPvVl-697Mpghgtgjls5Cg&h=TyfQF6IO2Ht1z1iPgNzMqP7JK6Jf5CLYanVXMSFCNq4 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005/operationStatus/NDA5NTs1MWJlMTlmOS1jMzhhLTRmNGUtOTlhZi01OGNiZTRjODgyMjM=?api-version=2026-05-01&t=639202070002147193&c=MIIH9TCCBt2gAwIBAgIRAKnTo6mKeliSYj1GLETof4IwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVUyQyBDQSAwMTAeFw0yNjA3MDIxNTU4NDNaFw0yNjA5MjcyMTU4NDNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAlDQMyX5eVlNoyHQy97t41xstx7ISW3Jpt0fmktBr-SytLFjS2PEwnW3DFpc-bQgfDfHkKP0_FRLvm_mazEvS5KYzyX6nFjGqQTX3SfneJV5jo7nOwYnQHFTbkg0Dngz7AipTBy6yAiQqKMhRo_D-N4o3stwmKHeA0tAiEOx4G_PiAZBVgwqD_hS-porAKnsf-m7-vYsa-g9Cw0SQ2t7YIFgfqGifFcAH79L7QF5n4-toqH20MDZrR10dXpjNK50DvRiltXMo7xC198sVfC6ISY8hDbiFDpsKgL_lz-pJ2kyYJNyq1NUfS79AS70Bkl13eaOYbl8go_Oo41Ma5ArEgQIDAQABo4IE8jCCBO4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7Mv1WvWn7sAfft9pF9lwNBkNam0wHwYDVR0jBBgwFoAUz1EBqulDLGR2G0rwqsDykvhPw7swggHiBgNVHR8EggHZMIIB1TB1oHOgcYZvaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHegdaBzhnFodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyZXVhcC9jcmxzL2NjbWVlYXN0dXMyZXVhcHBraS9jY21lZWFzdHVzMmV1YXBpY2EwMS82NS9jdXJyZW50LmNybDBmoGSgYoZgaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHugeaB3hnVodHRwOi8vY2NtZWVhc3R1czJldWFwcGtpLmVhc3R1czJldWFwLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJldWFwaWNhMDEvNjUvY3VycmVudC5jcmwwggHnBggrBgEFBQcBAQSCAdkwggHVMHgGCCsGAQUFBzAChmxodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwegYIKwYBBQUHMAKGbmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NhY2VydHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxL2NlcnQuY2VyMGkGCCsGAQUFBzAChl1odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwcgYIKwYBBQUHMAKGZmh0dHA6Ly9jY21lZWFzdHVzMmV1YXBwa2kuZWFzdHVzMmV1YXAucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmV1YXBpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAndPCPc-CmjHOQpHPVSFI4dsJ3mAAA9L0QPDWwmXXvm66R08WToYQA9QCpkqxZEzl69AhSTR5x65hpeRv8xhwwj57QIuBD6rfMRghZH83T4x3bdOI4KmhFi_uY_52-cou5_xf0DyGAI_C77U5rC8TmVil8EsUCojV8rWkZXUBQSKZMaC1gzmzWW3pgKG9zwbD6J1M_7PW6f_zhE9KvGfBrLALoabdK0H_in5p3CyRMQee9pXSpsictb8cyfBIRU1fRSNmLnOjVSlF_Ll20gYIhnHvetGUxWU0EE9gWSJVUtwbqJjCeDouKPwe2UYUosoETTC7iluHZc0PV9EMfunH2w&s=joh3ZTVBW67B3zlyXJzsw5Ey4Z7GdVIBmVM_m_AfL2h_PH3BPoPmI4bUhy-feXKZ_lf7NuyJD6Qi5_75yip6xBj8LEr4gupELkxUWWLmcTCK1jGtwFZHyFMIMCsja8XRe-lJxruXz07IDTPumQMsgsMlDte8VbMVQjCPq3O95CKqtcLoAdpsh9QXevHcmuuaGA86EGefcKDKkYIvyY4hIVlJkzFn4okNDmY-5G2b6nB8qtL6DfsTqT1gOhdN6-DavyFsN3wVvGnEc3zc4hftYnptsa1m6UaYJPzJmfD_3KPMjCoy94U1QZ-M3ol_4UAHph4pVOJZmgJyTBPQCAXtRw&h=9xrC2KLxT6ZO5oLIUNdfrhKRwBSSfBSrXOFpTr0KHSo response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005/operationStatus/NDA5NTswZjZjZDk1ZC1mMjUzLTQ2MDUtOGE2NC0zZTQwM2Y5YzNjMWE=\",\r\n - \ \"name\": \"NDA5NTswZjZjZDk1ZC1mMjUzLTQ2MDUtOGE2NC0zZTQwM2Y5YzNjMWE=\",\r\n + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005/operationStatus/NDA5NTs1MWJlMTlmOS1jMzhhLTRmNGUtOTlhZi01OGNiZTRjODgyMjM=\",\r\n + \ \"name\": \"NDA5NTs1MWJlMTlmOS1jMzhhLTRmNGUtOTlhZi01OGNiZTRjODgyMjM=\",\r\n \ \"status\": \"Succeeded\"\r\n}" headers: cache-control: @@ -1119,7 +1175,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 27 Oct 2025 13:44:14 GMT + - Tue, 21 Jul 2026 05:04:21 GMT expires: - '-1' pragma: @@ -1131,11 +1187,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=12f8ea5c-1212-449e-b31c-0a574f43076e/eastus2euap/07b20577-b7c8-4565-b489-b780923a2110 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=352782de-cadf-4f14-ad97-08cd2617ef55/eastus2euap/d44545d9-74bb-4c8d-8417-d78204269ee5 x-ms-throttling-version: - v2 x-msedge-ref: - - 'Ref A: EEEB2AFB1EC548898662A917D4EA92DC Ref B: MAA201060514023 Ref C: 2025-10-27T13:44:14Z' + - 'Ref A: 9B4514FFE94F4A59B82167CE91182B5B Ref B: PNQ231110909042 Ref C: 2026-07-21T05:04:22Z' status: code: 200 message: OK @@ -1153,21 +1209,21 @@ interactions: ParameterSetName: - -n -g --public-network-access User-Agent: - - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.11.9 (Windows-10-10.0.26200-SP0) + - AZURECLI/2.88.0 azsdk-python-core/1.39.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005?api-version=2025-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005?api-version=2026-05-01 response: body: - string: '{"location":"eastus2euap","name":"clitest-vault000005","etag":"W/\"datetime''2025-10-27T13%3A44%3A14.953657Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","monitoringSettings":{"azureMonitorAlertSettings":{"alertsForAllJobFailures":"Enabled","alertsForAllReplicationIssues":"Enabled","alertsForAllFailoverIssues":"Enabled"},"classicAlertSettings":{"alertsForCriticalOperations":"Enabled","emailNotificationsForSiteRecovery":"Enabled"}},"backupStorageVersion":"Unassigned","securitySettings":{"immutabilitySettings":{"state":"Unlocked"},"softDeleteSettings":{"softDeleteRetentionPeriodInDays":14,"softDeleteState":"AlwaysON","enhancedSecurityState":"AlwaysON"},"multiUserAuthorization":"Disabled","sourceScanConfiguration":{"state":"Disabled"}},"redundancySettings":{"standardTierStorageRedundancy":"GeoRedundant","crossRegionRestore":"Disabled"},"secureScore":"Adequate","bcdrSecurityLevel":"Good","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Disabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' + string: '{"location":"eastus2euap","name":"clitest-vault000005","etag":"W/\"datetime''2026-07-21T05%3A04%3A20.8823489Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","monitoringSettings":{"azureMonitorAlertSettings":{"alertsForAllJobFailures":"Enabled","alertsForAllReplicationIssues":"Enabled","alertsForAllFailoverIssues":"Enabled"},"classicAlertSettings":{"alertsForCriticalOperations":"Enabled","emailNotificationsForSiteRecovery":"Enabled"}},"costManagementSettings":{"granularityLevel":"VaultLevel"},"backupStorageVersion":"Unassigned","securitySettings":{"immutabilitySettings":{"state":"Unlocked","configuration":{"type":"AsPerPolicy"}},"softDeleteSettings":{"softDeleteRetentionPeriodInDays":14,"softDeleteState":"AlwaysON","enhancedSecurityState":"AlwaysON"},"multiUserAuthorization":"Disabled","sourceScanConfiguration":{"state":"Disabled"}},"redundancySettings":{"standardTierStorageRedundancy":"GeoRedundant","crossRegionRestore":"Disabled"},"secureScore":"Adequate","bcdrSecurityLevel":"Good","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Disabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' headers: cache-control: - no-cache content-length: - - '1354' + - '1453' content-type: - application/json; charset=utf-8 date: - - Mon, 27 Oct 2025 13:44:14 GMT + - Tue, 21 Jul 2026 05:04:22 GMT expires: - '-1' pragma: @@ -1181,7 +1237,7 @@ interactions: x-ms-throttling-version: - v2 x-msedge-ref: - - 'Ref A: EFAA158AD2C84A468EF85F3173903D8A Ref B: MAA201060515039 Ref C: 2025-10-27T13:44:15Z' + - 'Ref A: 68F3F626CD2E4BAA906B65F247174492 Ref B: PNQ231110907029 Ref C: 2026-07-21T05:04:22Z' status: code: 200 message: OK @@ -1197,31 +1253,27 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.11.9 (Windows-10-10.0.26200-SP0) + - AZURECLI/2.88.0 azsdk-python-core/1.39.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/vaults?api-version=2025-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/vaults?api-version=2026-05-01 response: body: - string: "{\"value\":[{\"location\":\"westus\",\"name\":\"tesy\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A06%3A40.564801Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayethImmutability/providers/Microsoft.RecoveryServices/vaults/tesy\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus\",\"name\":\"afsexistingvault1\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A09%3A25.0314013Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Disabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/afstests/providers/Microsoft.RecoveryServices/vaults/afsexistingvault1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus\",\"name\":\"akkanasePOC1\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A16%3A40.500841Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanase/providers/Microsoft.RecoveryServices/vaults/akkanasePOC1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus\",\"name\":\"akkanasePOC2\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A16%3A44.6345236Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanase/providers/Microsoft.RecoveryServices/vaults/akkanasePOC2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus\",\"name\":\"akkanaseTestPOC1\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A17%3A03.3060516Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanase/providers/Microsoft.RecoveryServices/vaults/akkanaseTestPOC1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus\",\"name\":\"getputv1policyvault\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A17%3A07.9974204Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanase/providers/Microsoft.RecoveryServices/vaults/getputv1policyvault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus\",\"name\":\"testVauttCreate\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A17%3A10.7049017Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanase/providers/Microsoft.RecoveryServices/vaults/testVauttCreate\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus\",\"name\":\"akkanaseAFSCRR\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A17%3A15.2353618Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseAFSTest/providers/Microsoft.RecoveryServices/vaults/akkanaseAFSCRR\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus\",\"name\":\"akkanaseCMKNew\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A23%3A26.001218Z'\\\"\",\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"93207892-ddfb-48c8-8d48-30c199c8a001\",\"type\":\"SystemAssigned, + string: "{\"value\":[{\"location\":\"westus\",\"name\":\"tesy\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A06%3A40.564801Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayethImmutability/providers/Microsoft.RecoveryServices/vaults/tesy\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus\",\"name\":\"afsexistingvault1\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A09%3A25.0314013Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Disabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/afstests/providers/Microsoft.RecoveryServices/vaults/afsexistingvault1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus\",\"name\":\"akkanasePOC1\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A16%3A40.500841Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanase/providers/Microsoft.RecoveryServices/vaults/akkanasePOC1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus\",\"name\":\"akkanasePOC2\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A16%3A44.6345236Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanase/providers/Microsoft.RecoveryServices/vaults/akkanasePOC2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus\",\"name\":\"akkanaseTestPOC1\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A17%3A03.3060516Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanase/providers/Microsoft.RecoveryServices/vaults/akkanaseTestPOC1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus\",\"name\":\"getputv1policyvault\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A17%3A07.9974204Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanase/providers/Microsoft.RecoveryServices/vaults/getputv1policyvault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus\",\"name\":\"testVauttCreate\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A17%3A10.7049017Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanase/providers/Microsoft.RecoveryServices/vaults/testVauttCreate\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus\",\"name\":\"akkanaseAFSCRR\",\"etag\":\"W/\\\"datetime'2026-05-18T11%3A55%3A01.7885134Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseAFSTest/providers/Microsoft.RecoveryServices/vaults/akkanaseAFSCRR\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus\",\"name\":\"akkanaseCMKNew\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A23%3A26.001218Z'\\\"\",\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"93207892-ddfb-48c8-8d48-30c199c8a001\",\"type\":\"SystemAssigned, UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/hiagarg/providers/microsoft.managedidentity/userassignedidentities/cmk-pstest-msi1\":{\"clientId\":\"cc17dc91-0ffc-41c4-9f4b-b7b61fa9f4e8\",\"principalId\":\"79e6360a-251c-4431-b817-a7fff3ac5c91\"},\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vepothir-rg-ram-sub/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vepothir-identity-1\":{\"clientId\":\"5909ae61-fd85-4404-9e0b-60709b84e067\",\"principalId\":\"f6d28ffe-fbc2-4e9c-9bc1-f3e3585223c0\"}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":{\"keyVaultProperties\":{\"keyUri\":\"https://akkanasecmk1.vault.azure.net/keys/testKeyj\"},\"kekIdentity\":{\"useSystemAssignedIdentity\":true,\"userAssignedIdentity\":null},\"infrastructureEncryption\":\"Disabled\"},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseCMK/providers/Microsoft.RecoveryServices/vaults/akkanaseCMKNew\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus\",\"name\":\"akkanaseCMKSystem\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A23%3A27.9161435Z'\\\"\",\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"2afe8612-6c52-4e9c-95c7-32b82becbe55\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":{\"keyVaultProperties\":{\"keyUri\":\"https://akkanasecmk1.vault.azure.net/keys/testKey\"},\"kekIdentity\":{\"useSystemAssignedIdentity\":true,\"userAssignedIdentity\":null},\"infrastructureEncryption\":\"Enabled\"},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseCMK/providers/Microsoft.RecoveryServices/vaults/akkanaseCMKSystem\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus\",\"name\":\"akkanaseUser\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A23%3A33.8668009Z'\\\"\",\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/hiagarg/providers/microsoft.managedidentity/userassignedidentities/cmk-pstest-msi1\":{\"clientId\":\"cc17dc91-0ffc-41c4-9f4b-b7b61fa9f4e8\",\"principalId\":\"79e6360a-251c-4431-b817-a7fff3ac5c91\"}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":{\"keyVaultProperties\":{\"keyUri\":\"https://akkanasecmk1.vault.azure.net/keys/testKey\"},\"kekIdentity\":{\"useSystemAssignedIdentity\":false,\"userAssignedIdentity\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/hiagarg/providers/microsoft.managedidentity/userassignedidentities/cmk-pstest-msi1\"},\"infrastructureEncryption\":\"Disabled\"},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseCMK/providers/Microsoft.RecoveryServices/vaults/akkanaseUser\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus\",\"name\":\"test1\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A23%3A35.7277553Z'\\\"\",\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"92cd2c74-f998-4f3f-8148-0167b5a2bb76\",\"type\":\"SystemAssigned, - UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cmk.system/providers/microsoft.managedidentity/userassignedidentities/identity1\":{\"clientId\":\"73571b84-6f37-4bdd-a60f-1121cb5d31d7\",\"principalId\":\"13a05d1f-eae9-47ae-944f-46270c95d12e\"}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":{\"keyVaultProperties\":{\"keyUri\":\"https://akkanasecmk1.vault.azure.net/keys/testKey\"},\"kekIdentity\":{\"useSystemAssignedIdentity\":true,\"userAssignedIdentity\":null},\"infrastructureEncryption\":\"Enabled\"},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseCMK/providers/Microsoft.RecoveryServices/vaults/test1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus\",\"name\":\"akkanaseTestfad\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A26%3A35.7536224Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseTest/providers/Microsoft.RecoveryServices/vaults/akkanaseTestfad\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus\",\"name\":\"akkanaseWestUS1\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A33%3A27.4454397Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseWestUS1/providers/Microsoft.RecoveryServices/vaults/akkanaseWestUS1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus\",\"name\":\"akkanaseWestUS10\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A33%3A28.1820269Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseWestUS1/providers/Microsoft.RecoveryServices/vaults/akkanaseWestUS10\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus\",\"name\":\"akkanaseWestUS2\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A33%3A29.3473732Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseWestUS1/providers/Microsoft.RecoveryServices/vaults/akkanaseWestUS2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus\",\"name\":\"akkanaseWestUS3\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A33%3A31.3182681Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseWestUS1/providers/Microsoft.RecoveryServices/vaults/akkanaseWestUS3\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus\",\"name\":\"akkanaseWestUS4\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A33%3A31.9369204Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseWestUS1/providers/Microsoft.RecoveryServices/vaults/akkanaseWestUS4\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus\",\"name\":\"akkanaseWestUS5\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A33%3A32.8833893Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseWestUS1/providers/Microsoft.RecoveryServices/vaults/akkanaseWestUS5\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus\",\"name\":\"akkanaseWestUS6\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A33%3A34.6893769Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseWestUS1/providers/Microsoft.RecoveryServices/vaults/akkanaseWestUS6\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus\",\"name\":\"akkanaseWestUS7\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A33%3A35.9186867Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseWestUS1/providers/Microsoft.RecoveryServices/vaults/akkanaseWestUS7\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus\",\"name\":\"akkanaseWestUS8\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A33%3A37.1599907Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseWestUS1/providers/Microsoft.RecoveryServices/vaults/akkanaseWestUS8\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus\",\"name\":\"akkanaseWestUS9\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A33%3A38.5112331Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseWestUS1/providers/Microsoft.RecoveryServices/vaults/akkanaseWestUS9\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus\",\"name\":\"crrclitestvault\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A54%3A55.9111418Z'\\\"\",\"tags\":{\"Owner\":\"akneema\",\"Purpose\":\"Testing\",\"MABUsed\":\"Yes\",\"DeleteBy\":\"12-9999\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-rg/providers/Microsoft.RecoveryServices/vaults/crrclitestvault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus\",\"name\":\"testvault\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A55%3A01.0392636Z'\\\"\",\"tags\":{\"Purpose\":\"Testing\",\"Owner\":\"akneema\",\"MABUsed\":\"Yes\",\"DeleteBy\":\"12-9999\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-rg-donotuse/providers/Microsoft.RecoveryServices/vaults/testvault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus\",\"name\":\"clitest-vaultkltcogipylb\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A42%3A11.6470499Z'\\\"\",\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"a48e45c3-38eb-45b5-bbfd-24d3ff15f0ef\",\"type\":\"SystemAssigned, - UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg7pyzsjevhwekdbuqz553tg6kgb6slt5rnpfllucxn5hfwmjf2ajkuvi2gbdaaxgwv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity1lo6xcwqhnfjlvnrua4ltft5sexv2vwbdq\":{\"clientId\":\"da517d21-5e7b-44b8-a1d4-da442e04819f\",\"principalId\":\"1a4e49c1-5ead-4089-8842-6387e7c47da9\"}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":{\"keyVaultProperties\":{\"keyUri\":\"https://clitest4kre3xyccj6wppnp5.vault.azure.net/keys/clitest-key2gsboyck4/d8a2e0b5cba343e1a32c8bd7bee8b126\"},\"kekIdentity\":{\"useSystemAssignedIdentity\":true,\"userAssignedIdentity\":null},\"infrastructureEncryption\":\"Enabled\"},\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg7pyzsjevhwekdbuqz553tg6kgb6slt5rnpfllucxn5hfwmjf2ajkuvi2gbdaaxgwv/providers/Microsoft.RecoveryServices/vaults/clitest-vaultkltcogipylb\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"westus\",\"name\":\"clitest-vaultpi3bphhnc7w\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A42%3A13.5979579Z'\\\"\",\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"ee053635-13b1-4b0d-9a7e-13c424ba7627\",\"type\":\"SystemAssigned, - UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg7pyzsjevhwekdbuqz553tg6kgb6slt5rnpfllucxn5hfwmjf2ajkuvi2gbdaaxgwv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity1lo6xcwqhnfjlvnrua4ltft5sexv2vwbdq\":{\"clientId\":\"da517d21-5e7b-44b8-a1d4-da442e04819f\",\"principalId\":\"1a4e49c1-5ead-4089-8842-6387e7c47da9\"},\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg7pyzsjevhwekdbuqz553tg6kgb6slt5rnpfllucxn5hfwmjf2ajkuvi2gbdaaxgwv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity2rirallpzdiewl22mxvqokxo33nnpipxka\":{\"clientId\":\"4f600a01-5528-4de0-a35a-b50eae847d9c\",\"principalId\":\"b9ced4e4-c763-4812-a0f5-c0ecb4badecf\"}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":{\"keyVaultProperties\":{\"keyUri\":\"https://clitest4kre3xyccj6wppnp5.vault.azure.net/keys/clitest-key1xw646q72/f836215d18ed48c98b611bc697d395ae\"},\"kekIdentity\":{\"useSystemAssignedIdentity\":true,\"userAssignedIdentity\":null},\"infrastructureEncryption\":\"Disabled\"},\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg7pyzsjevhwekdbuqz553tg6kgb6slt5rnpfllucxn5hfwmjf2ajkuvi2gbdaaxgwv/providers/Microsoft.RecoveryServices/vaults/clitest-vaultpi3bphhnc7w\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"westus\",\"name\":\"clitest-vaultdyw7fgmguvo\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A46%3A12.7718859Z'\\\"\",\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgdzpzsaihvvk3ol7ruhv26iuemblmnbqkpfy4wnc3nlfqvyeb35exxm4ysury32tyd/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity137pbjy65i54ed7o3i2qo7c2wzk6ygda2h\":{\"clientId\":\"c126e597-db35-4f69-8a05-d3090fb49e2e\",\"principalId\":\"f0d76384-52d5-4702-a329-4ce942b74b9e\"},\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgdzpzsaihvvk3ol7ruhv26iuemblmnbqkpfy4wnc3nlfqvyeb35exxm4ysury32tyd/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity2nv45p6srizmxurnkwwa4lgmqil4vo7p57\":{\"clientId\":\"62b3a5f2-8bbe-4316-a0fd-ae363fb14e9d\",\"principalId\":\"0a35a6cc-9b72-46cf-ae32-24bf27872442\"}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgdzpzsaihvvk3ol7ruhv26iuemblmnbqkpfy4wnc3nlfqvyeb35exxm4ysury32tyd/providers/Microsoft.RecoveryServices/vaults/clitest-vaultdyw7fgmguvo\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"westus\",\"name\":\"clitest-vaultgygpgj2xlir\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A46%3A15.0386132Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgdzpzsaihvvk3ol7ruhv26iuemblmnbqkpfy4wnc3nlfqvyeb35exxm4ysury32tyd/providers/Microsoft.RecoveryServices/vaults/clitest-vaultgygpgj2xlir\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"westus\",\"name\":\"clitest-vaultbx5ncqebt57\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A49%3A54.1116336Z'\\\"\",\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"39333047-6338-4750-a11e-8bf98e1c5dc8\",\"type\":\"SystemAssigned, - UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgt4bwy2odwqpl5qjklfiw4fnboib54hcj355pcqo655z5fz557jkqd2u32iqs2yrp4/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity1gpugoskgl2axtmnb2k2bqpmfzxgkmkevt\":{\"clientId\":\"f192ea24-4baa-4087-b243-c94e82bf63bd\",\"principalId\":\"8135ce01-e807-4040-ae9f-e0528580d646\"}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgt4bwy2odwqpl5qjklfiw4fnboib54hcj355pcqo655z5fz557jkqd2u32iqs2yrp4/providers/Microsoft.RecoveryServices/vaults/clitest-vaultbx5ncqebt57\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"westus\",\"name\":\"clitest-vaultxl76coo2may\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A49%3A55.6187868Z'\\\"\",\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"3fe3cce3-eea1-4397-8bdc-fda70f24163e\",\"type\":\"SystemAssigned, - UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgt4bwy2odwqpl5qjklfiw4fnboib54hcj355pcqo655z5fz557jkqd2u32iqs2yrp4/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity1gpugoskgl2axtmnb2k2bqpmfzxgkmkevt\":{\"clientId\":\"f192ea24-4baa-4087-b243-c94e82bf63bd\",\"principalId\":\"8135ce01-e807-4040-ae9f-e0528580d646\"},\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgt4bwy2odwqpl5qjklfiw4fnboib54hcj355pcqo655z5fz557jkqd2u32iqs2yrp4/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity2hrwglegaa7y3punjjpn3crvlmevtl6ygb\":{\"clientId\":\"a53ebe9f-dd02-4ff8-b6d3-056ef1a9030b\",\"principalId\":\"f37c3ca0-5046-437c-8474-8dfbc2a4d3ab\"}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":{\"keyVaultProperties\":{\"keyUri\":\"https://clitestetgq2n3rvrqaje2f4.vault.azure.net/keys/clitest-key22tys3fvv/b93ffa9bd5e0404c9a118efdb65583ae\"},\"kekIdentity\":{\"useSystemAssignedIdentity\":true,\"userAssignedIdentity\":null},\"infrastructureEncryption\":\"Disabled\"},\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgt4bwy2odwqpl5qjklfiw4fnboib54hcj355pcqo655z5fz557jkqd2u32iqs2yrp4/providers/Microsoft.RecoveryServices/vaults/clitest-vaultxl76coo2may\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"westus\",\"name\":\"iaasvmsqlworkloadexistingvault3\",\"etag\":\"W/\\\"datetime'2025-08-14T15%3A03%3A44.2106635Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault3\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus\",\"name\":\"saphana-clitest-vault2\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A10%3A47.8307987Z'\\\"\",\"tags\":{\"Owner\":\"akneema\",\"Purpose\":\"Testing\",\"DeleteBy\":\"12-9999\",\"MABUsed\":\"Yes\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/saphana-clitest-rg/providers/Microsoft.RecoveryServices/vaults/saphana-clitest-vault2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus\",\"name\":\"CopilotDemoVault\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A11%3A41.9055626Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/CopilotDemoVault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus\",\"name\":\"zwestusvault\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A34%3A53.5279513Z'\\\"\",\"tags\":{\"Owner\":\"zubairabid\",\"Purpose\":\"CRR - Testing\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zubairRG/providers/Microsoft.RecoveryServices/vaults/zwestusvault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"asdfsdf\",\"etag\":\"W/\\\"datetime'2025-08-14T09%3A56%3A49.340401Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/accessibility/providers/Microsoft.RecoveryServices/vaults/asdfsdf\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"adigupt-sql-archieve-vault\",\"etag\":\"W/\\\"datetime'2025-08-14T09%3A56%3A49.939061Z'\\\"\",\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"4c768a8a-6899-43cf-987d-8d4aaf231102\",\"type\":\"SystemAssigned, - UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzSecPackAutoConfigRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/AzSecPackAutoConfigUA-centraluseuap\":{\"clientId\":\"33ad67f7-e81a-403a-8874-7ca0f1e610ea\",\"principalId\":\"0a2484e3-df35-472e-a56f-9a83c91ec847\"}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":null,\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adigupt-east-us-rg/providers/Microsoft.RecoveryServices/vaults/adigupt-sql-archieve-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"testab\",\"etag\":\"W/\\\"datetime'2025-08-14T09%3A56%3A50.7336136Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adigupt-east-us-rg/providers/Microsoft.RecoveryServices/vaults/testab/privateEndpointConnections/testabc.3520943893222067065.backup.f32db09b-be28-4c27-9483-0c5dcd94b666\",\"name\":\"testabc.3520943893222067065.backup.f32db09b-be28-4c27-9483-0c5dcd94b666\",\"type\":\"Microsoft.RecoveryServices/vaults/privateEndpointConnections\",\"location\":\"eastus\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpoint\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adigupt-east-us-rg/providers/Microsoft.Network/privateEndpoints/testabc\"},\"groupIds\":[\"AzureBackup\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"None\",\"actionsRequired\":\"None\"}}}],\"privateEndpointStateForBackup\":\"Enabled\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adigupt-east-us-rg/providers/Microsoft.RecoveryServices/vaults/testab\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"eusvault\",\"etag\":\"W/\\\"datetime'2025-08-14T09%3A56%3A56.9540972Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adigupt-ecy-rg/providers/Microsoft.RecoveryServices/vaults/eusvault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"blobbackupvaulteus\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A03%3A42.2640495Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Disabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/blobbackupvaulteus\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"sdfafdf\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A05%3A36.5654553Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AdkayethBugbash/providers/Microsoft.RecoveryServices/vaults/sdfafdf\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"test123abc123\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A06%3A25.3438899Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AdkayethBugbash/providers/Microsoft.RecoveryServices/vaults/test123abc123\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"sdfsdfsdf\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A06%3A34.9704501Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayethImmutability/providers/Microsoft.RecoveryServices/vaults/sdfsdfsdf\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"Myclivault\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A14%3A59.531612Z'\\\"\",\"tags\":{\"MABUsed\":\"Yes\",\"Owner\":\"t-shjoshi\",\"Purpose\":\"Testing\",\"DeleteBy\":\"12-2099\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Disabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Disabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/afstests/providers/Microsoft.RecoveryServices/vaults/Myclivault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"akkanaseEastUSPOC1\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A24%3A27.761933Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseEastUS1/providers/Microsoft.RecoveryServices/vaults/akkanaseEastUSPOC1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"akkanaseEastUSPOC10\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A24%3A29.8117616Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseEastUS1/providers/Microsoft.RecoveryServices/vaults/akkanaseEastUSPOC10\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"akkanaseEastUSPOC2\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A24%3A31.362875Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseEastUS1/providers/Microsoft.RecoveryServices/vaults/akkanaseEastUSPOC2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"akkanaseEastUSPOC3\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A24%3A32.9149884Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseEastUS1/providers/Microsoft.RecoveryServices/vaults/akkanaseEastUSPOC3\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"akkanaseEastUSPOC4\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A24%3A34.3611628Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseEastUS1/providers/Microsoft.RecoveryServices/vaults/akkanaseEastUSPOC4\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"akkanaseEastUSPOC5\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A24%3A36.5249255Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseEastUS1/providers/Microsoft.RecoveryServices/vaults/akkanaseEastUSPOC5\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"akkanaseEastUSPOC6\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A24%3A38.0300657Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseEastUS1/providers/Microsoft.RecoveryServices/vaults/akkanaseEastUSPOC6\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"akkanaseEastUSPOC7\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A24%3A40.7675008Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseEastUS1/providers/Microsoft.RecoveryServices/vaults/akkanaseEastUSPOC7\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"akkanaseEastUSPOC8\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A24%3A43.3160444Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseEastUS1/providers/Microsoft.RecoveryServices/vaults/akkanaseEastUSPOC8\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"akkanaseEastUSPOC9\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A24%3A45.6067355Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseEastUS1/providers/Microsoft.RecoveryServices/vaults/akkanaseEastUSPOC9\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"akkanasePOC1\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A24%3A56.8223233Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanasePOC/providers/Microsoft.RecoveryServices/vaults/akkanasePOC1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"akkanaseTest2321\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A26%3A31.7082153Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":null,\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseTest/providers/Microsoft.RecoveryServices/vaults/akkanaseTest2321\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"amit-replicated-item\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A43%3A27.1290441Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amitranjan/providers/Microsoft.RecoveryServices/vaults/amit-replicated-item\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"ankureustest2\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A43%3A32.715873Z'\\\"\",\"tags\":{\"Owner\":\"ankur\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurRG137/providers/Microsoft.RecoveryServices/vaults/ankureustest2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"RSV1110\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A58%3A48.7180252Z'\\\"\",\"tags\":{\"Owner\":\"ankur\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurRG137/providers/Microsoft.RecoveryServices/vaults/RSV1110\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"arohijain-backupvault\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A15%3A10.3115104Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/arohijain-rg/providers/Microsoft.RecoveryServices/vaults/arohijain-backupvault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"donotuse-v1workloadtest-bvt-ecy-cross-vault\",\"etag\":\"W/\\\"datetime'2025-08-14T12%3A31%3A12.9051615Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/donotuse-v1workloadtest-bvt-ecy-cross-rg/providers/Microsoft.RecoveryServices/vaults/donotuse-v1workloadtest-bvt-ecy-cross-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"sqlvaultf3ac75\",\"etag\":\"W/\\\"datetime'2025-08-14T12%3A31%3A13.2229797Z'\\\"\",\"tags\":{\"MAB - Used\":\"Yes\",\"Owner\":\"Workload Backup team;vintib\",\"Purpose\":\"WorkloadBackup-SwaggerTest\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dontusesqlrg/providers/Microsoft.RecoveryServices/vaults/sqlvaultf3ac75\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"gvjreddy-test-eus-vault\",\"etag\":\"W/\\\"datetime'2025-08-14T12%3A46%3A36.5183341Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":null,\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-test-eus-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"gvjreddy-test-vault-20230714-1416\",\"etag\":\"W/\\\"datetime'2025-08-14T12%3A46%3A43.0536182Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-test-vault-20230714-1416\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"hsrtest\",\"etag\":\"W/\\\"datetime'2025-08-14T12%3A46%3A52.1614382Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hanarg2/providers/Microsoft.RecoveryServices/vaults/hsrtest\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"hiaga-zrs-vault\",\"etag\":\"W/\\\"datetime'2025-09-16T04%3A25%3A54.3138917Z'\\\"\",\"tags\":{\"MABUsed\":\"yes\",\"Purpose\":\"testing\",\"Owner\":\"hiaga\",\"DeleteBy\":\"01-2099\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-zrs-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"hiagaAlerts1\",\"etag\":\"W/\\\"datetime'2025-08-14T12%3A46%3A57.4114527Z'\\\"\",\"tags\":{\"MABUsed\":\"yes\",\"Owner\":\"hiaga\",\"Purpose\":\"testing\",\"DeleteBy\":\"01-2099\"},\"identity\":{\"type\":\"None\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaAlerts1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"hiagaCRRDES-testvault\",\"etag\":\"W/\\\"datetime'2025-08-14T12%3A47%3A01.8059528Z'\\\"\",\"tags\":{\"MABUsed\":\"yes\",\"Owner\":\"hiaga\",\"Purpose\":\"testing\",\"DeleteBy\":\"01-2099\"},\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"2703a374-5394-4e85-ad37-c60a4711c97d\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":{\"keyVaultProperties\":{\"keyUri\":\"https://hiagakveus1.vault.azure.net/keys/hiagaKey\"},\"kekIdentity\":{\"useSystemAssignedIdentity\":true,\"userAssignedIdentity\":null},\"infrastructureEncryption\":\"Disabled\"},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaCRRDES-testvault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"hiagaVaultCredEUS\",\"etag\":\"W/\\\"datetime'2025-08-14T12%3A47%3A34.4833602Z'\\\"\",\"tags\":{\"MABUsed\":\"yes\",\"Owner\":\"hiaga\",\"Purpose\":\"testing\",\"DeleteBy\":\"01-2099\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVaultCredEUS\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"ianna-afs-vault-1\",\"etag\":\"W/\\\"datetime'2025-10-10T18%3A28%3A15.7228028Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iannafs-pstest-sa-rg-1/providers/Microsoft.RecoveryServices/vaults/ianna-afs-vault-1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"ianna-afs-vault2\",\"etag\":\"W/\\\"datetime'2025-10-13T23%3A49%3A17.7063063Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iannafs-pstest-sa-rg-2/providers/Microsoft.RecoveryServices/vaults/ianna-afs-vault2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"defaultvault\",\"etag\":\"W/\\\"datetime'2025-08-14T15%3A45%3A14.1627815Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raghavchugh-rg/providers/Microsoft.RecoveryServices/vaults/defaultvault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"iaasvm-bug-test-primary\",\"etag\":\"W/\\\"datetime'2025-08-14T15%3A45%3A14.6135236Z'\\\"\",\"tags\":{\"CreatedOn\":\"2025-07-15T05:05:15.5434378Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raghavchugh-rg/providers/Microsoft.RecoveryServices/vaults/iaasvm-bug-test-primary\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"hotfixTest11\",\"etag\":\"W/\\\"datetime'2025-08-14T15%3A55%3A10.241975Z'\\\"\",\"tags\":{\"Owner\":\"ishanjindal\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redundancyTestingVault/providers/Microsoft.RecoveryServices/vaults/hotfixTest11\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"simran-tets\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A31%3A50.7584035Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/simran-test/providers/Microsoft.RecoveryServices/vaults/simran-tets\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"test\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A33%3A38.3690694Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vault-create-test-rg/providers/Microsoft.RecoveryServices/vaults/test\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"vepothir-del-10\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A34%3A01.6427991Z'\\\"\",\"tags\":{\"Owner\":\"vepothir\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vepothir-rg-ram-sub/providers/Microsoft.RecoveryServices/vaults/vepothir-del-10\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"vepothir-vault-eastUs-Functional-Testing-sub\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A34%3A02.4103616Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vepothir-rg-ram-sub/providers/Microsoft.RecoveryServices/vaults/vepothir-vault-eastUs-Functional-Testing-sub\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"vepothir122-3\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A34%3A00.9302054Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vepothir-rg-ram-sub/providers/Microsoft.RecoveryServices/vaults/vepothir122-3\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"northeurope\",\"name\":\"akkanaseNorthEurope1\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A24%3A50.909375Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseNorthEurope1/providers/Microsoft.RecoveryServices/vaults/akkanaseNorthEurope1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"northeurope\",\"name\":\"akkanaseNorthEurope10\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A24%3A51.9597731Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseNorthEurope1/providers/Microsoft.RecoveryServices/vaults/akkanaseNorthEurope10\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"northeurope\",\"name\":\"akkanaseNorthEurope2\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A24%3A52.58802Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseNorthEurope1/providers/Microsoft.RecoveryServices/vaults/akkanaseNorthEurope2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"northeurope\",\"name\":\"akkanaseNorthEurope3\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A24%3A52.9832871Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseNorthEurope1/providers/Microsoft.RecoveryServices/vaults/akkanaseNorthEurope3\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"northeurope\",\"name\":\"akkanaseNorthEurope4\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A24%3A53.3785558Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseNorthEurope1/providers/Microsoft.RecoveryServices/vaults/akkanaseNorthEurope4\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"northeurope\",\"name\":\"akkanaseNorthEurope5\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A24%3A53.6822242Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseNorthEurope1/providers/Microsoft.RecoveryServices/vaults/akkanaseNorthEurope5\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"northeurope\",\"name\":\"akkanaseNorthEurope6\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A24%3A54.4508561Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseNorthEurope1/providers/Microsoft.RecoveryServices/vaults/akkanaseNorthEurope6\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"northeurope\",\"name\":\"akkanaseNorthEurope7\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A24%3A54.8829626Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseNorthEurope1/providers/Microsoft.RecoveryServices/vaults/akkanaseNorthEurope7\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"northeurope\",\"name\":\"akkanaseNorthEurope8\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A24%3A55.7700756Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseNorthEurope1/providers/Microsoft.RecoveryServices/vaults/akkanaseNorthEurope8\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"northeurope\",\"name\":\"akkanaseNorthEurope9\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A24%3A56.0179895Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseNorthEurope1/providers/Microsoft.RecoveryServices/vaults/akkanaseNorthEurope9\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"northeurope\",\"name\":\"testing123\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A03%3A32.094997Z'\\\"\",\"tags\":{\"Owner\":\"ishanjindal\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redundancyTestingVault/providers/Microsoft.RecoveryServices/vaults/testing123\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westeurope\",\"name\":\"test435465\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A04%3A06.491094Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/test435465\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westeurope\",\"name\":\"akkanaseWestEurope1\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A31%3A46.8187305Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseWestEurope1/providers/Microsoft.RecoveryServices/vaults/akkanaseWestEurope1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westeurope\",\"name\":\"akkanaseWestEurope10\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A31%3A49.2610357Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseWestEurope1/providers/Microsoft.RecoveryServices/vaults/akkanaseWestEurope10\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westeurope\",\"name\":\"akkanaseWestEurope2\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A31%3A50.4010435Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseWestEurope1/providers/Microsoft.RecoveryServices/vaults/akkanaseWestEurope2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westeurope\",\"name\":\"akkanaseWestEurope3\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A31%3A53.8479485Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseWestEurope1/providers/Microsoft.RecoveryServices/vaults/akkanaseWestEurope3\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westeurope\",\"name\":\"akkanaseWestEurope4\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A31%3A55.7874542Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseWestEurope1/providers/Microsoft.RecoveryServices/vaults/akkanaseWestEurope4\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westeurope\",\"name\":\"akkanaseWestEurope5\",\"etag\":\"W/\\\"datetime'2025-08-28T10%3A13%3A28.4230065Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseWestEurope1/providers/Microsoft.RecoveryServices/vaults/akkanaseWestEurope5\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westeurope\",\"name\":\"akkanaseWestEurope6\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A31%3A59.0641045Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseWestEurope1/providers/Microsoft.RecoveryServices/vaults/akkanaseWestEurope6\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westeurope\",\"name\":\"akkanaseWestEurope7\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A31%3A59.7978915Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseWestEurope1/providers/Microsoft.RecoveryServices/vaults/akkanaseWestEurope7\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westeurope\",\"name\":\"akkanaseWestEurope8\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A32%3A01.9653986Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseWestEurope1/providers/Microsoft.RecoveryServices/vaults/akkanaseWestEurope8\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westeurope\",\"name\":\"akkanaseWestEurope9\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A32%3A03.2398177Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseWestEurope1/providers/Microsoft.RecoveryServices/vaults/akkanaseWestEurope9\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westeurope\",\"name\":\"akneema-we-vault\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A42%3A22.1019806Z'\\\"\",\"tags\":{\"Owner\":\"akneema\",\"Purpose\":\"Testing\",\"DeleteBy\":\"12-9999\",\"MABUsed\":\"Yes\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema-we-rg/providers/Microsoft.RecoveryServices/vaults/akneema-we-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westeurope\",\"name\":\"ankurVault1219\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A43%3A29.1024445Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurResourceGuard1/providers/Microsoft.RecoveryServices/vaults/ankurVault1219\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westeurope\",\"name\":\"ankurVault12191\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A43%3A29.5703948Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurResourceGuard1/providers/Microsoft.RecoveryServices/vaults/ankurVault12191\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westeurope\",\"name\":\"ankurVault121911\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A43%3A30.4604951Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurResourceGuard1/providers/Microsoft.RecoveryServices/vaults/ankurVault121911\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westeurope\",\"name\":\"ankurVault121911219\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A43%3A31.1783504Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurResourceGuard1/providers/Microsoft.RecoveryServices/vaults/ankurVault121911219\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westeurope\",\"name\":\"dmbvtsource222\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A55%3A44.9240182Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmbvtrgwe222/providers/Microsoft.RecoveryServices/vaults/dmbvtsource222\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"westeurope\",\"name\":\"dmbvtsource907\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A56%3A17.9225318Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmbvtrgwe907/providers/Microsoft.RecoveryServices/vaults/dmbvtsource907\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"westeurope\",\"name\":\"gvjreddy-test-vault-we\",\"etag\":\"W/\\\"datetime'2025-08-14T12%3A46%3A46.9760078Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":null,\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-test-vault-we\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westeurope\",\"name\":\"gvjreddy-test-we-vault-tbd\",\"etag\":\"W/\\\"datetime'2025-08-14T12%3A46%3A48.8468163Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-test-we-vault-tbd\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westeurope\",\"name\":\"rsv-payas\",\"etag\":\"W/\\\"datetime'2025-08-14T15%3A43%3A09.2031199Z'\\\"\",\"tags\":{\"Owner\":\"payalsinghal\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/payalsinghal/providers/Microsoft.RecoveryServices/vaults/rsv-payas\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"akkanaseTestabc\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A26%3A33.9173102Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseTest/providers/Microsoft.RecoveryServices/vaults/akkanaseTestabc\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"seavault\",\"etag\":\"W/\\\"datetime'2025-10-14T05%3A59%3A56.1285916Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amitranjan/providers/Microsoft.RecoveryServices/vaults/seavault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"amitsae\",\"etag\":\"W/\\\"datetime'2025-10-21T07%3A16%3A24.9192532Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amitranjansae/providers/Microsoft.RecoveryServices/vaults/amitsae\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"mkheranizrs\",\"etag\":\"W/\\\"datetime'2025-08-14T15%3A42%3A11.293903Z'\\\"\",\"tags\":{\"Owner\":\"mkherani\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mkherani/providers/Microsoft.RecoveryServices/vaults/mkheranizrs\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southcentralus\",\"name\":\"akkanaseSouthCentralUS1\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A24%3A57.2418486Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseSouthCentralUS1/providers/Microsoft.RecoveryServices/vaults/akkanaseSouthCentralUS1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southcentralus\",\"name\":\"akkanaseSouthCentralUS10\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A24%3A59.7259398Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseSouthCentralUS1/providers/Microsoft.RecoveryServices/vaults/akkanaseSouthCentralUS10\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southcentralus\",\"name\":\"akkanaseSouthCentralUS2\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A24%3A59.9390042Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseSouthCentralUS1/providers/Microsoft.RecoveryServices/vaults/akkanaseSouthCentralUS2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southcentralus\",\"name\":\"akkanaseSouthCentralUS3\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A25%3A00.8181428Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseSouthCentralUS1/providers/Microsoft.RecoveryServices/vaults/akkanaseSouthCentralUS3\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southcentralus\",\"name\":\"akkanaseSouthCentralUS4\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A25%3A01.4882001Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseSouthCentralUS1/providers/Microsoft.RecoveryServices/vaults/akkanaseSouthCentralUS4\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southcentralus\",\"name\":\"akkanaseSouthCentralUS5\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A25%3A02.5306241Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseSouthCentralUS1/providers/Microsoft.RecoveryServices/vaults/akkanaseSouthCentralUS5\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southcentralus\",\"name\":\"akkanaseSouthCentralUS6\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A25%3A02.8482286Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseSouthCentralUS1/providers/Microsoft.RecoveryServices/vaults/akkanaseSouthCentralUS6\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southcentralus\",\"name\":\"akkanaseSouthCentralUS7\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A25%3A03.7104428Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseSouthCentralUS1/providers/Microsoft.RecoveryServices/vaults/akkanaseSouthCentralUS7\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southcentralus\",\"name\":\"akkanaseSouthCentralUS8\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A25%3A04.1923255Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseSouthCentralUS1/providers/Microsoft.RecoveryServices/vaults/akkanaseSouthCentralUS8\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southcentralus\",\"name\":\"akkanaseSouthCentralUS9\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A25%3A05.0366181Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseSouthCentralUS1/providers/Microsoft.RecoveryServices/vaults/akkanaseSouthCentralUS9\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"japaneast\",\"name\":\"testPe\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A32%3A26.1328588Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_japaneast_1/providers/Microsoft.RecoveryServices/vaults/testPe/privateEndpointConnections/akkanaseTest.1623882292348111020.backup.f808191e-870e-4908-b2aa-7e6673b76a80\",\"name\":\"akkanaseTest.1623882292348111020.backup.f808191e-870e-4908-b2aa-7e6673b76a80\",\"type\":\"Microsoft.RecoveryServices/vaults/privateEndpointConnections\",\"location\":\"japaneast\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpoint\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_japaneast_1/providers/Microsoft.Network/privateEndpoints/akkanaseTest\"},\"groupIds\":[\"AzureBackup\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"None\",\"actionsRequired\":\"None\"}}}],\"privateEndpointStateForBackup\":\"Enabled\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_japaneast_1/providers/Microsoft.RecoveryServices/vaults/testPe\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"japaneast\",\"name\":\"vault142\",\"etag\":\"W/\\\"datetime'2025-08-14T15%3A44%3A07.1695084Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prnookal-prod/providers/Microsoft.RecoveryServices/vaults/vault142\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"japaneast\",\"name\":\"vault335\",\"etag\":\"W/\\\"datetime'2025-08-14T15%3A45%3A11.6496781Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prnookal-prod/providers/Microsoft.RecoveryServices/vaults/vault335\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2\",\"name\":\"akkanaseTest321\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A02%3A27.8429629Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/akkanaseTest321\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2\",\"name\":\"akkanaseTest3215\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A02%3A31.5029507Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/akkanaseTest3215\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2\",\"name\":\"akkanaseTest3232\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A02%3A32.619067Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/akkanaseTest3232\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2\",\"name\":\"blobbackupeus2\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A03%3A38.7595796Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Disabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Disabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/blobbackupeus2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2\",\"name\":\"test321231\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A04%3A05.4068946Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/test321231\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2\",\"name\":\"akkanaseTest32\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A12%3A09.0423473Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/afstests/providers/Microsoft.RecoveryServices/vaults/akkanaseTest32\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2\",\"name\":\"akkanaseTest132123\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A26%3A30.9885737Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseTest/providers/Microsoft.RecoveryServices/vaults/akkanaseTest132123\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2\",\"name\":\"akkanaseTest543\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A26%3A32.8235247Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseTest/providers/Microsoft.RecoveryServices/vaults/akkanaseTest543\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2\",\"name\":\"asfaf\",\"etag\":\"W/\\\"datetime'2025-09-17T07%3A51%3A28.2155491Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amitranjan/providers/Microsoft.RecoveryServices/vaults/asfaf\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2\",\"name\":\"testing11\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A03%3A30.8806986Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redundancyTestingVault/providers/Microsoft.RecoveryServices/vaults/testing11\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2\",\"name\":\"sarathhanalargedbtargetvault\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A15%3A57.7823186Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarathhanalargedbtargetvault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centralindia\",\"name\":\"akkanaseCentralIndia1\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A22%3A02.3944417Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseCentralIndia1/providers/Microsoft.RecoveryServices/vaults/akkanaseCentralIndia1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centralindia\",\"name\":\"akkanaseCentralIndia10\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A22%3A06.3481766Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseCentralIndia1/providers/Microsoft.RecoveryServices/vaults/akkanaseCentralIndia10\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centralindia\",\"name\":\"akkanaseCentralIndia2\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A22%3A08.4019999Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseCentralIndia1/providers/Microsoft.RecoveryServices/vaults/akkanaseCentralIndia2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centralindia\",\"name\":\"akkanaseCentralIndia3\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A22%3A11.2033953Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseCentralIndia1/providers/Microsoft.RecoveryServices/vaults/akkanaseCentralIndia3\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centralindia\",\"name\":\"akkanaseCentralIndia4\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A22%3A13.0123583Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseCentralIndia1/providers/Microsoft.RecoveryServices/vaults/akkanaseCentralIndia4\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centralindia\",\"name\":\"akkanaseCentralIndia5\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A22%3A14.2146696Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseCentralIndia1/providers/Microsoft.RecoveryServices/vaults/akkanaseCentralIndia5\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centralindia\",\"name\":\"akkanaseCentralIndia6\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A22%3A15.0022189Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseCentralIndia1/providers/Microsoft.RecoveryServices/vaults/akkanaseCentralIndia6\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centralindia\",\"name\":\"akkanaseCentralIndia7\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A22%3A16.2704927Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseCentralIndia1/providers/Microsoft.RecoveryServices/vaults/akkanaseCentralIndia7\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centralindia\",\"name\":\"akkanaseCentralIndia8\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A22%3A17.8395951Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseCentralIndia1/providers/Microsoft.RecoveryServices/vaults/akkanaseCentralIndia8\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centralindia\",\"name\":\"akkanaseCentralIndia9\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A22%3A20.4031257Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseCentralIndia1/providers/Microsoft.RecoveryServices/vaults/akkanaseCentralIndia9\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centralindia\",\"name\":\"akkanaseCentralIndiaPOC1\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A22%3A23.9660847Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseCentralIndia1/providers/Microsoft.RecoveryServices/vaults/akkanaseCentralIndiaPOC1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centralindia\",\"name\":\"akkanaseCentralIndiaPOC10\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A22%3A28.4105395Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseCentralIndia1/providers/Microsoft.RecoveryServices/vaults/akkanaseCentralIndiaPOC10\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centralindia\",\"name\":\"akkanaseCentralIndiaPOC2\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A22%3A34.1032786Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseCentralIndia1/providers/Microsoft.RecoveryServices/vaults/akkanaseCentralIndiaPOC2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centralindia\",\"name\":\"akkanaseCentralIndiaPOC3\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A22%3A47.9893249Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseCentralIndia1/providers/Microsoft.RecoveryServices/vaults/akkanaseCentralIndiaPOC3\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centralindia\",\"name\":\"akkanaseCentralIndiaPOC4\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A22%3A55.2391718Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseCentralIndia1/providers/Microsoft.RecoveryServices/vaults/akkanaseCentralIndiaPOC4\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centralindia\",\"name\":\"akkanaseCentralIndiaPOC5\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A23%3A00.9718885Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseCentralIndia1/providers/Microsoft.RecoveryServices/vaults/akkanaseCentralIndiaPOC5\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centralindia\",\"name\":\"akkanaseCentralIndiaPOC6\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A23%3A16.3430825Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseCentralIndia1/providers/Microsoft.RecoveryServices/vaults/akkanaseCentralIndiaPOC6\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centralindia\",\"name\":\"akkanaseCentralIndiaPOC7\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A23%3A18.4808588Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseCentralIndia1/providers/Microsoft.RecoveryServices/vaults/akkanaseCentralIndiaPOC7\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centralindia\",\"name\":\"akkanaseCentralIndiaPOC8\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A23%3A19.8870531Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseCentralIndia1/providers/Microsoft.RecoveryServices/vaults/akkanaseCentralIndiaPOC8\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centralindia\",\"name\":\"akkanaseCentralIndiaPOC9\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A23%3A21.174316Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseCentralIndia1/providers/Microsoft.RecoveryServices/vaults/akkanaseCentralIndiaPOC9\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centralindia\",\"name\":\"mkheranidesktopbackup\",\"etag\":\"W/\\\"datetime'2025-08-14T15%3A42%3A26.1191469Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mkheranibackup/providers/Microsoft.RecoveryServices/vaults/mkheranidesktopbackup\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southindia\",\"name\":\"akkanaseTest32146\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A02%3A30.3055455Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/akkanaseTest32146\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southindia\",\"name\":\"SouthIndia123\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A03%3A50.0343807Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/SouthIndia123\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southindia\",\"name\":\"akkanaseSouthIndia1\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A25%3A06.0516966Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseSouthIndia1/providers/Microsoft.RecoveryServices/vaults/akkanaseSouthIndia1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southindia\",\"name\":\"akkanaseSouthIndia10\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A25%3A08.0310282Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseSouthIndia1/providers/Microsoft.RecoveryServices/vaults/akkanaseSouthIndia10\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southindia\",\"name\":\"akkanaseSouthIndia2\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A25%3A09.4498149Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseSouthIndia1/providers/Microsoft.RecoveryServices/vaults/akkanaseSouthIndia2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southindia\",\"name\":\"akkanaseSouthIndia3\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A25%3A10.4066247Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseSouthIndia1/providers/Microsoft.RecoveryServices/vaults/akkanaseSouthIndia3\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southindia\",\"name\":\"akkanaseSouthIndia4\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A25%3A11.6073667Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseSouthIndia1/providers/Microsoft.RecoveryServices/vaults/akkanaseSouthIndia4\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southindia\",\"name\":\"akkanaseSouthIndia5\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A25%3A12.0384784Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseSouthIndia1/providers/Microsoft.RecoveryServices/vaults/akkanaseSouthIndia5\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southindia\",\"name\":\"akkanaseSouthIndia6\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A25%3A13.688254Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseSouthIndia1/providers/Microsoft.RecoveryServices/vaults/akkanaseSouthIndia6\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southindia\",\"name\":\"akkanaseSouthIndia7\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A25%3A14.5504778Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseSouthIndia1/providers/Microsoft.RecoveryServices/vaults/akkanaseSouthIndia7\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southindia\",\"name\":\"akkanaseSouthIndia8\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A25%3A15.9264522Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseSouthIndia1/providers/Microsoft.RecoveryServices/vaults/akkanaseSouthIndia8\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southindia\",\"name\":\"akkanaseSouthIndia9\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A25%3A16.370508Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseSouthIndia1/providers/Microsoft.RecoveryServices/vaults/akkanaseSouthIndia9\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southindia\",\"name\":\"mkheranilaptop\",\"etag\":\"W/\\\"datetime'2025-08-14T15%3A43%3A01.4719623Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mkheranibackup/providers/Microsoft.RecoveryServices/vaults/mkheranilaptop\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westindia\",\"name\":\"adkamuamfa\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A06%3A49.9663385Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/afstests/providers/Microsoft.RecoveryServices/vaults/adkamuamfa\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westindia\",\"name\":\"akkanaseTest124\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A26%3A29.5589913Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseTest/providers/Microsoft.RecoveryServices/vaults/akkanaseTest124\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westindia\",\"name\":\"akkanaseWestIndia1\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A32%3A05.8266853Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseWestIndia1/providers/Microsoft.RecoveryServices/vaults/akkanaseWestIndia1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westindia\",\"name\":\"akkanaseWestIndia10\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A32%3A07.5046617Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseWestIndia1/providers/Microsoft.RecoveryServices/vaults/akkanaseWestIndia10\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westindia\",\"name\":\"akkanaseWestIndia2\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A32%3A11.2243938Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseWestIndia1/providers/Microsoft.RecoveryServices/vaults/akkanaseWestIndia2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westindia\",\"name\":\"akkanaseWestIndia3\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A33%3A10.4633108Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseWestIndia1/providers/Microsoft.RecoveryServices/vaults/akkanaseWestIndia3\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westindia\",\"name\":\"akkanaseWestIndia4\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A33%3A15.249399Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseWestIndia1/providers/Microsoft.RecoveryServices/vaults/akkanaseWestIndia4\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westindia\",\"name\":\"akkanaseWestIndia5\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A33%3A17.4620533Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseWestIndia1/providers/Microsoft.RecoveryServices/vaults/akkanaseWestIndia5\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westindia\",\"name\":\"akkanaseWestIndia6\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A33%3A19.3419105Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseWestIndia1/providers/Microsoft.RecoveryServices/vaults/akkanaseWestIndia6\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westindia\",\"name\":\"akkanaseWestIndia7\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A33%3A21.3187072Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseWestIndia1/providers/Microsoft.RecoveryServices/vaults/akkanaseWestIndia7\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westindia\",\"name\":\"akkanaseWestIndia8\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A33%3A23.3214892Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseWestIndia1/providers/Microsoft.RecoveryServices/vaults/akkanaseWestIndia8\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westindia\",\"name\":\"akkanaseWestIndia9\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A33%3A25.5081596Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseWestIndia1/providers/Microsoft.RecoveryServices/vaults/akkanaseWestIndia9\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"canadacentral\",\"name\":\"akkanaseCanadaCentral1\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A21%3A42.4186813Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseCanadaCentral1/providers/Microsoft.RecoveryServices/vaults/akkanaseCanadaCentral1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"canadacentral\",\"name\":\"akkanaseCanadaCentral10\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A21%3A43.0113433Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseCanadaCentral1/providers/Microsoft.RecoveryServices/vaults/akkanaseCanadaCentral10\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"canadacentral\",\"name\":\"akkanaseCanadaCentral2\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A21%3A44.5124885Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseCanadaCentral1/providers/Microsoft.RecoveryServices/vaults/akkanaseCanadaCentral2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"canadacentral\",\"name\":\"akkanaseCanadaCentral3\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A21%3A45.4979267Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseCanadaCentral1/providers/Microsoft.RecoveryServices/vaults/akkanaseCanadaCentral3\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"canadacentral\",\"name\":\"akkanaseCanadaCentral4\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A21%3A47.6527003Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseCanadaCentral1/providers/Microsoft.RecoveryServices/vaults/akkanaseCanadaCentral4\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"canadacentral\",\"name\":\"akkanaseCanadaCentral5\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A21%3A48.1144387Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseCanadaCentral1/providers/Microsoft.RecoveryServices/vaults/akkanaseCanadaCentral5\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"canadacentral\",\"name\":\"akkanaseCanadaCentral6\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A21%3A49.1938222Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseCanadaCentral1/providers/Microsoft.RecoveryServices/vaults/akkanaseCanadaCentral6\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"canadacentral\",\"name\":\"akkanaseCanadaCentral7\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A21%3A50.2742072Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseCanadaCentral1/providers/Microsoft.RecoveryServices/vaults/akkanaseCanadaCentral7\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"canadacentral\",\"name\":\"akkanaseCanadaCentral8\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A21%3A51.3845747Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseCanadaCentral1/providers/Microsoft.RecoveryServices/vaults/akkanaseCanadaCentral8\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"canadacentral\",\"name\":\"akkanaseCanadaCentral9\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A21%3A52.8617338Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseCanadaCentral1/providers/Microsoft.RecoveryServices/vaults/akkanaseCanadaCentral9\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westcentralus\",\"name\":\"mkheraniabclgrsv\",\"etag\":\"W/\\\"datetime'2025-08-14T15%3A42%3A17.2470764Z'\\\"\",\"tags\":{\"Owner\":\"mkherani\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mkheraniabclonghaul/providers/Microsoft.RecoveryServices/vaults/mkheraniabclgrsv\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westcentralus\",\"name\":\"vault177\",\"etag\":\"W/\\\"datetime'2025-08-14T15%3A45%3A12.3200534Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prnookal-wcus/providers/Microsoft.RecoveryServices/vaults/vault177\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus2\",\"name\":\"adkTestVault\",\"etag\":\"W/\\\"datetime'2025-08-14T09%3A57%3A26.6668359Z'\\\"\",\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"6034d1e5-7135-44c0-87b0-a63ef3249374\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Disabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/adkTestVault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus2\",\"name\":\"akkanase\",\"etag\":\"W/\\\"datetime'2025-08-14T09%3A57%3A30.8952665Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/akkanase\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus2\",\"name\":\"akkanaseTes3t32\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A02%3A15.9484593Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/akkanaseTes3t32\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus2\",\"name\":\"akkanaseTest1\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A02%3A20.0175893Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/akkanaseTest1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus2\",\"name\":\"akkanaseTest1231\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A02%3A22.1273236Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/akkanaseTest1231\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus2\",\"name\":\"akkanaseTestdf\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A02%3A37.3385227Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/akkanaseTestdf\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus2\",\"name\":\"NewVault32\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A03%3A45.7072734Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/NewVault32\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus2\",\"name\":\"SSSSS\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A03%3A51.686017Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Disabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/SSSSS\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus2\",\"name\":\"test123Akash\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A04%3A03.3428252Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/test123Akash\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus2\",\"name\":\"test54342\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A04%3A20.4855399Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/test54342\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus2\",\"name\":\"testabcdaef\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A04%3A35.917768Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/testabcdaef\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus2\",\"name\":\"xxzc\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A05%3A25.1495616Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Disabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Disabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/xxzc\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus2\",\"name\":\"akkanaseWestUS21\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A33%3A39.090427Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseWestUS2/providers/Microsoft.RecoveryServices/vaults/akkanaseWestUS21\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus2\",\"name\":\"akkanaseWestUS210\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A33%3A39.869008Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseWestUS2/providers/Microsoft.RecoveryServices/vaults/akkanaseWestUS210\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus2\",\"name\":\"akkanaseWestUS22\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A33%3A40.5141741Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseWestUS2/providers/Microsoft.RecoveryServices/vaults/akkanaseWestUS22\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus2\",\"name\":\"akkanaseWestUS23\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A33%3A41.5336973Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseWestUS2/providers/Microsoft.RecoveryServices/vaults/akkanaseWestUS23\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus2\",\"name\":\"akkanaseWestUS24\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A33%3A41.9399135Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseWestUS2/providers/Microsoft.RecoveryServices/vaults/akkanaseWestUS24\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus2\",\"name\":\"akkanaseWestUS25\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A33%3A42.9763618Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseWestUS2/providers/Microsoft.RecoveryServices/vaults/akkanaseWestUS25\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus2\",\"name\":\"akkanaseWestUS26\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A33%3A43.7768462Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseWestUS2/providers/Microsoft.RecoveryServices/vaults/akkanaseWestUS26\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus2\",\"name\":\"akkanaseWestUS27\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A33%3A44.6997935Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseWestUS2/providers/Microsoft.RecoveryServices/vaults/akkanaseWestUS27\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus2\",\"name\":\"akkanaseWestUS28\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A33%3A45.3160862Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseWestUS2/providers/Microsoft.RecoveryServices/vaults/akkanaseWestUS28\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus2\",\"name\":\"akkanaseWestUS29\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A33%3A46.2091644Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseWestUS2/providers/Microsoft.RecoveryServices/vaults/akkanaseWestUS29\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus2\",\"name\":\"copilot-testing\",\"etag\":\"W/\\\"datetime'2025-08-14T13%3A02%3A48.8777062Z'\\\"\",\"tags\":{\"AutoAddedTagsSpendMgmt\":\"Owner\",\"Owner\":\"akkanase\",\"CreatedOn\":\"2025-06-27T05:38:54.6130913Z\"},\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagarg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cmk-pstest-msi1\":{\"clientId\":\"cc17dc91-0ffc-41c4-9f4b-b7b61fa9f4e8\",\"principalId\":\"79e6360a-251c-4431-b817-a7fff3ac5c91\"}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":{\"keyVaultProperties\":{\"keyUri\":\"https://cmk-pstest-keyvault.vault.azure.net/keys/cmk-pstest-key/5569d5a163ee474cad2da4ac334af9d7\"},\"kekIdentity\":{\"useSystemAssignedIdentity\":false,\"userAssignedIdentity\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagarg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cmk-pstest-msi1\"},\"infrastructureEncryption\":\"Enabled\"},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvm.vmbackup-eastasia/providers/Microsoft.RecoveryServices/vaults/copilot-testing\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus2\",\"name\":\"raghav-cmk-test\",\"etag\":\"W/\\\"datetime'2025-09-03T06%3A45%3A51.3661029Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raghavchugh-westus2/providers/Microsoft.RecoveryServices/vaults/raghav-cmk-test\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus2\",\"name\":\"vepothir-cli\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A33%3A40.5374134Z'\\\"\",\"tags\":{\"CreatedOn\":\"2025-06-28T13:53:39.4746169Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vepothir-rg-blobs/providers/Microsoft.RecoveryServices/vaults/vepothir-cli\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"westus2\",\"name\":\"vepothir-vault-afterSDK\",\"etag\":\"W/\\\"datetime'2025-09-18T05%3A02%3A53.4311421Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vepothir-rg-ram-sub/providers/Microsoft.RecoveryServices/vaults/vepothir-vault-afterSDK\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"uksouth\",\"name\":\"gvjreddy-test-uksouth-rsvault\",\"etag\":\"W/\\\"datetime'2025-08-14T12%3A46%3A41.6668982Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-test-uksouth-rsvault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"ukwest\",\"name\":\"tesdfstsesfda\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A15%3A14.160571Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":null,\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/afstests/providers/Microsoft.RecoveryServices/vaults/tesdfstsesfda\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"ukwest\",\"name\":\"akkanasePOC3\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A16%3A56.286708Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Disabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanase/providers/Microsoft.RecoveryServices/vaults/akkanasePOC3\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"australiacentral\",\"name\":\"VikasTest\",\"etag\":\"W/\\\"datetime'2025-08-14T09%3A57%3A20.3791045Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":null,\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adigupt-ecy-rg/providers/Microsoft.RecoveryServices/vaults/VikasTest\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"uaenorth\",\"name\":\"gvjreddy-test-uaen-cmk-vault\",\"etag\":\"W/\\\"datetime'2025-08-14T12%3A46%3A39.5134793Z'\\\"\",\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/gvjreddy-test-uaen-mi\":{\"clientId\":\"2aa0004a-3b79-41d8-b601-73e590930bdc\",\"principalId\":\"0a440beb-f8a1-4dae-a845-1b868b8b7f0e\"}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":{\"keyVaultProperties\":{\"keyUri\":\"https://gvjreddy-test-uaen-kv.vault.azure.net/keys/key-one\"},\"kekIdentity\":{\"useSystemAssignedIdentity\":false,\"userAssignedIdentity\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/gvjreddy-test-uaen-mi\"},\"infrastructureEncryption\":\"Disabled\"},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-test-uaen-cmk-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"germanywestcentral\",\"name\":\"gvjreddy-test-vault-gwc\",\"etag\":\"W/\\\"datetime'2025-08-14T12%3A46%3A44.6515021Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-test-vault-gwc\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"norwayeast\",\"name\":\"test\",\"etag\":\"W/\\\"datetime'2025-08-14T12%3A46%3A51.2137035Z'\\\"\",\"tags\":{\"Owner\":\"Kalyan\",\"DeleteBy\":\"06-2025\",\"Purpose\":\"Testing\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/test\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus3\",\"name\":\"akkanaseWestUS31\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A33%3A46.7834609Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseWestUS3/providers/Microsoft.RecoveryServices/vaults/akkanaseWestUS31\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus3\",\"name\":\"akkanaseWestUS310\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A33%3A47.7898869Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseWestUS3/providers/Microsoft.RecoveryServices/vaults/akkanaseWestUS310\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus3\",\"name\":\"akkanaseWestUS32\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A33%3A49.275038Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseWestUS3/providers/Microsoft.RecoveryServices/vaults/akkanaseWestUS32\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus3\",\"name\":\"akkanaseWestUS33\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A33%3A50.5473101Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseWestUS3/providers/Microsoft.RecoveryServices/vaults/akkanaseWestUS33\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus3\",\"name\":\"akkanaseWestUS34\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A33%3A50.5802974Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseWestUS3/providers/Microsoft.RecoveryServices/vaults/akkanaseWestUS34\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus3\",\"name\":\"akkanaseWestUS35\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A34%3A00.9763491Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseWestUS3/providers/Microsoft.RecoveryServices/vaults/akkanaseWestUS35\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus3\",\"name\":\"akkanaseWestUS36\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A34%3A01.5580174Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseWestUS3/providers/Microsoft.RecoveryServices/vaults/akkanaseWestUS36\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus3\",\"name\":\"akkanaseWestUS37\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A34%3A02.535458Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseWestUS3/providers/Microsoft.RecoveryServices/vaults/akkanaseWestUS37\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus3\",\"name\":\"akkanaseWestUS38\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A34%3A03.1141275Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseWestUS3/providers/Microsoft.RecoveryServices/vaults/akkanaseWestUS38\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus3\",\"name\":\"akkanaseWestUS39\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A34%3A04.0795755Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseWestUS3/providers/Microsoft.RecoveryServices/vaults/akkanaseWestUS39\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"swedencentral\",\"name\":\"vault556\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A23%3A38.6357684Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseCMK/providers/Microsoft.RecoveryServices/vaults/vault556\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"adkayeth\",\"etag\":\"W/\\\"datetime'2025-08-14T09%3A57%3A22.9814029Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/adkayeth\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"akkanaseTest3\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A02%3A24.4951376Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/akkanaseTest3/privateEndpointConnections/asdfsdf.1478300315814432514.backup.0c1534c1-7f33-4cfe-8dd6-a365c09421e3\",\"name\":\"asdfsdf.1478300315814432514.backup.0c1534c1-7f33-4cfe-8dd6-a365c09421e3\",\"type\":\"Microsoft.RecoveryServices/vaults/privateEndpointConnections\",\"location\":\"centraluseuap\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpoint\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.Network/privateEndpoints/asdfsdf\"},\"groupIds\":[\"AzureBackup\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"None\",\"actionsRequired\":\"None\"}}}],\"privateEndpointStateForBackup\":\"Enabled\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/akkanaseTest3\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"asfsdf\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A02%3A48.3435302Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/asfsdf/privateEndpointConnections/sd.8477350293666956969.backup.efb20ae6-8601-49e1-a272-f689db09ea8e\",\"name\":\"sd.8477350293666956969.backup.efb20ae6-8601-49e1-a272-f689db09ea8e\",\"type\":\"Microsoft.RecoveryServices/vaults/privateEndpointConnections\",\"location\":\"centraluseuap\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpoint\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.Network/privateEndpoints/sd\"},\"groupIds\":[\"AzureBackup\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"None\",\"actionsRequired\":\"None\"}}}],\"privateEndpointStateForBackup\":\"Enabled\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/asfsdf\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"Donotuse-afscrr-ea-vault\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A06%3A42.3487502Z'\\\"\",\"tags\":{\"Mab + UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cmk.system/providers/microsoft.managedidentity/userassignedidentities/identity1\":{\"clientId\":\"73571b84-6f37-4bdd-a60f-1121cb5d31d7\",\"principalId\":\"13a05d1f-eae9-47ae-944f-46270c95d12e\"}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":{\"keyVaultProperties\":{\"keyUri\":\"https://akkanasecmk1.vault.azure.net/keys/testKey\"},\"kekIdentity\":{\"useSystemAssignedIdentity\":true,\"userAssignedIdentity\":null},\"infrastructureEncryption\":\"Enabled\"},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseCMK/providers/Microsoft.RecoveryServices/vaults/test1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus\",\"name\":\"akkanaseTestfad\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A26%3A35.7536224Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseTest/providers/Microsoft.RecoveryServices/vaults/akkanaseTestfad\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus\",\"name\":\"amansha-ctr-rsv-1\",\"etag\":\"W/\\\"datetime'2026-06-03T06%3A23%3A56.8331073Z'\\\"\",\"tags\":{\"ManagerAlias\":\"vepothir\",\"DeleteBy\":\"02-2029\",\"Purpose\":\"Testing\",\"Owner\":\"amansha\",\"azsecpack\":\"nonprod\",\"platformsettings.host_environment.service.platform_optedin_for_rootcerts\":\"true\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amansha-rg/providers/Microsoft.RecoveryServices/vaults/amansha-ctr-rsv-1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"westus\",\"name\":\"amansha-ctr-rsv-prod-target-1\",\"etag\":\"W/\\\"datetime'2026-06-03T12%3A19%3A58.812467Z'\\\"\",\"tags\":{\"ManagerAlias\":\"vepothir\",\"DeleteBy\":\"02-2029\",\"Purpose\":\"Testing\",\"Owner\":\"amansha\",\"azsecpack\":\"nonprod\",\"platformsettings.host_environment.service.platform_optedin_for_rootcerts\":\"true\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amansha-rg/providers/Microsoft.RecoveryServices/vaults/amansha-ctr-rsv-prod-target-1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"westus\",\"name\":\"crrclitestvault\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A54%3A55.9111418Z'\\\"\",\"tags\":{\"Owner\":\"akneema\",\"Purpose\":\"Testing\",\"MABUsed\":\"Yes\",\"DeleteBy\":\"12-9999\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-rg/providers/Microsoft.RecoveryServices/vaults/crrclitestvault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus\",\"name\":\"testvault\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A55%3A01.0392636Z'\\\"\",\"tags\":{\"Purpose\":\"Testing\",\"Owner\":\"akneema\",\"MABUsed\":\"Yes\",\"DeleteBy\":\"12-9999\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-rg-donotuse/providers/Microsoft.RecoveryServices/vaults/testvault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus\",\"name\":\"iaasvmsqlworkloadexistingvault3\",\"etag\":\"W/\\\"datetime'2025-08-14T15%3A03%3A44.2106635Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault3\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus\",\"name\":\"DonotUse-sapasedatabase-BVT-WestUS-Vault\",\"etag\":\"W/\\\"datetime'2026-05-12T08%3A27%3A34.9318935Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapase.workload/providers/Microsoft.RecoveryServices/vaults/DonotUse-sapasedatabase-BVT-WestUS-Vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus\",\"name\":\"saphana-clitest-vault2\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A10%3A47.8307987Z'\\\"\",\"tags\":{\"Owner\":\"akneema\",\"Purpose\":\"Testing\",\"DeleteBy\":\"12-9999\",\"MABUsed\":\"Yes\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/saphana-clitest-rg/providers/Microsoft.RecoveryServices/vaults/saphana-clitest-vault2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus\",\"name\":\"CopilotDemoVault\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A11%3A41.9055626Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/CopilotDemoVault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus\",\"name\":\"zwestusvault\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A34%3A53.5279513Z'\\\"\",\"tags\":{\"Owner\":\"zubairabid\",\"Purpose\":\"CRR + Testing\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zubairRG/providers/Microsoft.RecoveryServices/vaults/zwestusvault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"asdfsdf\",\"etag\":\"W/\\\"datetime'2025-08-14T09%3A56%3A49.340401Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/accessibility/providers/Microsoft.RecoveryServices/vaults/asdfsdf\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"vault432\",\"etag\":\"W/\\\"datetime'2025-11-11T06%3A40%3A24.2473433Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/accessibility/providers/Microsoft.RecoveryServices/vaults/vault432\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"adigupt-sql-archieve-vault\",\"etag\":\"W/\\\"datetime'2025-08-14T09%3A56%3A49.939061Z'\\\"\",\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"4c768a8a-6899-43cf-987d-8d4aaf231102\",\"type\":\"SystemAssigned, + UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzSecPackAutoConfigRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/AzSecPackAutoConfigUA-centraluseuap\":{\"clientId\":\"33ad67f7-e81a-403a-8874-7ca0f1e610ea\",\"principalId\":\"0a2484e3-df35-472e-a56f-9a83c91ec847\"}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":null,\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adigupt-east-us-rg/providers/Microsoft.RecoveryServices/vaults/adigupt-sql-archieve-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"testab\",\"etag\":\"W/\\\"datetime'2025-08-14T09%3A56%3A50.7336136Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adigupt-east-us-rg/providers/Microsoft.RecoveryServices/vaults/testab/privateEndpointConnections/testabc.3520943893222067065.backup.f32db09b-be28-4c27-9483-0c5dcd94b666\",\"name\":\"testabc.3520943893222067065.backup.f32db09b-be28-4c27-9483-0c5dcd94b666\",\"type\":\"Microsoft.RecoveryServices/vaults/privateEndpointConnections\",\"location\":\"eastus\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpoint\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adigupt-east-us-rg/providers/Microsoft.Network/privateEndpoints/testabc\"},\"groupIds\":[\"AzureBackup\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"None\",\"actionsRequired\":\"None\"}}}],\"privateEndpointStateForBackup\":\"Enabled\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adigupt-east-us-rg/providers/Microsoft.RecoveryServices/vaults/testab\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"eusvault\",\"etag\":\"W/\\\"datetime'2025-08-14T09%3A56%3A56.9540972Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adigupt-ecy-rg/providers/Microsoft.RecoveryServices/vaults/eusvault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"blobbackupvaulteus\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A03%3A42.2640495Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Disabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/blobbackupvaulteus\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"sdfafdf\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A05%3A36.5654553Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AdkayethBugbash/providers/Microsoft.RecoveryServices/vaults/sdfafdf\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"test123abc123\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A06%3A25.3438899Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AdkayethBugbash/providers/Microsoft.RecoveryServices/vaults/test123abc123\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"sdfsdfsdf\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A06%3A34.9704501Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayethImmutability/providers/Microsoft.RecoveryServices/vaults/sdfsdfsdf\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"Myclivault\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A14%3A59.531612Z'\\\"\",\"tags\":{\"MABUsed\":\"Yes\",\"Owner\":\"t-shjoshi\",\"Purpose\":\"Testing\",\"DeleteBy\":\"12-2099\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Disabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Disabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/afstests/providers/Microsoft.RecoveryServices/vaults/Myclivault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"akkanasePOC1\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A24%3A56.8223233Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanasePOC/providers/Microsoft.RecoveryServices/vaults/akkanasePOC1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"akkanaseTest2321\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A26%3A31.7082153Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":null,\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseTest/providers/Microsoft.RecoveryServices/vaults/akkanaseTest2321\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"amansha-CTR-prod\",\"etag\":\"W/\\\"datetime'2026-06-02T03%3A30%3A50.2557975Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amansha-rg/providers/Microsoft.RecoveryServices/vaults/amansha-CTR-prod\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"amit-replicated-item\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A43%3A27.1290441Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amitranjan/providers/Microsoft.RecoveryServices/vaults/amit-replicated-item\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"ankureustest2\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A43%3A32.715873Z'\\\"\",\"tags\":{\"Owner\":\"ankur\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurRG137/providers/Microsoft.RecoveryServices/vaults/ankureustest2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"RSV1110\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A58%3A48.7180252Z'\\\"\",\"tags\":{\"Owner\":\"ankur\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurRG137/providers/Microsoft.RecoveryServices/vaults/RSV1110\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"arohijain-backupvault\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A15%3A10.3115104Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/arohijain-rg/providers/Microsoft.RecoveryServices/vaults/arohijain-backupvault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"donotuse-v1workloadtest-bvt-ecy-cross-vault\",\"etag\":\"W/\\\"datetime'2025-08-14T12%3A31%3A12.9051615Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/donotuse-v1workloadtest-bvt-ecy-cross-rg/providers/Microsoft.RecoveryServices/vaults/donotuse-v1workloadtest-bvt-ecy-cross-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"sqlvaultf3ac75\",\"etag\":\"W/\\\"datetime'2025-08-14T12%3A31%3A13.2229797Z'\\\"\",\"tags\":{\"MAB + Used\":\"Yes\",\"Owner\":\"Workload Backup team;vintib\",\"Purpose\":\"WorkloadBackup-SwaggerTest\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dontusesqlrg/providers/Microsoft.RecoveryServices/vaults/sqlvaultf3ac75\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"gvjreddy-eus-time-based-immutability-202606091451\",\"etag\":\"W/\\\"datetime'2026-06-09T09%3A22%3A55.16501Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-eus-time-based-immutability-202606091451\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"gvjreddy-test-eus-vault\",\"etag\":\"W/\\\"datetime'2025-08-14T12%3A46%3A36.5183341Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":null,\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-test-eus-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"gvjreddy-test-vault-20230714-1416\",\"etag\":\"W/\\\"datetime'2025-08-14T12%3A46%3A43.0536182Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-test-vault-20230714-1416\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"hsrtest\",\"etag\":\"W/\\\"datetime'2025-08-14T12%3A46%3A52.1614382Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hanarg2/providers/Microsoft.RecoveryServices/vaults/hsrtest\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"hiaga-zrs-vault\",\"etag\":\"W/\\\"datetime'2025-09-16T04%3A25%3A54.3138917Z'\\\"\",\"tags\":{\"MABUsed\":\"yes\",\"Purpose\":\"testing\",\"Owner\":\"hiaga\",\"DeleteBy\":\"01-2099\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-zrs-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"hiagaAlerts1\",\"etag\":\"W/\\\"datetime'2025-08-14T12%3A46%3A57.4114527Z'\\\"\",\"tags\":{\"MABUsed\":\"yes\",\"Owner\":\"hiaga\",\"Purpose\":\"testing\",\"DeleteBy\":\"01-2099\"},\"identity\":{\"type\":\"None\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaAlerts1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"hiagaCRRDES-testvault\",\"etag\":\"W/\\\"datetime'2025-08-14T12%3A47%3A01.8059528Z'\\\"\",\"tags\":{\"MABUsed\":\"yes\",\"Owner\":\"hiaga\",\"Purpose\":\"testing\",\"DeleteBy\":\"01-2099\"},\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"2703a374-5394-4e85-ad37-c60a4711c97d\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":{\"keyVaultProperties\":{\"keyUri\":\"https://hiagakveus1.vault.azure.net/keys/hiagaKey\"},\"kekIdentity\":{\"useSystemAssignedIdentity\":true,\"userAssignedIdentity\":null},\"infrastructureEncryption\":\"Disabled\"},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaCRRDES-testvault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"hiagaVaultCredEUS\",\"etag\":\"W/\\\"datetime'2025-08-14T12%3A47%3A34.4833602Z'\\\"\",\"tags\":{\"MABUsed\":\"yes\",\"Owner\":\"hiaga\",\"Purpose\":\"testing\",\"DeleteBy\":\"01-2099\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVaultCredEUS\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"ianna-afs-vault-1\",\"etag\":\"W/\\\"datetime'2025-10-10T18%3A28%3A15.7228028Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iannafs-pstest-sa-rg-1/providers/Microsoft.RecoveryServices/vaults/ianna-afs-vault-1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"ianna-afs-vault2\",\"etag\":\"W/\\\"datetime'2026-06-15T09%3A47%3A12.2196746Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iannafs-pstest-sa-rg-2/providers/Microsoft.RecoveryServices/vaults/ianna-afs-vault2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"raghavTest\",\"etag\":\"W/\\\"datetime'2026-01-20T14%3A13%3A26.2404612Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raghavchugh-rg/providers/Microsoft.RecoveryServices/vaults/raghavTest\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"testVaultt\",\"etag\":\"W/\\\"datetime'2026-05-14T12%3A52%3A53.8609328Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raghavchugh-rg/providers/Microsoft.RecoveryServices/vaults/testVaultt\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"vaultCreatedWithEncryption\",\"etag\":\"W/\\\"datetime'2026-05-14T08%3A19%3A55.0505149Z'\\\"\",\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vault-create-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/raghavTestUami\":{\"clientId\":\"8f63409a-e751-4405-96fc-f66a350c87ac\",\"principalId\":\"9f029918-ab9b-4b8c-98e5-ba64aa12d3de\"}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":{\"keyVaultProperties\":{\"keyUri\":\"https://raghav-test-keyvault.vault.azure.net/keys/testUamiKey\"},\"kekIdentity\":{\"useSystemAssignedIdentity\":false,\"userAssignedIdentity\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vault-create-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/raghavTestUami\"},\"infrastructureEncryption\":\"Disabled\"},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raghavchugh-rg/providers/Microsoft.RecoveryServices/vaults/vaultCreatedWithEncryption\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"hotfixTest11\",\"etag\":\"W/\\\"datetime'2025-08-14T15%3A55%3A10.241975Z'\\\"\",\"tags\":{\"Owner\":\"ishanjindal\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redundancyTestingVault/providers/Microsoft.RecoveryServices/vaults/hotfixTest11\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"simran-tets\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A31%3A50.7584035Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/simran-test/providers/Microsoft.RecoveryServices/vaults/simran-tets\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"test\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A33%3A38.3690694Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vault-create-test-rg/providers/Microsoft.RecoveryServices/vaults/test\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"vepothir-del-10\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A34%3A01.6427991Z'\\\"\",\"tags\":{\"Owner\":\"vepothir\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vepothir-rg-ram-sub/providers/Microsoft.RecoveryServices/vaults/vepothir-del-10\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"vepothir-vault-eastUs-Functional-Testing-sub\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A34%3A02.4103616Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vepothir-rg-ram-sub/providers/Microsoft.RecoveryServices/vaults/vepothir-vault-eastUs-Functional-Testing-sub\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"vepothir122-3\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A34%3A00.9302054Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vepothir-rg-ram-sub/providers/Microsoft.RecoveryServices/vaults/vepothir122-3\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"rsv-prod-eus-001\",\"etag\":\"W/\\\"datetime'2025-12-23T11%3A17%3A02.32154Z'\\\"\",\"tags\":{\"Environment\":\"Production\",\"CostCenter\":\"IT\",\"Workload\":\"Backup\",\"DataClassification\":\"Confidential\"},\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"fdba3d19-f5a7-4573-929b-191421e311de\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":{\"keyVaultProperties\":{\"keyUri\":\"https://kv-prod-eus-001.vault.azure.net/keys/rsv-key/1234567890abcdef1234567890abcdef\"},\"kekIdentity\":{\"useSystemAssignedIdentity\":true,\"userAssignedIdentity\":null},\"infrastructureEncryption\":\"Enabled\"},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zubaireacan02/providers/Microsoft.RecoveryServices/vaults/rsv-prod-eus-001\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"northeurope\",\"name\":\"testing123\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A03%3A32.094997Z'\\\"\",\"tags\":{\"Owner\":\"ishanjindal\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redundancyTestingVault/providers/Microsoft.RecoveryServices/vaults/testing123\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westeurope\",\"name\":\"test435465\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A04%3A06.491094Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/test435465\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westeurope\",\"name\":\"akneema-we-vault\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A42%3A22.1019806Z'\\\"\",\"tags\":{\"Owner\":\"akneema\",\"Purpose\":\"Testing\",\"DeleteBy\":\"12-9999\",\"MABUsed\":\"Yes\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema-we-rg/providers/Microsoft.RecoveryServices/vaults/akneema-we-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westeurope\",\"name\":\"ankurVault1219\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A43%3A29.1024445Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurResourceGuard1/providers/Microsoft.RecoveryServices/vaults/ankurVault1219\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westeurope\",\"name\":\"ankurVault12191\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A43%3A29.5703948Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurResourceGuard1/providers/Microsoft.RecoveryServices/vaults/ankurVault12191\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westeurope\",\"name\":\"ankurVault121911\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A43%3A30.4604951Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurResourceGuard1/providers/Microsoft.RecoveryServices/vaults/ankurVault121911\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westeurope\",\"name\":\"ankurVault121911219\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A43%3A31.1783504Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurResourceGuard1/providers/Microsoft.RecoveryServices/vaults/ankurVault121911219\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westeurope\",\"name\":\"dmbvtsource222\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A55%3A44.9240182Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmbvtrgwe222/providers/Microsoft.RecoveryServices/vaults/dmbvtsource222\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"westeurope\",\"name\":\"dmbvtsource907\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A56%3A17.9225318Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmbvtrgwe907/providers/Microsoft.RecoveryServices/vaults/dmbvtsource907\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"westeurope\",\"name\":\"gvjreddy-test-vault-we\",\"etag\":\"W/\\\"datetime'2025-08-14T12%3A46%3A46.9760078Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":null,\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-test-vault-we\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westeurope\",\"name\":\"gvjreddy-test-we-vault-tbd\",\"etag\":\"W/\\\"datetime'2025-08-14T12%3A46%3A48.8468163Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-test-we-vault-tbd\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westeurope\",\"name\":\"rsv-payas\",\"etag\":\"W/\\\"datetime'2025-08-14T15%3A43%3A09.2031199Z'\\\"\",\"tags\":{\"Owner\":\"payalsinghal\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/payalsinghal/providers/Microsoft.RecoveryServices/vaults/rsv-payas\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"akkanaseTestabc\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A26%3A33.9173102Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseTest/providers/Microsoft.RecoveryServices/vaults/akkanaseTestabc\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"seavault\",\"etag\":\"W/\\\"datetime'2025-10-14T05%3A59%3A56.1285916Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amitranjan/providers/Microsoft.RecoveryServices/vaults/seavault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"amitsae\",\"etag\":\"W/\\\"datetime'2025-10-21T07%3A16%3A24.9192532Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amitranjansae/providers/Microsoft.RecoveryServices/vaults/amitsae\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"mkheranizrs\",\"etag\":\"W/\\\"datetime'2025-08-14T15%3A42%3A11.293903Z'\\\"\",\"tags\":{\"Owner\":\"mkherani\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mkherani/providers/Microsoft.RecoveryServices/vaults/mkheranizrs\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"japaneast\",\"name\":\"testPe\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A32%3A26.1328588Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_japaneast_1/providers/Microsoft.RecoveryServices/vaults/testPe/privateEndpointConnections/akkanaseTest.1623882292348111020.backup.f808191e-870e-4908-b2aa-7e6673b76a80\",\"name\":\"akkanaseTest.1623882292348111020.backup.f808191e-870e-4908-b2aa-7e6673b76a80\",\"type\":\"Microsoft.RecoveryServices/vaults/privateEndpointConnections\",\"location\":\"japaneast\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpoint\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_japaneast_1/providers/Microsoft.Network/privateEndpoints/akkanaseTest\"},\"groupIds\":[\"AzureBackup\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"None\",\"actionsRequired\":\"None\"}}}],\"privateEndpointStateForBackup\":\"Enabled\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_japaneast_1/providers/Microsoft.RecoveryServices/vaults/testPe\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"japaneast\",\"name\":\"vault142\",\"etag\":\"W/\\\"datetime'2025-08-14T15%3A44%3A07.1695084Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prnookal-prod/providers/Microsoft.RecoveryServices/vaults/vault142\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"japaneast\",\"name\":\"vault335\",\"etag\":\"W/\\\"datetime'2025-08-14T15%3A45%3A11.6496781Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prnookal-prod/providers/Microsoft.RecoveryServices/vaults/vault335\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2\",\"name\":\"akkanaseTest321\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A02%3A27.8429629Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/akkanaseTest321\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2\",\"name\":\"akkanaseTest3215\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A02%3A31.5029507Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/akkanaseTest3215\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2\",\"name\":\"akkanaseTest3232\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A02%3A32.619067Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/akkanaseTest3232\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2\",\"name\":\"blobbackupeus2\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A03%3A38.7595796Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Disabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Disabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/blobbackupeus2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2\",\"name\":\"test321231\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A04%3A05.4068946Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/test321231\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2\",\"name\":\"akkanaseTest32\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A12%3A09.0423473Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/afstests/providers/Microsoft.RecoveryServices/vaults/akkanaseTest32\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2\",\"name\":\"akkanaseTest132123\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A26%3A30.9885737Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseTest/providers/Microsoft.RecoveryServices/vaults/akkanaseTest132123\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2\",\"name\":\"akkanaseTest543\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A26%3A32.8235247Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseTest/providers/Microsoft.RecoveryServices/vaults/akkanaseTest543\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2\",\"name\":\"asfaf\",\"etag\":\"W/\\\"datetime'2025-09-17T07%3A51%3A28.2155491Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amitranjan/providers/Microsoft.RecoveryServices/vaults/asfaf\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2\",\"name\":\"nonZRSVault\",\"etag\":\"W/\\\"datetime'2026-02-20T05%3A36%3A11.2470685Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoohana/providers/Microsoft.RecoveryServices/vaults/nonZRSVault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2\",\"name\":\"zrsVault3\",\"etag\":\"W/\\\"datetime'2026-02-19T06%3A41%3A42.2939634Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoohana/providers/Microsoft.RecoveryServices/vaults/zrsVault3\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2\",\"name\":\"testing11\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A03%3A30.8806986Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redundancyTestingVault/providers/Microsoft.RecoveryServices/vaults/testing11\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2\",\"name\":\"sarathhanalargedbtargetvault\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A15%3A57.7823186Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarathhanalargedbtargetvault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centralindia\",\"name\":\"aa124\",\"etag\":\"W/\\\"datetime'2026-02-24T06%3A54%3A35.1709772Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoohana/providers/Microsoft.RecoveryServices/vaults/aa124\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centralindia\",\"name\":\"mkheranidesktopbackup\",\"etag\":\"W/\\\"datetime'2025-08-14T15%3A42%3A26.1191469Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mkheranibackup/providers/Microsoft.RecoveryServices/vaults/mkheranidesktopbackup\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southindia\",\"name\":\"akkanaseTest32146\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A02%3A30.3055455Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/akkanaseTest32146\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southindia\",\"name\":\"SouthIndia123\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A03%3A50.0343807Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/SouthIndia123\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southindia\",\"name\":\"mkheranilaptop\",\"etag\":\"W/\\\"datetime'2025-08-14T15%3A43%3A01.4719623Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mkheranibackup/providers/Microsoft.RecoveryServices/vaults/mkheranilaptop\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westindia\",\"name\":\"adkamuamfa\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A06%3A49.9663385Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/afstests/providers/Microsoft.RecoveryServices/vaults/adkamuamfa\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westindia\",\"name\":\"akkanaseTest124\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A26%3A29.5589913Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseTest/providers/Microsoft.RecoveryServices/vaults/akkanaseTest124\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westcentralus\",\"name\":\"amansha-ctr-rsv-src-lac-wcus-1\",\"etag\":\"W/\\\"datetime'2026-06-05T11%3A43%3A11.8204705Z'\\\"\",\"tags\":{\"ManagerAlias\":\"vepothir\",\"DeleteBy\":\"02-2029\",\"Purpose\":\"Testing\",\"Owner\":\"amansha\",\"azsecpack\":\"nonprod\",\"platformsettings.host_environment.service.platform_optedin_for_rootcerts\":\"true\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amansha-rg/providers/Microsoft.RecoveryServices/vaults/amansha-ctr-rsv-src-lac-wcus-1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"westcentralus\",\"name\":\"amansha-ctr-rsv-src-wcus-1\",\"etag\":\"W/\\\"datetime'2026-06-05T08%3A17%3A27.1696478Z'\\\"\",\"tags\":{\"ManagerAlias\":\"vepothir\",\"DeleteBy\":\"02-2029\",\"Purpose\":\"Testing\",\"Owner\":\"amansha\",\"azsecpack\":\"nonprod\",\"platformsettings.host_environment.service.platform_optedin_for_rootcerts\":\"true\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amansha-rg/providers/Microsoft.RecoveryServices/vaults/amansha-ctr-rsv-src-wcus-1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"westcentralus\",\"name\":\"amansha-tbi-wcus-rsv\",\"etag\":\"W/\\\"datetime'2026-06-18T23%3A04%3A25.3262817Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amansha-rg/providers/Microsoft.RecoveryServices/vaults/amansha-tbi-wcus-rsv\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westcentralus\",\"name\":\"mkheraniabclgrsv\",\"etag\":\"W/\\\"datetime'2025-08-14T15%3A42%3A17.2470764Z'\\\"\",\"tags\":{\"Owner\":\"mkherani\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mkheraniabclonghaul/providers/Microsoft.RecoveryServices/vaults/mkheraniabclgrsv\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westcentralus\",\"name\":\"vault177\",\"etag\":\"W/\\\"datetime'2025-08-14T15%3A45%3A12.3200534Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prnookal-wcus/providers/Microsoft.RecoveryServices/vaults/vault177\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus2\",\"name\":\"adkTestVault\",\"etag\":\"W/\\\"datetime'2025-08-14T09%3A57%3A26.6668359Z'\\\"\",\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"6034d1e5-7135-44c0-87b0-a63ef3249374\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Disabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/adkTestVault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus2\",\"name\":\"akkanase\",\"etag\":\"W/\\\"datetime'2025-08-14T09%3A57%3A30.8952665Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/akkanase\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus2\",\"name\":\"akkanaseTes3t32\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A02%3A15.9484593Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/akkanaseTes3t32\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus2\",\"name\":\"akkanaseTest1\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A02%3A20.0175893Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/akkanaseTest1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus2\",\"name\":\"akkanaseTest1231\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A02%3A22.1273236Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/akkanaseTest1231\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus2\",\"name\":\"akkanaseTestdf\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A02%3A37.3385227Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/akkanaseTestdf\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus2\",\"name\":\"NewVault32\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A03%3A45.7072734Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/NewVault32\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus2\",\"name\":\"SSSSS\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A03%3A51.686017Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Disabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/SSSSS\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus2\",\"name\":\"test123Akash\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A04%3A03.3428252Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/test123Akash\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus2\",\"name\":\"test54342\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A04%3A20.4855399Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/test54342\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus2\",\"name\":\"testabcdaef\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A04%3A35.917768Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/testabcdaef\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus2\",\"name\":\"xxzc\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A05%3A25.1495616Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Disabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Disabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/xxzc\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus2\",\"name\":\"Amit1\",\"etag\":\"W/\\\"datetime'2026-01-11T19%3A57%3A40.4769506Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amitranjan/providers/Microsoft.RecoveryServices/vaults/Amit1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus2\",\"name\":\"copilot-testing\",\"etag\":\"W/\\\"datetime'2025-08-14T13%3A02%3A48.8777062Z'\\\"\",\"tags\":{\"AutoAddedTagsSpendMgmt\":\"Owner\",\"Owner\":\"akkanase\",\"CreatedOn\":\"2025-06-27T05:38:54.6130913Z\"},\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagarg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cmk-pstest-msi1\":{\"clientId\":\"cc17dc91-0ffc-41c4-9f4b-b7b61fa9f4e8\",\"principalId\":\"79e6360a-251c-4431-b817-a7fff3ac5c91\"}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":{\"keyVaultProperties\":{\"keyUri\":\"https://cmk-pstest-keyvault.vault.azure.net/keys/cmk-pstest-key/5569d5a163ee474cad2da4ac334af9d7\"},\"kekIdentity\":{\"useSystemAssignedIdentity\":false,\"userAssignedIdentity\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagarg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cmk-pstest-msi1\"},\"infrastructureEncryption\":\"Enabled\"},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvm.vmbackup-eastasia/providers/Microsoft.RecoveryServices/vaults/copilot-testing\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus2\",\"name\":\"raghav-cmk-test\",\"etag\":\"W/\\\"datetime'2025-09-03T06%3A45%3A51.3661029Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raghavchugh-westus2/providers/Microsoft.RecoveryServices/vaults/raghav-cmk-test\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus2\",\"name\":\"vepothir-cli\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A33%3A40.5374134Z'\\\"\",\"tags\":{\"CreatedOn\":\"2025-06-28T13:53:39.4746169Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vepothir-rg-blobs/providers/Microsoft.RecoveryServices/vaults/vepothir-cli\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"westus2\",\"name\":\"vepothir-vault-afterSDK\",\"etag\":\"W/\\\"datetime'2025-09-18T05%3A02%3A53.4311421Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vepothir-rg-ram-sub/providers/Microsoft.RecoveryServices/vaults/vepothir-vault-afterSDK\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"uksouth\",\"name\":\"gvjreddy-test-uksouth-rsvault\",\"etag\":\"W/\\\"datetime'2025-08-14T12%3A46%3A41.6668982Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-test-uksouth-rsvault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"ukwest\",\"name\":\"tesdfstsesfda\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A15%3A14.160571Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":null,\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/afstests/providers/Microsoft.RecoveryServices/vaults/tesdfstsesfda\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"ukwest\",\"name\":\"akkanasePOC3\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A16%3A56.286708Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Disabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanase/providers/Microsoft.RecoveryServices/vaults/akkanasePOC3\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"australiacentral\",\"name\":\"VikasTest\",\"etag\":\"W/\\\"datetime'2025-08-14T09%3A57%3A20.3791045Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":null,\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adigupt-ecy-rg/providers/Microsoft.RecoveryServices/vaults/VikasTest\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"uaenorth\",\"name\":\"gvjreddy-test-uaen-cmk-vault\",\"etag\":\"W/\\\"datetime'2025-08-14T12%3A46%3A39.5134793Z'\\\"\",\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/gvjreddy-test-uaen-mi\":{\"clientId\":\"2aa0004a-3b79-41d8-b601-73e590930bdc\",\"principalId\":\"0a440beb-f8a1-4dae-a845-1b868b8b7f0e\"}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":{\"keyVaultProperties\":{\"keyUri\":\"https://gvjreddy-test-uaen-kv.vault.azure.net/keys/key-one\"},\"kekIdentity\":{\"useSystemAssignedIdentity\":false,\"userAssignedIdentity\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/gvjreddy-test-uaen-mi\"},\"infrastructureEncryption\":\"Disabled\"},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-test-uaen-cmk-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"germanywestcentral\",\"name\":\"gvjreddy-test-vault-gwc\",\"etag\":\"W/\\\"datetime'2025-08-14T12%3A46%3A44.6515021Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-test-vault-gwc\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"norwayeast\",\"name\":\"test\",\"etag\":\"W/\\\"datetime'2025-08-14T12%3A46%3A51.2137035Z'\\\"\",\"tags\":{\"Owner\":\"Kalyan\",\"DeleteBy\":\"06-2025\",\"Purpose\":\"Testing\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/test\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus3\",\"name\":\"vepothir-test-immu\",\"etag\":\"W/\\\"datetime'2026-04-20T09%3A51%3A36.0447781Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Disabled\",\"emailNotificationsForSiteRecovery\":\"Disabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vepothir-rg-blobs/providers/Microsoft.RecoveryServices/vaults/vepothir-test-immu\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"swedencentral\",\"name\":\"vault556\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A23%3A38.6357684Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseCMK/providers/Microsoft.RecoveryServices/vaults/vault556\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"adkayeth\",\"etag\":\"W/\\\"datetime'2025-08-14T09%3A57%3A22.9814029Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/adkayeth\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"akkanaseTest3\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A02%3A24.4951376Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/akkanaseTest3/privateEndpointConnections/asdfsdf.1478300315814432514.backup.0c1534c1-7f33-4cfe-8dd6-a365c09421e3\",\"name\":\"asdfsdf.1478300315814432514.backup.0c1534c1-7f33-4cfe-8dd6-a365c09421e3\",\"type\":\"Microsoft.RecoveryServices/vaults/privateEndpointConnections\",\"location\":\"centraluseuap\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpoint\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.Network/privateEndpoints/asdfsdf\"},\"groupIds\":[\"AzureBackup\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"None\",\"actionsRequired\":\"None\"}}}],\"privateEndpointStateForBackup\":\"Enabled\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/akkanaseTest3\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"asfsdf\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A02%3A48.3435302Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/asfsdf/privateEndpointConnections/sd.8477350293666956969.backup.efb20ae6-8601-49e1-a272-f689db09ea8e\",\"name\":\"sd.8477350293666956969.backup.efb20ae6-8601-49e1-a272-f689db09ea8e\",\"type\":\"Microsoft.RecoveryServices/vaults/privateEndpointConnections\",\"location\":\"centraluseuap\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpoint\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.Network/privateEndpoints/sd\"},\"groupIds\":[\"AzureBackup\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"None\",\"actionsRequired\":\"None\"}}}],\"privateEndpointStateForBackup\":\"Enabled\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/asfsdf\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"rtyuuu\",\"etag\":\"W/\\\"datetime'2025-11-23T06%3A41%3A48.6682026Z'\\\"\",\"tags\":{\"Purpose\":\"Testing\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/rtyuuu\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"Donotuse-afscrr-ea-vault\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A06%3A42.3487502Z'\\\"\",\"tags\":{\"Mab Used\":\"BVT\",\"Purpose\":\"BVT\",\"DeleteBy\":\"10-2099\",\"Owner\":\"akkanase\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/afs.existing.crr/providers/Microsoft.RecoveryServices/vaults/Donotuse-afscrr-ea-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"Donotuse-afscrr-vault\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A06%3A44.2175477Z'\\\"\",\"tags\":{\"Mab Used\":\"Yes\",\"Owner\":\"akkanase\",\"DeleteBy\":\"10-2099\",\"Purpose\":\"BVT\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/afs.existing.crr/providers/Microsoft.RecoveryServices/vaults/Donotuse-afscrr-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"afsCrrBugBas1\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A06%3A44.7153644Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/afsCrrBugbash/providers/Microsoft.RecoveryServices/vaults/afsCrrBugBas1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"akkansaeTest\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A12%3A14.3515517Z'\\\"\",\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shracrg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/myIdentity\":{\"clientId\":\"49b3f58a-3f0d-430d-9103-8715b6aba099\",\"principalId\":\"bf88407d-d96f-49ee-a7f7-fc6685c98135\"}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":{\"keyVaultProperties\":{\"keyUri\":\"https://akkanasecmktest1.vault.azure.net/keys/Test\"},\"kekIdentity\":{\"useSystemAssignedIdentity\":false,\"userAssignedIdentity\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shracrg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/myIdentity\"},\"infrastructureEncryption\":\"Disabled\"},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/afstests/providers/Microsoft.RecoveryServices/vaults/akkansaeTest\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"asfd\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A12%3A19.7210428Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/afstests/providers/Microsoft.RecoveryServices/vaults/asfd/privateEndpointConnections/test.6927996346535761120.backup.fa0b4e23-7ae2-40b9-b68e-edc9e4677d08\",\"name\":\"test.6927996346535761120.backup.fa0b4e23-7ae2-40b9-b68e-edc9e4677d08\",\"type\":\"Microsoft.RecoveryServices/vaults/privateEndpointConnections\",\"location\":\"centraluseuap\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpoint\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/afstests/providers/Microsoft.Network/privateEndpoints/test\"},\"groupIds\":[\"AzureBackup\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"None\",\"actionsRequired\":\"None\"}}}],\"privateEndpointStateForBackup\":\"Enabled\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Disabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/afstests/providers/Microsoft.RecoveryServices/vaults/asfd\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"akkaanseLRS1\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A16%3A34.2740627Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanase/providers/Microsoft.RecoveryServices/vaults/akkaanseLRS1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"akkanaseCMKTest1\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A23%3A44.6288983Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanase-diskaccess/providers/Microsoft.RecoveryServices/vaults/akkanaseCMKTest1/privateEndpointConnections/akkanaseTestPe123.5541240607189969450.backup.a3b065e4-7afa-4286-a58e-aa62b1b9d1b1\",\"name\":\"akkanaseTestPe123.5541240607189969450.backup.a3b065e4-7afa-4286-a58e-aa62b1b9d1b1\",\"type\":\"Microsoft.RecoveryServices/vaults/privateEndpointConnections\",\"location\":\"centraluseuap\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpoint\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanase-diskaccess/providers/Microsoft.Network/privateEndpoints/akkanaseTestPe123\"},\"groupIds\":[\"AzureBackup\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"None\",\"actionsRequired\":\"None\"}}}],\"privateEndpointStateForBackup\":\"Enabled\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanase-diskaccess/providers/Microsoft.RecoveryServices/vaults/akkanaseCMKTest1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"akkanaseTest\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A24%3A02.7971679Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanase-diskaccess/providers/Microsoft.RecoveryServices/vaults/akkanaseTest/privateEndpointConnections/akkanaseTest.7977748719610652385.backup.dfffcee4-1521-4b4b-bdad-16b40b5be22a\",\"name\":\"akkanaseTest.7977748719610652385.backup.dfffcee4-1521-4b4b-bdad-16b40b5be22a\",\"type\":\"Microsoft.RecoveryServices/vaults/privateEndpointConnections\",\"location\":\"centraluseuap\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpoint\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanase-diskaccess/providers/Microsoft.Network/privateEndpoints/akkanaseTest\"},\"groupIds\":[\"AzureBackup\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"None\",\"actionsRequired\":\"None\"}}}],\"privateEndpointStateForBackup\":\"Enabled\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanase-diskaccess/providers/Microsoft.RecoveryServices/vaults/akkanaseTest\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"akkanaseTest321\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A24%3A08.4573281Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanase-diskaccess/providers/Microsoft.RecoveryServices/vaults/akkanaseTest321/privateEndpointConnections/akashpe.1705700632660548520.backup.d80ff95d-0079-4b08-8492-81192cca5386\",\"name\":\"akashpe.1705700632660548520.backup.d80ff95d-0079-4b08-8492-81192cca5386\",\"type\":\"Microsoft.RecoveryServices/vaults/privateEndpointConnections\",\"location\":\"centraluseuap\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpoint\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanase-diskaccess/providers/Microsoft.Network/privateEndpoints/akashpe\"},\"groupIds\":[\"AzureBackup\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"None\",\"actionsRequired\":\"None\"}}}],\"privateEndpointStateForBackup\":\"Enabled\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanase-diskaccess/providers/Microsoft.RecoveryServices/vaults/akkanaseTest321\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"akkanaseTest\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A21%3A55.9228855Z'\\\"\",\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"5fbb8984-ea88-4467-bcba-3d5065224bd7\",\"type\":\"SystemAssigned, - UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/hiagaczr-rg/providers/microsoft.managedidentity/userassignedidentities/hiagauseridentity\":{\"clientId\":\"05a1da4a-ee20-42b9-94de-72175caa42bb\",\"principalId\":\"af96ebe9-5ed3-4753-9849-c314ddc1150c\"},\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/container_softdelete/providers/Microsoft.ManagedIdentity/userAssignedIdentities/adigupt\":{\"clientId\":\"2764e801-c368-49ba-b8af-3cb5761db993\",\"principalId\":\"955f634e-31df-4df5-8692-cee6ca4f4e8a\"}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseCcyGrs/providers/Microsoft.RecoveryServices/vaults/akkanaseTest\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"akkanaseTest123\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A21%3A57.4691016Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseCcyGrs/providers/Microsoft.RecoveryServices/vaults/akkanaseTest123/privateEndpointConnections/testAkkanase.6763488043549574973.backup.26dd9d9e-5fac-4d91-86c4-6c86c3e14f15\",\"name\":\"testAkkanase.6763488043549574973.backup.26dd9d9e-5fac-4d91-86c4-6c86c3e14f15\",\"type\":\"Microsoft.RecoveryServices/vaults/privateEndpointConnections\",\"location\":\"centraluseuap\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpoint\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseCcyGrs/providers/Microsoft.Network/privateEndpoints/testAkkanase\"},\"groupIds\":[\"AzureBackup\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"None\",\"actionsRequired\":\"None\"}}}],\"privateEndpointStateForBackup\":\"Enabled\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseCcyGrs/providers/Microsoft.RecoveryServices/vaults/akkanaseTest123\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"akkanaseCMK\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A23%3A22.994835Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"9b8d9f7f-3081-4e65-80d3-f53d2c0de284\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":{\"keyVaultProperties\":{\"keyUri\":\"https://akkansehsmtest.vault.azure.net/keys/test1233\"},\"kekIdentity\":{\"useSystemAssignedIdentity\":true,\"userAssignedIdentity\":null},\"infrastructureEncryption\":\"Disabled\"},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseCMK/providers/Microsoft.RecoveryServices/vaults/akkanaseCMK\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"akkanaseCMK1\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A23%3A24.743162Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"89ad7ce4-46cd-4581-af4f-682e71cb40bc\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseCMK/providers/Microsoft.RecoveryServices/vaults/akkanaseCMK1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"akkanaseTest2\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A23%3A32.1825168Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"e3b70927-d49d-4c84-adac-ac673e8b79e1\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":{\"keyVaultProperties\":{\"keyUri\":\"https://akkansehsmtest.vault.azure.net/keys/key123\"},\"kekIdentity\":{\"useSystemAssignedIdentity\":true,\"userAssignedIdentity\":null},\"infrastructureEncryption\":\"Disabled\"},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseCMK/providers/Microsoft.RecoveryServices/vaults/akkanaseTest2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"test123asdsf\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A23%3A36.9028024Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseCMK/providers/Microsoft.RecoveryServices/vaults/test123asdsf\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"akkanaseAkash1\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A25%3A17.8288719Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseTest/providers/Microsoft.RecoveryServices/vaults/akkanaseAkash1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"akkanaseMSI\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A25%3A18.8862314Z'\\\"\",\"identity\":{\"type\":\"None\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseTest/providers/Microsoft.RecoveryServices/vaults/akkanaseMSI\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"akkanaseTest1234\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A26%3A28.2072816Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseTest/providers/Microsoft.RecoveryServices/vaults/akkanaseTest1234\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"akkanaseTest12sdf\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A26%3A30.1806516Z'\\\"\",\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cmk.system/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identity1\":{\"clientId\":\"73571b84-6f37-4bdd-a60f-1121cb5d31d7\",\"principalId\":\"13a05d1f-eae9-47ae-944f-46270c95d12e\"}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseTest/providers/Microsoft.RecoveryServices/vaults/akkanaseTest12sdf/privateEndpointConnections/akkanaseTest123.7874099994692673002.backup.7e26ee6a-554d-4fa8-a70e-09fee5ae5b94\",\"name\":\"akkanaseTest123.7874099994692673002.backup.7e26ee6a-554d-4fa8-a70e-09fee5ae5b94\",\"type\":\"Microsoft.RecoveryServices/vaults/privateEndpointConnections\",\"location\":\"centraluseuap\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpoint\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseTest/providers/Microsoft.Network/privateEndpoints/akkanaseTest123\"},\"groupIds\":[\"AzureBackup\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"None\",\"actionsRequired\":\"None\"}}}],\"privateEndpointStateForBackup\":\"Enabled\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":{\"keyVaultProperties\":{\"keyUri\":\"https://akkansehsmtest.vault.azure.net/keys/key123\"},\"kekIdentity\":{\"useSystemAssignedIdentity\":false,\"userAssignedIdentity\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cmk.system/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identity1\"},\"infrastructureEncryption\":\"Disabled\"},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseTest/providers/Microsoft.RecoveryServices/vaults/akkanaseTest12sdf\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"akkanaseTest3\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A31%3A43.0246266Z'\\\"\",\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_adkayeth_adkayethAAD_eastus2euap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/adkayethAAD-agentpool\":{\"clientId\":\"fe6d65f6-2d13-4460-a7d4-37338eeadb3a\",\"principalId\":\"c8a00157-361a-46b9-a9dc-72c8caff7afe\"}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":{\"keyVaultProperties\":{\"keyUri\":\"https://akkanasecmktest1.vault.azure.net/keys/test123\"},\"kekIdentity\":{\"useSystemAssignedIdentity\":false,\"userAssignedIdentity\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_adkayeth_adkayethAAD_eastus2euap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/adkayethAAD-agentpool\"},\"infrastructureEncryption\":\"Disabled\"},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseTest1/providers/Microsoft.RecoveryServices/vaults/akkanaseTest3\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"akkanaseIndia\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A31%3A45.3414843Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseTest2/providers/Microsoft.RecoveryServices/vaults/akkanaseIndia/privateEndpointConnections/vxzvx.8287073220565965330.backup.2a05a7c4-564b-458b-88a2-e142e1e43a18\",\"name\":\"vxzvx.8287073220565965330.backup.2a05a7c4-564b-458b-88a2-e142e1e43a18\",\"type\":\"Microsoft.RecoveryServices/vaults/privateEndpointConnections\",\"location\":\"centraluseuap\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpoint\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseTest2/providers/Microsoft.Network/privateEndpoints/vxzvx\"},\"groupIds\":[\"AzureBackup\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"None\",\"actionsRequired\":\"None\"}}}],\"privateEndpointStateForBackup\":\"Enabled\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseTest2/providers/Microsoft.RecoveryServices/vaults/akkanaseIndia\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"akneema-pe-vault-ccy\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A35%3A15.2198371Z'\\\"\",\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"f1193149-0ba0-4d6c-9ada-44fb1791ecd8\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-pe-vault-ccy\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"akneema-vault\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A35%3A20.5395122Z'\\\"\",\"tags\":{\"Owner\":\"akneema\",\"Purpose\":\"Testing\",\"DeleteBy\":\"12-9999\",\"MABUsed\":\"Yes\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Disabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"akneemavault\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A35%3A17.4998393Z'\\\"\",\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"84b1c8fc-28b0-477e-b6a5-2af16999fe58\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneemavault/privateEndpointConnections/akneemape.5725812072430978587.backup.e911a862-8697-4593-b107-0d8388e0b195\",\"name\":\"akneemape.5725812072430978587.backup.e911a862-8697-4593-b107-0d8388e0b195\",\"type\":\"Microsoft.RecoveryServices/vaults/privateEndpointConnections\",\"location\":\"centraluseuap\",\"properties\":{\"provisioningState\":\"Failed\",\"privateEndpoint\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.Network/privateEndpoints/akneemape\"},\"groupIds\":[\"AzureBackup\"],\"privateLinkServiceConnectionState\":{\"status\":\"Rejected\",\"description\":\"Rejected!\",\"actionsRequired\":\"None\"}}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneemavault/privateEndpointConnections/akneemape2.5725812072430978587.backup.ad373f61-9bdc-4bab-8e59-3066b4492c15\",\"name\":\"akneemape2.5725812072430978587.backup.ad373f61-9bdc-4bab-8e59-3066b4492c15\",\"type\":\"Microsoft.RecoveryServices/vaults/privateEndpointConnections\",\"location\":\"centraluseuap\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpoint\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.Network/privateEndpoints/akneemape2\"},\"groupIds\":[\"AzureBackup\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"None\",\"actionsRequired\":\"None\"}}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneemavault/privateEndpointConnections/akneemape3.5725812072430978587.backup.03188b6a-f02a-4a77-873e-b4f116d016da\",\"name\":\"akneemape3.5725812072430978587.backup.03188b6a-f02a-4a77-873e-b4f116d016da\",\"type\":\"Microsoft.RecoveryServices/vaults/privateEndpointConnections\",\"location\":\"centraluseuap\",\"properties\":{\"provisioningState\":\"Failed\",\"privateEndpoint\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.Network/privateEndpoints/akneemape3\"},\"groupIds\":[\"AzureBackup\"],\"privateLinkServiceConnectionState\":{\"status\":\"Rejected\",\"description\":\"Rejected!\",\"actionsRequired\":\"None\"}}}],\"privateEndpointStateForBackup\":\"Enabled\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneemavault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"akneemavault2\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A35%3A21.4893455Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneemavault2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"srikant123crr\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A42%3A17.4492441Z'\\\"\",\"tags\":{\"Owner\":\"adigupt\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/srikant123crr\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"testvault\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A42%3A19.3120676Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/testvault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"amchandnrsv2\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A42%3A24.0054667Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amchandnccy/providers/Microsoft.RecoveryServices/vaults/amchandnrsv2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"VaultEmpty18101\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A15%3A03.9046746Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurRG137/providers/Microsoft.RecoveryServices/vaults/VaultEmpty18101\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"VaultEmpty2210\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A15%3A06.2055762Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurRG137/providers/Microsoft.RecoveryServices/vaults/VaultEmpty2210\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"anssingh-vault\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A15%3A09.0520837Z'\\\"\",\"tags\":{\"MabUsed\":\"yes\",\"Owner\":\"anssingh\",\"DeleteBy\":\"01-2025\",\"Purpose\":\"testing\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/anssingh-rg/providers/Microsoft.RecoveryServices/vaults/anssingh-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"arohijain-vault\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A15%3A10.6948731Z'\\\"\",\"tags\":{\"MabUsed\":\"yes\",\"Owner\":\"arohijain\",\"DeleteBy\":\"01-2025\",\"Purpose\":\"testing\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/arohijain-rg/providers/Microsoft.RecoveryServices/vaults/arohijain-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"iaasvmnew1\",\"etag\":\"W/\\\"datetime'2025-09-15T13%3A05%3A39.9037828Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chandrikarg/providers/Microsoft.RecoveryServices/vaults/iaasvmnew1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"cli-track2-vault\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A55%3A03.078481Z'\\\"\",\"tags\":{\"Owner\":\"akneema\",\"Purpose\":\"Testing\",\"DeleteBy\":\"12-9999\",\"MABUsed\":\"Yes\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-track2-rg/providers/Microsoft.RecoveryServices/vaults/cli-track2-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"testvault\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A55%3A03.5364734Z'\\\"\",\"tags\":{\"Owner\":\"akneema\",\"Purpose\":\"Testing\",\"MABUsed\":\"Yes\",\"DeleteBy\":\"12-9999\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-track2-rg/providers/Microsoft.RecoveryServices/vaults/testvault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"testvault2\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A55%3A04.4166161Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-track2-rg/providers/Microsoft.RecoveryServices/vaults/testvault2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"crrclitestvaultccy\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A54%3A56.7780914Z'\\\"\",\"tags\":{\"Owner\":\"akneema\",\"Purpose\":\"Testing\",\"MABUsed\":\"Yes\",\"DeleteBy\":\"12-9999\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-rg/providers/Microsoft.RecoveryServices/vaults/crrclitestvaultccy\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vault-donotuse\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A54%3A59.0511303Z'\\\"\",\"tags\":{\"Owner\":\"akneema\",\"Purpose\":\"Testing\",\"MABUsed\":\"Yes\",\"DeleteBy\":\"12-9999\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-rg-donotuse/providers/Microsoft.RecoveryServices/vaults/clitest-vault-donotuse\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultjfabvqparae\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A39%3A37.8312496Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg23i3igbz4pkaseep6rtle5pfvau55ocy6bilhcuq36p33tmv6fv7evizv2q6ss5wy/providers/Microsoft.RecoveryServices/vaults/clitest-vaultjfabvqparae\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vault2a6se4xlfqr\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A39%3A41.7012988Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2owv66d76fw6t4qjah6rqmf26kge6j5ijtsaxnpicexctfiwnc3cykun2wi62uprz/providers/Microsoft.RecoveryServices/vaults/clitest-vault2a6se4xlfqr\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultk742e5bizan\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A39%3A46.7322628Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3j7gq2wvih2wipofw42ntgiqciai46lt2ke6noafznpjjpg564wonywwkvcngksjb/providers/Microsoft.RecoveryServices/vaults/clitest-vaultk742e5bizan\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultc5splf5q7g4\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A40%3A23.5083166Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3zvoipze2p3qtt7q7mksmq3uscglgxky6mls5njj3wtciyshv6pkxi3qnl2yzscn2/providers/Microsoft.RecoveryServices/vaults/clitest-vaultc5splf5q7g4\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultp6rrywyjhpv\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A40%3A27.0378663Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg4erisbg7jmkzty3xrtag5gbmdpl7j7wgfjwel5yi7lav6lw2wanfulwlmzcleqyig/providers/Microsoft.RecoveryServices/vaults/clitest-vaultp6rrywyjhpv\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultf63ri7zzexq\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A40%3A30.6281505Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg4gpgezlqsc/providers/Microsoft.RecoveryServices/vaults/clitest-vaultf63ri7zzexq\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vault3cclxarumgp\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A40%3A45.9291623Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg5bw5ydpsvodnpjbw5paw5iikrl6qsd4x33ultuzamybatuzsrm4o2vlmzznxan3rx/providers/Microsoft.RecoveryServices/vaults/clitest-vault3cclxarumgp\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaulttp3wc4ilolc\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A40%3A48.365495Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg5j6eq7chk3/providers/Microsoft.RecoveryServices/vaults/clitest-vaulttp3wc4ilolc\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultuajnlnkvgvq\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A40%3A49.5821678Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg5ops2a63odk7ftdy27uaz6q3ytpk74z2gummjtygdnlnoltyk65cvyjthwib4mb4s/providers/Microsoft.RecoveryServices/vaults/clitest-vaultuajnlnkvgvq\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaulty6rud6blqe7\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A40%3A50.7799235Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg66f7ris6672wtmfpgiqqg3lrxfpcpzr7xjhxqqic3tk3vpbyqsbnuu6pkuyxxwsux/providers/Microsoft.RecoveryServices/vaults/clitest-vaulty6rud6blqe7\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultaa2owvkw3a6\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A40%3A54.3184296Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg6uot2xjxzn/providers/Microsoft.RecoveryServices/vaults/clitest-vaultaa2owvkw3a6\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultqlkjq6iwol3\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A40%3A54.5713221Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg6vxhlzrvyyqa44suialhgtfdmukbljfnatva5hcktx76esmommchqpumwhgfeg5go/providers/Microsoft.RecoveryServices/vaults/clitest-vaultqlkjq6iwol3\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultl2vilhbfrsl\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A42%3A07.7796557Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":null,\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg737xmkx5vdlect2rfcc6jn7vo2tz2am7vv5qa3iarulubprk5mvupdekmewjot63b/providers/Microsoft.RecoveryServices/vaults/clitest-vaultl2vilhbfrsl\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vault2aqve57ti76\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A42%3A14.2911233Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg7sqaolpwho3w7knztnierg4uu32fkhzf6h5rn3h7aclebab355poksz2fi6dwzj62/providers/Microsoft.RecoveryServices/vaults/clitest-vault2aqve57ti76\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultlnzitt4hofs\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A42%3A24.4127703Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgaqiu6i2idrd37pceqqetcmtd7jvd72y5cep52ha2t4ol6xoj53g37l4ufojnkvbnm/providers/Microsoft.RecoveryServices/vaults/clitest-vaultlnzitt4hofs\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vault6y3k26gaayq\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A43%3A55.9425618Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgb2ngqfe2k5au7xi4pq3w5nico34kycot6mj5xqqb2h6u4vhkbxv24efpvmeov4xjs/providers/Microsoft.RecoveryServices/vaults/clitest-vault6y3k26gaayq\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vault2xhgpa5m2kr\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A43%3A58.4425999Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbn4upty7am2ljyvhzfg2bkd66yufesnbu3y4ql3l45hxn2peqzo6q3wfkswlwcm54/providers/Microsoft.RecoveryServices/vaults/clitest-vault2xhgpa5m2kr\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vault2nvnkkj7eet\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A44%3A04.2869747Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbopctqkzej/providers/Microsoft.RecoveryServices/vaults/clitest-vault2nvnkkj7eet\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaulti2hy7n2gfae\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A45%3A43.0528276Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgcea6dcyknc/providers/Microsoft.RecoveryServices/vaults/clitest-vaulti2hy7n2gfae\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultsxbosbrmzin\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A45%3A47.2364765Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgco7poh6tq7sfwjuexepinlazqnlxbrm2bpjjoexoi4oz4v3wwh44zojonskwsnsvk/providers/Microsoft.RecoveryServices/vaults/clitest-vaultsxbosbrmzin\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultzbkwg5vme4j\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A46%3A03.4274533Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgd6wgaycmodpjw6wzengonrszbatlt3fn46reyjjdjmgexfoulp7p2konnlbfjysbu/providers/Microsoft.RecoveryServices/vaults/clitest-vaultzbkwg5vme4j\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultlrrihv2i4tj\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A46%3A04.3762911Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgd72ugr3zx5wykp6zumcvelhnt7rmxq2qtyyhq46s7n3644s3kvwpf7x2hr6j44f3d/providers/Microsoft.RecoveryServices/vaults/clitest-vaultlrrihv2i4tj\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultnfsjmhvzzi6\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A46%3A11.6941909Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgduli6xmh6n/providers/Microsoft.RecoveryServices/vaults/clitest-vaultnfsjmhvzzi6\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultqdywkqjdalu\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A46%3A16.5080713Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgei7fcg52axxckujbynstwmu5wxqvwlbnwhkij3pkphxec5bov4abiekzfauhgsdsw/providers/Microsoft.RecoveryServices/vaults/clitest-vaultqdywkqjdalu\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultppnhrdcisso\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A46%3A24.6145093Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgfitetb45fm/providers/Microsoft.RecoveryServices/vaults/clitest-vaultppnhrdcisso\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultopmxfpwtdzt\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A46%3A25.9675735Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgfnuko4vmbo/providers/Microsoft.RecoveryServices/vaults/clitest-vaultopmxfpwtdzt\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultfslv6ng7owd\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A46%3A27.4988566Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgfxongdei6v/providers/Microsoft.RecoveryServices/vaults/clitest-vaultfslv6ng7owd\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultot7aeuagxis\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A46%3A32.6333307Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgglld3zspxu/providers/Microsoft.RecoveryServices/vaults/clitest-vaultot7aeuagxis\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultcdprqab5ahn\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A46%3A38.4249227Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgihfqglowbeehz6pd7r52o2oudhltzy3zzahynmez4hogbbcj4e4sjdcdoj5cogwjy/providers/Microsoft.RecoveryServices/vaults/clitest-vaultcdprqab5ahn\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultb47ryys26vs\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A47%3A48.0136089Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgixxft47w3uqmbpumwd4csespji2wehiuxufo6bbn4ub2vhxjvwwk6fyw6jkohbhwa/providers/Microsoft.RecoveryServices/vaults/clitest-vaultb47ryys26vs\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultnyxkuyrd6uf\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A47%3A51.0711869Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjb5i5hn2ikyoq65bbgijee4kfavs2k6uqjyalw6upgcgugnizht3dsb63nxzg3qpa/providers/Microsoft.RecoveryServices/vaults/clitest-vaultnyxkuyrd6uf\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultdojmqr2rqan\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A47%3A52.4103111Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjqxowf3snruqrxofjceokzithrsimhiimobs25ctohgui6qncjs4zjze5wvaziaq5/providers/Microsoft.RecoveryServices/vaults/clitest-vaultdojmqr2rqan\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultbrwboj2534h\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A47%3A54.4155134Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjzu6r4hwd57bhdxi3gqmu5sglbo4r5pmgci6tvlyvcszxjo6qlk6u7qfwvhcnez5c/providers/Microsoft.RecoveryServices/vaults/clitest-vaultbrwboj2534h\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultgh4puvgfonq\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A47%3A56.9922061Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgkbwmh7lqmc/providers/Microsoft.RecoveryServices/vaults/clitest-vaultgh4puvgfonq\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vault7md52phrqjz\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A47%3A58.3373055Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgkfus75wh354uc5flxr2i77vgqxj7mkfo6qq36vo4iqzro2bm5s3hv3ewkpo2wxxst/providers/Microsoft.RecoveryServices/vaults/clitest-vault7md52phrqjz\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultijomn5sqvoc\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A47%3A58.8590143Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgkgcjk6zs7vjzlgvly3lutzli3cwsgejr7o2wj3gb4lr55d3kntdjii6ps4sicvcrr/providers/Microsoft.RecoveryServices/vaults/clitest-vaultijomn5sqvoc\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaulttx4zkop34l5\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A47%3A59.1577043Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgkiq2toqmspwt6bjrwg7dda57oh2fh2rmslnfqsdrecwlfodowjncylamk5vdrgyyt/providers/Microsoft.RecoveryServices/vaults/clitest-vaulttx4zkop34l5\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vault4q3wmfdmdfo\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A48%3A01.3431148Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgl2iqooxvxr4b3uczpecbyazrpevdr4wznnzys327alqc2iiwgt6zuj43rxqml7b6t/providers/Microsoft.RecoveryServices/vaults/clitest-vault4q3wmfdmdfo\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultdwjdwzqv7sc\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A48%3A06.1759088Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rglq6kt655zt/providers/Microsoft.RecoveryServices/vaults/clitest-vaultdwjdwzqv7sc\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultyub6edqwync\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A48%3A07.1366932Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgm4foig3vla/providers/Microsoft.RecoveryServices/vaults/clitest-vaultyub6edqwync\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultpgxnpp6nj4i\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A48%3A08.5126552Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmpwemtzjyulvhexh3tqkp6tkbjey6ux3vo57hl3g7wpyi56lu4watq5zehc6qqipi/providers/Microsoft.RecoveryServices/vaults/clitest-vaultpgxnpp6nj4i\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultft2l4sucknl\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A48%3A09.9334206Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmudv5svi6o6yo6tkrgoqdp5eqgejuricxubqt6qcyhcyfrqq65tkom7q3n7woa6eb/providers/Microsoft.RecoveryServices/vaults/clitest-vaultft2l4sucknl\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultlzwgmiu2x7y\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A48%3A12.1636346Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgn7iod7ivodxannjj3usm7t2urs2l6tgttlxlwhqtedfj422exhtksqinbf6za44un/providers/Microsoft.RecoveryServices/vaults/clitest-vaultlzwgmiu2x7y\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultbadacbyy5od\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A48%3A14.187753Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":null,\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgnlwii7mbbaghajxhbmgwcvlpe2od4fm4edyeo7wi3hqa4qyeqsleqk3at4ixwxuxl/providers/Microsoft.RecoveryServices/vaults/clitest-vaultbadacbyy5od\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultra7myzbvf3q\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A48%3A16.0704911Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":null,\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgnsjdxxxaqakwqtlt25mxvu6ir5ymfcu6j2oim7u4um53ybdsnqmolhqdkl4em7oai/providers/Microsoft.RecoveryServices/vaults/clitest-vaultra7myzbvf3q\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultk6255fvi7ta\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A48%3A18.5555864Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgo76ilrpltl7ydfvsu7lopshksg53h6jn6x4apnuavqrgtflwj4uidaj6nnvjpjlk5/providers/Microsoft.RecoveryServices/vaults/clitest-vaultk6255fvi7ta\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultqlwblhhrynn\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A48%3A19.2505388Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgohjtswm4xdvsd57nj3hwv4udgqzrededajiojgobgoqilfmhdrtrkswy5tlohpzh3/providers/Microsoft.RecoveryServices/vaults/clitest-vaultqlwblhhrynn\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vault4nr7z77ykle\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A48%3A30.0750375Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgp73fxsd6wnfzwp2b6j2ltipj7ujqlnfwndrro2tu3n4l53v5xkswyijbr7lqoevxl/providers/Microsoft.RecoveryServices/vaults/clitest-vault4nr7z77ykle\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultyqgw4hrxqml\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A48%3A31.4689212Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpfdyc7kgxv/providers/Microsoft.RecoveryServices/vaults/clitest-vaultyqgw4hrxqml\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultmgkq6wgedm5\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A49%3A23.1162742Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgq4lcdbhyak/providers/Microsoft.RecoveryServices/vaults/clitest-vaultmgkq6wgedm5\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultp2eeiygqgpg\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A49%3A25.1035529Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgq53n5juxxd4bo34q3jb63rhmi5ox2sqj6terxb3syi4shbntbo73ui672bwfivh7a/providers/Microsoft.RecoveryServices/vaults/clitest-vaultp2eeiygqgpg\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultqfmzm2o5qtd\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A49%3A26.8787622Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgq63xeorfw3bprevjy5jj64xf2bfdopasca52ceer6sj673mccat2tllm26jhf6nkh/providers/Microsoft.RecoveryServices/vaults/clitest-vaultqfmzm2o5qtd\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaulterrnpg6v5id\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A49%3A31.127118Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqvlsewe6g3/providers/Microsoft.RecoveryServices/vaults/clitest-vaulterrnpg6v5id\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vault2mbejbsdjkd\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A49%3A34.4176771Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqw4y4ylw7i/providers/Microsoft.RecoveryServices/vaults/clitest-vault2mbejbsdjkd\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultoutiquxjuhi\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A49%3A37.6654241Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqxn7yb2nfsjnvtb72sccih3cziknrgmgfywvffvt2z3ltimcz5trv3qpvmuyrm647/providers/Microsoft.RecoveryServices/vaults/clitest-vaultoutiquxjuhi\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultbokketcjxwr\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A49%3A46.3124756Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgrzvhvja5pu/providers/Microsoft.RecoveryServices/vaults/clitest-vaultbokketcjxwr\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultmbxako53usy\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A49%3A52.1160059Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgswkmgzl5pinx2bwvaf3prk3inqxnebvquwluyu3rps2b3huoswnoujkmuok63aqk3/providers/Microsoft.RecoveryServices/vaults/clitest-vaultmbxako53usy\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultksof3sgjzhk\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A51%3A05.2530167Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtcw4rdb6mnhdvyeg5wumcgeghxfxfx62sau5j7fdnlgtco5ixdvsh6ama3fhtbfkc/providers/Microsoft.RecoveryServices/vaults/clitest-vaultksof3sgjzhk\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vault5khhpsjmksd\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A51%3A08.0965362Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtftwkqigys/providers/Microsoft.RecoveryServices/vaults/clitest-vault5khhpsjmksd\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultm7agvib7g6q\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A51%3A10.0927749Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtndgpytvbe/providers/Microsoft.RecoveryServices/vaults/clitest-vaultm7agvib7g6q\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultmw4fjmyhuj6\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A51%3A20.2183331Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgueraacduykxj35aurfg3e6phmcwi7qvvcuxiqox4kn2tmsdefevv3afg5urhhcfz3/providers/Microsoft.RecoveryServices/vaults/clitest-vaultmw4fjmyhuj6\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultw7rulno2mc5\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A54%3A00.5225723Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgv2b6sta63mktfvvhme2hie43wrnfeqt3loqww3nhv4if33ypyb6g6fmorkul6hbm6/providers/Microsoft.RecoveryServices/vaults/clitest-vaultw7rulno2mc5\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultvepspyndgh2\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A54%3A02.8981638Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgvfxedia2mj/providers/Microsoft.RecoveryServices/vaults/clitest-vaultvepspyndgh2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultqsioyjdru3s\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A54%3A03.561259Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgvgebkmjsxoqwvr6t3ihpjg7o2lytq2aulkkrlkllsrh3gxhrgjo7lbdd2sfenqwl3/providers/Microsoft.RecoveryServices/vaults/clitest-vaultqsioyjdru3s\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultkcbs2mirtt3\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A54%3A04.3617528Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgvvwfbkxbte/providers/Microsoft.RecoveryServices/vaults/clitest-vaultkcbs2mirtt3\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultacijjteljd4\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A54%3A09.9642099Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgwtbj52pahkmrrerejgcihclsbpc54nozmf7v62ojrr5wksuo4p5z3cc654aqfbszg/providers/Microsoft.RecoveryServices/vaults/clitest-vaultacijjteljd4\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultky3zqi734dl\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A54%3A14.4535423Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgxpm37vg3uvqxkzyvgt5tnf7abljqqw5u6tw3sa2tta74vtg6le7zxqpv37ihal4lz/providers/Microsoft.RecoveryServices/vaults/clitest-vaultky3zqi734dl\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultdaertflmw3i\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A54%3A23.7637552Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgymaroxdthxbsz6j3gcnf5ouqx6lbfako76o36wxc67dzpuc5i54lnii22hzt3klez/providers/Microsoft.RecoveryServices/vaults/clitest-vaultdaertflmw3i\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaulttjtrpevjeat\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A54%3A40.7533131Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgyqhilcprxj/providers/Microsoft.RecoveryServices/vaults/clitest-vaulttjtrpevjeat\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultdosxqh3ftji\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A54%3A49.6234445Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgz7n6zgmxvuft4drqqeoyrqcqzjeprapcwymeiimxo3hddpit3xb5clpqht2gf7ooe/providers/Microsoft.RecoveryServices/vaults/clitest-vaultdosxqh3ftji\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultjiyhepvu6f3\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A54%3A52.808488Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzjbjvgx6r4nsfupqcyt6nk6kre7gquc44tb5fhiag6s2y5nbmtuhqodaetvben6tx/providers/Microsoft.RecoveryServices/vaults/clitest-vaultjiyhepvu6f3\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultj563cgnjhxi\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A54%3A54.5717607Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzyopcq5w5w/providers/Microsoft.RecoveryServices/vaults/clitest-vaultj563cgnjhxi\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"gvjreddy-ccy-vault-for-softdelete\",\"etag\":\"W/\\\"datetime'2025-08-14T12%3A39%3A26.3303824Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-ccy-vault-for-softdelete\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"gvjreddy-test-ccy-rsvault\",\"etag\":\"W/\\\"datetime'2025-08-14T12%3A39%3A31.254772Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-test-ccy-rsvault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"cmk-pstest-vault\",\"etag\":\"W/\\\"datetime'2025-08-14T12%3A46%3A54.3843814Z'\\\"\",\"tags\":{\"MABUsed\":\"yes\",\"Owner\":\"hiaga\",\"Purpose\":\"testing\",\"DeleteBy\":\"01-2099\"},\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"c7fb28d8-227b-46b0-a17b-7e45e20a560f\",\"type\":\"SystemAssigned, - UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/hiagarg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cmk-pstest-msi1\":{\"clientId\":\"cc17dc91-0ffc-41c4-9f4b-b7b61fa9f4e8\",\"principalId\":\"79e6360a-251c-4431-b817-a7fff3ac5c91\"}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/cmk-pstest-vault/privateEndpointConnections/hiaga-PE2.379668301146182343.backup.47de299f-fad7-45dd-9e93-de4fcac7d417\",\"name\":\"hiaga-PE2.379668301146182343.backup.47de299f-fad7-45dd-9e93-de4fcac7d417\",\"type\":\"Microsoft.RecoveryServices/vaults/privateEndpointConnections\",\"location\":\"centraluseuap\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpoint\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagarg/providers/Microsoft.Network/privateEndpoints/hiaga-PE2\"},\"groupIds\":[\"AzureBackup\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"None\",\"actionsRequired\":\"None\"}}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/cmk-pstest-vault/privateEndpointConnections/hiaga-PrivateEndpoint.379668301146182343.backup.d12b435b-a2cc-45b2-8cc1-9d7f0e73b176\",\"name\":\"hiaga-PrivateEndpoint.379668301146182343.backup.d12b435b-a2cc-45b2-8cc1-9d7f0e73b176\",\"type\":\"Microsoft.RecoveryServices/vaults/privateEndpointConnections\",\"location\":\"centraluseuap\",\"properties\":{\"provisioningState\":\"Failed\",\"privateEndpoint\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagarg/providers/Microsoft.Network/privateEndpoints/hiaga-PrivateEndpoint\"},\"groupIds\":[\"AzureBackup\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"None\",\"actionsRequired\":\"None\"}}}],\"privateEndpointStateForBackup\":\"Enabled\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":{\"keyVaultProperties\":{\"keyUri\":\"https://cmk-pstest-keyvault.vault.azure.net/keys/cmk-pstest-key/5569d5a163ee474cad2da4ac334af9d7\"},\"kekIdentity\":{\"useSystemAssignedIdentity\":true,\"userAssignedIdentity\":null},\"infrastructureEncryption\":\"Enabled\"},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/cmk-pstest-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"hiaga-adhoc-vault\",\"etag\":\"W/\\\"datetime'2025-08-14T12%3A46%3A56.0590492Z'\\\"\",\"tags\":{\"MABUsed\":\"Yes\",\"Owner\":\"hiaga\",\"Purpose\":\"testing\",\"DeleteBy\":\"01-2031\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"hiagaCLItestvault\",\"etag\":\"W/\\\"datetime'2025-08-14T12%3A46%3A58.9105624Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaCLItestvault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"hiagaCLItestvault2\",\"etag\":\"W/\\\"datetime'2025-08-14T12%3A47%3A00.4627666Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaCLItestvault2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"hiagaVault\",\"etag\":\"W/\\\"datetime'2025-08-14T12%3A47%3A34.1453161Z'\\\"\",\"tags\":{\"MABUsed\":\"Yes\",\"Owner\":\"hiaga\",\"Purpose\":\"Testing\",\"DeleteBy\":\"01-2099\",\"Reserved\":\"please + UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/hiagaczr-rg/providers/microsoft.managedidentity/userassignedidentities/hiagauseridentity\":{\"clientId\":\"05a1da4a-ee20-42b9-94de-72175caa42bb\",\"principalId\":\"af96ebe9-5ed3-4753-9849-c314ddc1150c\"},\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/container_softdelete/providers/Microsoft.ManagedIdentity/userAssignedIdentities/adigupt\":{\"clientId\":\"2764e801-c368-49ba-b8af-3cb5761db993\",\"principalId\":\"955f634e-31df-4df5-8692-cee6ca4f4e8a\"}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseCcyGrs/providers/Microsoft.RecoveryServices/vaults/akkanaseTest\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"akkanaseTest123\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A21%3A57.4691016Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseCcyGrs/providers/Microsoft.RecoveryServices/vaults/akkanaseTest123/privateEndpointConnections/testAkkanase.6763488043549574973.backup.26dd9d9e-5fac-4d91-86c4-6c86c3e14f15\",\"name\":\"testAkkanase.6763488043549574973.backup.26dd9d9e-5fac-4d91-86c4-6c86c3e14f15\",\"type\":\"Microsoft.RecoveryServices/vaults/privateEndpointConnections\",\"location\":\"centraluseuap\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpoint\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseCcyGrs/providers/Microsoft.Network/privateEndpoints/testAkkanase\"},\"groupIds\":[\"AzureBackup\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"None\",\"actionsRequired\":\"None\"}}}],\"privateEndpointStateForBackup\":\"Enabled\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseCcyGrs/providers/Microsoft.RecoveryServices/vaults/akkanaseTest123\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"akkanaseCMK\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A23%3A22.994835Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"9b8d9f7f-3081-4e65-80d3-f53d2c0de284\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":{\"keyVaultProperties\":{\"keyUri\":\"https://akkansehsmtest.vault.azure.net/keys/test1233\"},\"kekIdentity\":{\"useSystemAssignedIdentity\":true,\"userAssignedIdentity\":null},\"infrastructureEncryption\":\"Disabled\"},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseCMK/providers/Microsoft.RecoveryServices/vaults/akkanaseCMK\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"akkanaseCMK1\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A23%3A24.743162Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"89ad7ce4-46cd-4581-af4f-682e71cb40bc\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseCMK/providers/Microsoft.RecoveryServices/vaults/akkanaseCMK1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"akkanaseTest2\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A23%3A32.1825168Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"e3b70927-d49d-4c84-adac-ac673e8b79e1\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":{\"keyVaultProperties\":{\"keyUri\":\"https://akkansehsmtest.vault.azure.net/keys/key123\"},\"kekIdentity\":{\"useSystemAssignedIdentity\":true,\"userAssignedIdentity\":null},\"infrastructureEncryption\":\"Disabled\"},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseCMK/providers/Microsoft.RecoveryServices/vaults/akkanaseTest2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"test123asdsf\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A23%3A36.9028024Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseCMK/providers/Microsoft.RecoveryServices/vaults/test123asdsf\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"akkanaseAkash1\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A25%3A17.8288719Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseTest/providers/Microsoft.RecoveryServices/vaults/akkanaseAkash1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"akkanaseMSI\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A25%3A18.8862314Z'\\\"\",\"identity\":{\"type\":\"None\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseTest/providers/Microsoft.RecoveryServices/vaults/akkanaseMSI\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"akkanaseTest1234\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A26%3A28.2072816Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseTest/providers/Microsoft.RecoveryServices/vaults/akkanaseTest1234\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"akkanaseTest12sdf\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A26%3A30.1806516Z'\\\"\",\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cmk.system/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identity1\":{\"clientId\":\"73571b84-6f37-4bdd-a60f-1121cb5d31d7\",\"principalId\":\"13a05d1f-eae9-47ae-944f-46270c95d12e\"}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseTest/providers/Microsoft.RecoveryServices/vaults/akkanaseTest12sdf/privateEndpointConnections/akkanaseTest123.7874099994692673002.backup.7e26ee6a-554d-4fa8-a70e-09fee5ae5b94\",\"name\":\"akkanaseTest123.7874099994692673002.backup.7e26ee6a-554d-4fa8-a70e-09fee5ae5b94\",\"type\":\"Microsoft.RecoveryServices/vaults/privateEndpointConnections\",\"location\":\"centraluseuap\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpoint\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseTest/providers/Microsoft.Network/privateEndpoints/akkanaseTest123\"},\"groupIds\":[\"AzureBackup\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"None\",\"actionsRequired\":\"None\"}}}],\"privateEndpointStateForBackup\":\"Enabled\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":{\"keyVaultProperties\":{\"keyUri\":\"https://akkansehsmtest.vault.azure.net/keys/key123\"},\"kekIdentity\":{\"useSystemAssignedIdentity\":false,\"userAssignedIdentity\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cmk.system/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identity1\"},\"infrastructureEncryption\":\"Disabled\"},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseTest/providers/Microsoft.RecoveryServices/vaults/akkanaseTest12sdf\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"akkanaseTest3\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A31%3A43.0246266Z'\\\"\",\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_adkayeth_adkayethAAD_eastus2euap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/adkayethAAD-agentpool\":{\"clientId\":\"fe6d65f6-2d13-4460-a7d4-37338eeadb3a\",\"principalId\":\"c8a00157-361a-46b9-a9dc-72c8caff7afe\"}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":{\"keyVaultProperties\":{\"keyUri\":\"https://akkanasecmktest1.vault.azure.net/keys/test123\"},\"kekIdentity\":{\"useSystemAssignedIdentity\":false,\"userAssignedIdentity\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_adkayeth_adkayethAAD_eastus2euap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/adkayethAAD-agentpool\"},\"infrastructureEncryption\":\"Disabled\"},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseTest1/providers/Microsoft.RecoveryServices/vaults/akkanaseTest3\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"akkanaseIndia\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A31%3A45.3414843Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseTest2/providers/Microsoft.RecoveryServices/vaults/akkanaseIndia/privateEndpointConnections/vxzvx.8287073220565965330.backup.2a05a7c4-564b-458b-88a2-e142e1e43a18\",\"name\":\"vxzvx.8287073220565965330.backup.2a05a7c4-564b-458b-88a2-e142e1e43a18\",\"type\":\"Microsoft.RecoveryServices/vaults/privateEndpointConnections\",\"location\":\"centraluseuap\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpoint\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseTest2/providers/Microsoft.Network/privateEndpoints/vxzvx\"},\"groupIds\":[\"AzureBackup\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"None\",\"actionsRequired\":\"None\"}}}],\"privateEndpointStateForBackup\":\"Enabled\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseTest2/providers/Microsoft.RecoveryServices/vaults/akkanaseIndia\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"akneema-vault\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A35%3A20.5395122Z'\\\"\",\"tags\":{\"Owner\":\"akneema\",\"Purpose\":\"Testing\",\"DeleteBy\":\"12-9999\",\"MABUsed\":\"Yes\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Disabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"akneemavault\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A35%3A17.4998393Z'\\\"\",\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"84b1c8fc-28b0-477e-b6a5-2af16999fe58\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneemavault/privateEndpointConnections/akneemape.5725812072430978587.backup.e911a862-8697-4593-b107-0d8388e0b195\",\"name\":\"akneemape.5725812072430978587.backup.e911a862-8697-4593-b107-0d8388e0b195\",\"type\":\"Microsoft.RecoveryServices/vaults/privateEndpointConnections\",\"location\":\"centraluseuap\",\"properties\":{\"provisioningState\":\"Failed\",\"privateEndpoint\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.Network/privateEndpoints/akneemape\"},\"groupIds\":[\"AzureBackup\"],\"privateLinkServiceConnectionState\":{\"status\":\"Rejected\",\"description\":\"Rejected!\",\"actionsRequired\":\"None\"}}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneemavault/privateEndpointConnections/akneemape2.5725812072430978587.backup.ad373f61-9bdc-4bab-8e59-3066b4492c15\",\"name\":\"akneemape2.5725812072430978587.backup.ad373f61-9bdc-4bab-8e59-3066b4492c15\",\"type\":\"Microsoft.RecoveryServices/vaults/privateEndpointConnections\",\"location\":\"centraluseuap\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpoint\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.Network/privateEndpoints/akneemape2\"},\"groupIds\":[\"AzureBackup\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"None\",\"actionsRequired\":\"None\"}}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneemavault/privateEndpointConnections/akneemape3.5725812072430978587.backup.03188b6a-f02a-4a77-873e-b4f116d016da\",\"name\":\"akneemape3.5725812072430978587.backup.03188b6a-f02a-4a77-873e-b4f116d016da\",\"type\":\"Microsoft.RecoveryServices/vaults/privateEndpointConnections\",\"location\":\"centraluseuap\",\"properties\":{\"provisioningState\":\"Failed\",\"privateEndpoint\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.Network/privateEndpoints/akneemape3\"},\"groupIds\":[\"AzureBackup\"],\"privateLinkServiceConnectionState\":{\"status\":\"Rejected\",\"description\":\"Rejected!\",\"actionsRequired\":\"None\"}}}],\"privateEndpointStateForBackup\":\"Enabled\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneemavault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"amchandnrsv2\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A42%3A24.0054667Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amchandnccy/providers/Microsoft.RecoveryServices/vaults/amchandnrsv2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"VaultEmpty18101\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A15%3A03.9046746Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurRG137/providers/Microsoft.RecoveryServices/vaults/VaultEmpty18101\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"VaultEmpty2210\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A15%3A06.2055762Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurRG137/providers/Microsoft.RecoveryServices/vaults/VaultEmpty2210\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"anssingh-vault\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A15%3A09.0520837Z'\\\"\",\"tags\":{\"MabUsed\":\"yes\",\"Owner\":\"anssingh\",\"DeleteBy\":\"01-2025\",\"Purpose\":\"testing\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/anssingh-rg/providers/Microsoft.RecoveryServices/vaults/anssingh-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"arohijain-vault\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A15%3A10.6948731Z'\\\"\",\"tags\":{\"MabUsed\":\"yes\",\"Owner\":\"arohijain\",\"DeleteBy\":\"01-2025\",\"Purpose\":\"testing\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/arohijain-rg/providers/Microsoft.RecoveryServices/vaults/arohijain-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"iaasvmnew1\",\"etag\":\"W/\\\"datetime'2025-09-15T13%3A05%3A39.9037828Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chandrikarg/providers/Microsoft.RecoveryServices/vaults/iaasvmnew1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"cli-track2-vault\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A55%3A03.078481Z'\\\"\",\"tags\":{\"Owner\":\"akneema\",\"Purpose\":\"Testing\",\"DeleteBy\":\"12-9999\",\"MABUsed\":\"Yes\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-track2-rg/providers/Microsoft.RecoveryServices/vaults/cli-track2-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"testvault2\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A55%3A04.4166161Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-track2-rg/providers/Microsoft.RecoveryServices/vaults/testvault2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"crrclitestvaultccy\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A54%3A56.7780914Z'\\\"\",\"tags\":{\"Owner\":\"akneema\",\"Purpose\":\"Testing\",\"MABUsed\":\"Yes\",\"DeleteBy\":\"12-9999\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-rg/providers/Microsoft.RecoveryServices/vaults/crrclitestvaultccy\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vault-donotuse\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A54%3A59.0511303Z'\\\"\",\"tags\":{\"Owner\":\"akneema\",\"Purpose\":\"Testing\",\"MABUsed\":\"Yes\",\"DeleteBy\":\"12-9999\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-rg-donotuse/providers/Microsoft.RecoveryServices/vaults/clitest-vault-donotuse\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultk742e5bizan\",\"etag\":\"W/\\\"datetime'2025-12-12T11%3A23%3A21.4109278Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3j7gq2wvih2wipofw42ntgiqciai46lt2ke6noafznpjjpg564wonywwkvcngksjb/providers/Microsoft.RecoveryServices/vaults/clitest-vaultk742e5bizan\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultp6rrywyjhpv\",\"etag\":\"W/\\\"datetime'2025-12-12T08%3A48%3A17.4098742Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg4erisbg7jmkzty3xrtag5gbmdpl7j7wgfjwel5yi7lav6lw2wanfulwlmzcleqyig/providers/Microsoft.RecoveryServices/vaults/clitest-vaultp6rrywyjhpv\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultf63ri7zzexq\",\"etag\":\"W/\\\"datetime'2025-12-12T06%3A58%3A51.2301608Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg4gpgezlqsc/providers/Microsoft.RecoveryServices/vaults/clitest-vaultf63ri7zzexq\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vault3cclxarumgp\",\"etag\":\"W/\\\"datetime'2025-12-12T08%3A48%3A33.7473314Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg5bw5ydpsvodnpjbw5paw5iikrl6qsd4x33ultuzamybatuzsrm4o2vlmzznxan3rx/providers/Microsoft.RecoveryServices/vaults/clitest-vault3cclxarumgp\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaulttp3wc4ilolc\",\"etag\":\"W/\\\"datetime'2025-12-12T08%3A49%3A36.9894965Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg5j6eq7chk3/providers/Microsoft.RecoveryServices/vaults/clitest-vaulttp3wc4ilolc\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultaa2owvkw3a6\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A40%3A54.3184296Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg6uot2xjxzn/providers/Microsoft.RecoveryServices/vaults/clitest-vaultaa2owvkw3a6\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultl2vilhbfrsl\",\"etag\":\"W/\\\"datetime'2025-12-12T08%3A47%3A59.745434Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":null,\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg737xmkx5vdlect2rfcc6jn7vo2tz2am7vv5qa3iarulubprk5mvupdekmewjot63b/providers/Microsoft.RecoveryServices/vaults/clitest-vaultl2vilhbfrsl\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vault2xhgpa5m2kr\",\"etag\":\"W/\\\"datetime'2025-12-12T08%3A49%3A12.5927186Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbn4upty7am2ljyvhzfg2bkd66yufesnbu3y4ql3l45hxn2peqzo6q3wfkswlwcm54/providers/Microsoft.RecoveryServices/vaults/clitest-vault2xhgpa5m2kr\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaulti2hy7n2gfae\",\"etag\":\"W/\\\"datetime'2025-12-12T08%3A51%3A01.3309818Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgcea6dcyknc/providers/Microsoft.RecoveryServices/vaults/clitest-vaulti2hy7n2gfae\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultzbkwg5vme4j\",\"etag\":\"W/\\\"datetime'2025-12-12T08%3A49%3A09.0081537Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgd6wgaycmodpjw6wzengonrszbatlt3fn46reyjjdjmgexfoulp7p2konnlbfjysbu/providers/Microsoft.RecoveryServices/vaults/clitest-vaultzbkwg5vme4j\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultnfsjmhvzzi6\",\"etag\":\"W/\\\"datetime'2025-12-12T06%3A58%3A57.6395626Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgduli6xmh6n/providers/Microsoft.RecoveryServices/vaults/clitest-vaultnfsjmhvzzi6\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultppnhrdcisso\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A46%3A24.6145093Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgfitetb45fm/providers/Microsoft.RecoveryServices/vaults/clitest-vaultppnhrdcisso\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultopmxfpwtdzt\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A46%3A25.9675735Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgfnuko4vmbo/providers/Microsoft.RecoveryServices/vaults/clitest-vaultopmxfpwtdzt\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultfslv6ng7owd\",\"etag\":\"W/\\\"datetime'2025-12-12T08%3A50%3A32.7055791Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgfxongdei6v/providers/Microsoft.RecoveryServices/vaults/clitest-vaultfslv6ng7owd\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultot7aeuagxis\",\"etag\":\"W/\\\"datetime'2025-12-12T08%3A50%3A51.6267944Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgglld3zspxu/providers/Microsoft.RecoveryServices/vaults/clitest-vaultot7aeuagxis\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultnyxkuyrd6uf\",\"etag\":\"W/\\\"datetime'2025-12-12T10%3A58%3A38.1053049Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjb5i5hn2ikyoq65bbgijee4kfavs2k6uqjyalw6upgcgugnizht3dsb63nxzg3qpa/providers/Microsoft.RecoveryServices/vaults/clitest-vaultnyxkuyrd6uf\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultdwjdwzqv7sc\",\"etag\":\"W/\\\"datetime'2025-12-12T08%3A50%3A56.5602158Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rglq6kt655zt/providers/Microsoft.RecoveryServices/vaults/clitest-vaultdwjdwzqv7sc\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultyub6edqwync\",\"etag\":\"W/\\\"datetime'2025-12-12T08%3A50%3A47.8161641Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgm4foig3vla/providers/Microsoft.RecoveryServices/vaults/clitest-vaultyub6edqwync\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultlzwgmiu2x7y\",\"etag\":\"W/\\\"datetime'2026-06-18T09%3A58%3A36.8142117Z'\\\"\",\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"a4f96bec-c09e-4c14-839b-b36ebb815aef\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgn7iod7ivodxannjj3usm7t2urs2l6tgttlxlwhqtedfj422exhtksqinbf6za44un/providers/Microsoft.RecoveryServices/vaults/clitest-vaultlzwgmiu2x7y\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultbadacbyy5od\",\"etag\":\"W/\\\"datetime'2025-12-12T08%3A47%3A06.063236Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":null,\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgnlwii7mbbaghajxhbmgwcvlpe2od4fm4edyeo7wi3hqa4qyeqsleqk3at4ixwxuxl/providers/Microsoft.RecoveryServices/vaults/clitest-vaultbadacbyy5od\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultra7myzbvf3q\",\"etag\":\"W/\\\"datetime'2025-12-12T08%3A48%3A55.4782843Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":null,\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgnsjdxxxaqakwqtlt25mxvu6ir5ymfcu6j2oim7u4um53ybdsnqmolhqdkl4em7oai/providers/Microsoft.RecoveryServices/vaults/clitest-vaultra7myzbvf3q\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultyqgw4hrxqml\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A48%3A31.4689212Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpfdyc7kgxv/providers/Microsoft.RecoveryServices/vaults/clitest-vaultyqgw4hrxqml\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultmgkq6wgedm5\",\"etag\":\"W/\\\"datetime'2025-12-12T08%3A50%3A05.5031344Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgq4lcdbhyak/providers/Microsoft.RecoveryServices/vaults/clitest-vaultmgkq6wgedm5\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultp2eeiygqgpg\",\"etag\":\"W/\\\"datetime'2025-12-12T08%3A47%3A35.8476274Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgq53n5juxxd4bo34q3jb63rhmi5ox2sqj6terxb3syi4shbntbo73ui672bwfivh7a/providers/Microsoft.RecoveryServices/vaults/clitest-vaultp2eeiygqgpg\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultqfmzm2o5qtd\",\"etag\":\"W/\\\"datetime'2025-12-12T11%3A10%3A56.337948Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgq63xeorfw3bprevjy5jj64xf2bfdopasca52ceer6sj673mccat2tllm26jhf6nkh/providers/Microsoft.RecoveryServices/vaults/clitest-vaultqfmzm2o5qtd\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaulterrnpg6v5id\",\"etag\":\"W/\\\"datetime'2025-12-12T08%3A49%3A11.0785092Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqvlsewe6g3/providers/Microsoft.RecoveryServices/vaults/clitest-vaulterrnpg6v5id\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vault2mbejbsdjkd\",\"etag\":\"W/\\\"datetime'2025-12-12T08%3A48%3A43.8701146Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqw4y4ylw7i/providers/Microsoft.RecoveryServices/vaults/clitest-vault2mbejbsdjkd\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultbokketcjxwr\",\"etag\":\"W/\\\"datetime'2025-12-12T08%3A50%3A18.6639049Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgrzvhvja5pu/providers/Microsoft.RecoveryServices/vaults/clitest-vaultbokketcjxwr\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultmbxako53usy\",\"etag\":\"W/\\\"datetime'2025-12-12T08%3A48%3A52.3067459Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgswkmgzl5pinx2bwvaf3prk3inqxnebvquwluyu3rps2b3huoswnoujkmuok63aqk3/providers/Microsoft.RecoveryServices/vaults/clitest-vaultmbxako53usy\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vault5khhpsjmksd\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A51%3A08.0965362Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtftwkqigys/providers/Microsoft.RecoveryServices/vaults/clitest-vault5khhpsjmksd\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultm7agvib7g6q\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A51%3A10.0927749Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtndgpytvbe/providers/Microsoft.RecoveryServices/vaults/clitest-vaultm7agvib7g6q\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultqsioyjdru3s\",\"etag\":\"W/\\\"datetime'2025-12-12T08%3A48%3A40.9366663Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgvgebkmjsxoqwvr6t3ihpjg7o2lytq2aulkkrlkllsrh3gxhrgjo7lbdd2sfenqwl3/providers/Microsoft.RecoveryServices/vaults/clitest-vaultqsioyjdru3s\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultkcbs2mirtt3\",\"etag\":\"W/\\\"datetime'2025-12-12T08%3A50%3A02.4733728Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgvvwfbkxbte/providers/Microsoft.RecoveryServices/vaults/clitest-vaultkcbs2mirtt3\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultdaertflmw3i\",\"etag\":\"W/\\\"datetime'2025-12-12T08%3A47%3A22.3525632Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgymaroxdthxbsz6j3gcnf5ouqx6lbfako76o36wxc67dzpuc5i54lnii22hzt3klez/providers/Microsoft.RecoveryServices/vaults/clitest-vaultdaertflmw3i\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaulttjtrpevjeat\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A54%3A40.7533131Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgyqhilcprxj/providers/Microsoft.RecoveryServices/vaults/clitest-vaulttjtrpevjeat\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultdosxqh3ftji\",\"etag\":\"W/\\\"datetime'2025-12-12T08%3A48%3A46.0613171Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgz7n6zgmxvuft4drqqeoyrqcqzjeprapcwymeiimxo3hddpit3xb5clpqht2gf7ooe/providers/Microsoft.RecoveryServices/vaults/clitest-vaultdosxqh3ftji\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultj563cgnjhxi\",\"etag\":\"W/\\\"datetime'2025-12-12T08%3A51%3A05.3705461Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzyopcq5w5w/providers/Microsoft.RecoveryServices/vaults/clitest-vaultj563cgnjhxi\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"asr-aarya-vault\",\"etag\":\"W/\\\"datetime'2026-06-08T16%3A20%3A14.5271763Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoohana/providers/Microsoft.RecoveryServices/vaults/asr-aarya-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"gvjreddy-ccy-vault-for-softdelete\",\"etag\":\"W/\\\"datetime'2025-08-14T12%3A39%3A26.3303824Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-ccy-vault-for-softdelete\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"gvjreddy-test-ccy-rsvault\",\"etag\":\"W/\\\"datetime'2025-08-14T12%3A39%3A31.254772Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-test-ccy-rsvault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"cmk-pstest-vault\",\"etag\":\"W/\\\"datetime'2025-10-27T16%3A34%3A40.6850867Z'\\\"\",\"tags\":{\"MABUsed\":\"yes\",\"Owner\":\"hiaga\",\"Purpose\":\"testing\",\"DeleteBy\":\"01-2099\"},\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"c7fb28d8-227b-46b0-a17b-7e45e20a560f\",\"type\":\"SystemAssigned, + UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/hiagarg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cmk-pstest-msi1\":{\"clientId\":\"cc17dc91-0ffc-41c4-9f4b-b7b61fa9f4e8\",\"principalId\":\"79e6360a-251c-4431-b817-a7fff3ac5c91\"}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/cmk-pstest-vault/privateEndpointConnections/hiaga-PE2.379668301146182343.backup.47de299f-fad7-45dd-9e93-de4fcac7d417\",\"name\":\"hiaga-PE2.379668301146182343.backup.47de299f-fad7-45dd-9e93-de4fcac7d417\",\"type\":\"Microsoft.RecoveryServices/vaults/privateEndpointConnections\",\"location\":\"centraluseuap\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpoint\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagarg/providers/Microsoft.Network/privateEndpoints/hiaga-PE2\"},\"groupIds\":[\"AzureBackup\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"None\",\"actionsRequired\":\"None\"}}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/cmk-pstest-vault/privateEndpointConnections/hiaga-PrivateEndpoint.379668301146182343.backup.d12b435b-a2cc-45b2-8cc1-9d7f0e73b176\",\"name\":\"hiaga-PrivateEndpoint.379668301146182343.backup.d12b435b-a2cc-45b2-8cc1-9d7f0e73b176\",\"type\":\"Microsoft.RecoveryServices/vaults/privateEndpointConnections\",\"location\":\"centraluseuap\",\"properties\":{\"provisioningState\":\"Failed\",\"privateEndpoint\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagarg/providers/Microsoft.Network/privateEndpoints/hiaga-PrivateEndpoint\"},\"groupIds\":[\"AzureBackup\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"None\",\"actionsRequired\":\"None\"}}}],\"privateEndpointStateForBackup\":\"Enabled\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":{\"keyVaultProperties\":{\"keyUri\":\"https://cmk-pstest-keyvault.vault.azure.net/keys/cmk-pstest-key/5569d5a163ee474cad2da4ac334af9d7\"},\"kekIdentity\":{\"useSystemAssignedIdentity\":true,\"userAssignedIdentity\":null},\"infrastructureEncryption\":\"Enabled\"},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/cmk-pstest-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"hiaga-adhoc-vault\",\"etag\":\"W/\\\"datetime'2025-11-26T04%3A01%3A19.4362344Z'\\\"\",\"tags\":{\"MABUsed\":\"Yes\",\"Owner\":\"hiaga\",\"Purpose\":\"testing\",\"DeleteBy\":\"01-2031\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"hiagaCLItestvault\",\"etag\":\"W/\\\"datetime'2025-08-14T12%3A46%3A58.9105624Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaCLItestvault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"hiagaCLItestvault2\",\"etag\":\"W/\\\"datetime'2025-08-14T12%3A47%3A00.4627666Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaCLItestvault2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"hiagaVault\",\"etag\":\"W/\\\"datetime'2025-08-14T12%3A47%3A34.1453161Z'\\\"\",\"tags\":{\"MABUsed\":\"Yes\",\"Owner\":\"hiaga\",\"Purpose\":\"Testing\",\"DeleteBy\":\"01-2099\",\"Reserved\":\"please do not use this vault for any testing as it is reserved and highly used for PowerShell\"},\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"608ca1e9-e854-46c6-984f-d812d0e657e6\",\"type\":\"SystemAssigned, UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/hiagaczr-rg/providers/microsoft.managedidentity/userassignedidentities/hiagauseridentity\":{\"clientId\":\"05a1da4a-ee20-42b9-94de-72175caa42bb\",\"principalId\":\"af96ebe9-5ed3-4753-9849-c314ddc1150c\"}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"hiagaVault2\",\"etag\":\"W/\\\"datetime'2025-08-14T12%3A47%3A33.8366674Z'\\\"\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"mua-pstest-vault\",\"etag\":\"W/\\\"datetime'2025-10-27T08%3A47%3A19.6189051Z'\\\"\",\"tags\":{\"MABUsed\":\"Yes\",\"Owner\":\"hiaga\",\"Purpose\":\"testing\",\"DeleteBy\":\"05-2025\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"iaasvm-clitest-vault\",\"etag\":\"W/\\\"datetime'2025-08-14T14%3A54%3A36.670939Z'\\\"\",\"tags\":{\"Owner\":\"akneema\",\"Purpose\":\"CLITest\",\"MABUsed\":\"Yes\",\"DeleteBy\":\"12-9999\"},\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"387cd308-5be1-46f9-8817-263fc830e334\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvm-clitest-rg/providers/Microsoft.RecoveryServices/vaults/iaasvm-clitest-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"iaasvm-pstest-vault\",\"etag\":\"W/\\\"datetime'2025-08-14T14%3A56%3A40.5982167Z'\\\"\",\"tags\":{\"MABUsed\":\"yes\",\"Owner\":\"hiaga\",\"DeleteBy\":\"01-3000\",\"Purpose\":\"testing\",\"AutoShutdown\":\"no\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvm-pstest-rg/providers/Microsoft.RecoveryServices/vaults/iaasvm-pstest-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"iaasvmexistingcrrdesvault1\",\"etag\":\"W/\\\"datetime'2025-08-14T12%3A47%3A36.0380295Z'\\\"\",\"tags\":{\"Mab - Used\":\"yes\",\"Purpose\":\"BVT\",\"Owner\":\"akkanase\",\"DeleteBy\":\"05-2099\"},\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"c168dcfd-9d6e-45ff-bd87-7509d98ab08f\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":{\"keyVaultProperties\":{\"keyUri\":\"https://iaasdescrr-des-keyvault.vault.azure.net/keys/iaasdescrr-des-key\"},\"kekIdentity\":{\"useSystemAssignedIdentity\":true,\"userAssignedIdentity\":null},\"infrastructureEncryption\":\"Enabled\"},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvm.cmk.descrr/providers/Microsoft.RecoveryServices/vaults/iaasvmexistingcrrdesvault1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"iaasvmexistingcrrvault1\",\"etag\":\"W/\\\"datetime'2025-08-14T12%3A53%3A07.8179855Z'\\\"\",\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"bc375f3e-c1c7-4ac3-9271-bd8899c15a64\",\"type\":\"SystemAssigned, - UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cmk.system/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identity1\":{\"clientId\":\"73571b84-6f37-4bdd-a60f-1121cb5d31d7\",\"principalId\":\"13a05d1f-eae9-47ae-944f-46270c95d12e\"},\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagarg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cmk-pstest-msi1\":{\"clientId\":\"cc17dc91-0ffc-41c4-9f4b-b7b61fa9f4e8\",\"principalId\":\"79e6360a-251c-4431-b817-a7fff3ac5c91\"}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvm.existing.crr/providers/Microsoft.RecoveryServices/vaults/iaasvmexistingcrrvault1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"iaasvmsqlworkloadexistingcrrvault\",\"etag\":\"W/\\\"datetime'2025-08-14T15%3A03%3A40.485906Z'\\\"\",\"tags\":{\"MabUsed\":\"Yes\",\"Purpose\":\"BVT\"},\"identity\":{\"type\":\"None\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"moveDetails\":{\"operationId\":\"06275736-66fc-46b6-8369-514c41bb3940\",\"startTimeUtc\":\"2020-09-14T14:05:35.3187945Z\",\"completionTimeUtc\":\"2020-09-15T06:46:17.6623452Z\",\"sourceResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingcrrvault\",\"targetResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.crr/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingcrrvault\"},\"moveState\":\"MoveSucceeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.crr/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingcrrvault\",\"type\":\"microsoft.recoveryservices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"crr111\",\"etag\":\"W/\\\"datetime'2025-08-14T15%3A19%3A39.5150377Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ishan_softDeleteContainerTest/providers/Microsoft.RecoveryServices/vaults/crr111\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"crrMock\",\"etag\":\"W/\\\"datetime'2025-08-14T15%3A19%3A45.1154968Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ishan_softDeleteContainerTest/providers/Microsoft.RecoveryServices/vaults/crrMock\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"vaulttest2\",\"etag\":\"W/\\\"datetime'2025-08-14T15%3A31%3A14.1302029Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ishan_softDeleteContainerTest/providers/Microsoft.RecoveryServices/vaults/vaulttest2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"sometest\",\"etag\":\"W/\\\"datetime'2025-08-14T15%3A31%3A51.5748958Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ishansap/providers/Microsoft.RecoveryServices/vaults/sometest\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"MarsSetup1\",\"etag\":\"W/\\\"datetime'2025-08-14T15%3A40%3A00.0761593Z'\\\"\",\"tags\":{\"Owner\":\"Kalyan\",\"Purpose\":\"Testing\",\"DeleteBy\":\"06-2024\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mars_issue_repro/providers/Microsoft.RecoveryServices/vaults/MarsSetup1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"msi-pstest-vault\",\"etag\":\"W/\\\"datetime'2025-10-26T17%3A47%3A16.5233633Z'\\\"\",\"tags\":{\"MABUsed\":\"Yes\",\"Owner\":\"hiaga\",\"Purpose\":\"testing\",\"DeleteBy\":\"01-2099\"},\"identity\":{\"type\":\"None\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/msi-pstest-rg/providers/Microsoft.RecoveryServices/vaults/msi-pstest-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"pevaultfhwur\",\"etag\":\"W/\\\"datetime'2025-10-26T19%3A27%3A26.114303Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pe.new.vaults/providers/Microsoft.RecoveryServices/vaults/pevaultfhwur\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"pevaultwupis\",\"etag\":\"W/\\\"datetime'2025-10-26T19%3A19%3A36.0071843Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pe.new.vaults/providers/Microsoft.RecoveryServices/vaults/pevaultwupis\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"PSTestRSV3e47f7bb\",\"etag\":\"W/\\\"datetime'2025-08-14T15%3A45%3A13.0402048Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PSTestRG3e47f7bb/providers/Microsoft.RecoveryServices/vaults/PSTestRSV3e47f7bb\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"PSTestRSV7dd07fe2\",\"etag\":\"W/\\\"datetime'2025-08-14T15%3A45%3A13.3229644Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PSTestRG7dd07fe2/providers/Microsoft.RecoveryServices/vaults/PSTestRSV7dd07fe2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"PSTestRSVccdb4c89\",\"etag\":\"W/\\\"datetime'2025-08-14T15%3A45%3A13.7301779Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PSTestRGccdb4c8924/providers/Microsoft.RecoveryServices/vaults/PSTestRSVccdb4c89\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"testccy-vault\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A19%3A17.6714058Z'\\\"\",\"tags\":{\"Owner\":\"Kalyan\",\"Purpose\":\"Testing\",\"DeleteBy\":\"10-2025\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/reregistration-test-rg/providers/Microsoft.RecoveryServices/vaults/testccy-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"vault372\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A10%3A41.7546874Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg372/providers/Microsoft.RecoveryServices/vaults/vault372\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"vault416\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A10%3A45.0781326Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg416/providers/Microsoft.RecoveryServices/vaults/vault416\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"vault525\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A10%3A46.14048Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg525/providers/Microsoft.RecoveryServices/vaults/vault525\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"saphana-clitest-vault\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A10%3A46.9907561Z'\\\"\",\"tags\":{\"Owner\":\"akneema\",\"Purpose\":\"CLITest\",\"MABUsed\":\"Yes\",\"DeleteBy\":\"12-9999\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/saphana-clitest-rg/providers/Microsoft.RecoveryServices/vaults/saphana-clitest-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"saphana-clitestvault-donotuse\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A10%3A49.6959094Z'\\\"\",\"tags\":{\"Owner\":\"akneema\",\"Purpose\":\"Testi\",\"DeleteBy\":\"12-9999\",\"MABUsed\":\"Yes\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/saphana-clitest-rg/providers/Microsoft.RecoveryServices/vaults/saphana-clitestvault-donotuse\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"saphanaworkloadexistingvault\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A10%3A51.333736Z'\\\"\",\"tags\":{\"MABUsed\":\"Yes\",\"Purpose\":\"BVT\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":null,\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/saphanaworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/saphanaworkloadexistingvault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"CopilotTestVault\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A11%3A45.8499245Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/CopilotTestVault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"sarath-ccy-vaultv1\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A12%3A55.6374672Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-ccy-vaultv1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"sarath-copilot-testvault1\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A12%3A58.1196117Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-copilot-testvault1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"sarath-resourcemove-vault\",\"etag\":\"W/\\\"datetime'2023-07-21T07%3A06%3A31.3767489Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"moveDetails\":{\"operationId\":\"e47b5e89-92a4-4f0f-955f-de87c715f2ea\",\"startTimeUtc\":\"2023-07-21T06:51:15.7626678Z\",\"completionTimeUtc\":\"2023-07-21T07:06:31.35924Z\",\"sourceResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-resourcemove-vault\",\"targetResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AdkayethBugbash/providers/Microsoft.RecoveryServices/vaults/sarath-resourcemove-vault\"},\"moveState\":\"InProgress\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-resourcemove-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"sql-clicloudtest-vault\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A32%3A48.1924995Z'\\\"\",\"tags\":{\"Owner\":\"akneema\",\"Purpose\":\"Testing\",\"MABUsed\":\"Yes\",\"DeleteBy\":\"12-9999\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sql-clicloudtest-rg/providers/Microsoft.RecoveryServices/vaults/sql-clicloudtest-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"vault110\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A32%3A50.084204Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sql-clicloudtest-rg/providers/Microsoft.RecoveryServices/vaults/vault110\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"vault579\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A32%3A51.8803266Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sql-clicloudtest-rg/providers/Microsoft.RecoveryServices/vaults/vault579\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"vault600\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A32%3A53.5330786Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sql-clicloudtest-rg/providers/Microsoft.RecoveryServices/vaults/vault600\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"vault670\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A32%3A55.8389673Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sql-clicloudtest-rg/providers/Microsoft.RecoveryServices/vaults/vault670\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"vault885l\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A32%3A58.109011Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sql-clicloudtest-rg/providers/Microsoft.RecoveryServices/vaults/vault885l\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitrack2vault\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A32%3A59.6990383Z'\\\"\",\"tags\":{\"Owner\":\"akneema\",\"Purpose\":\"Testing\",\"MABUsed\":\"Yes\",\"DeleteBy\":\"12-9999\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sql-clitest-rg/providers/Microsoft.RecoveryServices/vaults/clitrack2vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitrack2vault2\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A33%3A02.4957739Z'\\\"\",\"tags\":{\"Owner\":\"akneema\",\"MABUsed\":\"Yes\",\"DeleteBy\":\"12-9999\",\"Purpose\":\"Testing\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sql-clitest-rg/providers/Microsoft.RecoveryServices/vaults/clitrack2vault2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"sql-clitest-vault\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A33%3A04.3367001Z'\\\"\",\"tags\":{\"Owner\":\"akneema\",\"Purpose\":\"CLITest\",\"MABUsed\":\"Yes\",\"DeleteBy\":\"12-9999\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sql-clitest-rg/providers/Microsoft.RecoveryServices/vaults/sql-clitest-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"sql-clitestvault-donotuse\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A33%3A33.5764617Z'\\\"\",\"tags\":{\"Owner\":\"akneema\",\"Purpose\":\"Testing\",\"DeleteBy\":\"12-9999\",\"MABUsed\":\"Yes\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sql-clitest-rg/providers/Microsoft.RecoveryServices/vaults/sql-clitestvault-donotuse\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"sqlcontainer-pstest-vault\",\"etag\":\"W/\\\"datetime'2025-10-27T09%3A39%3A46.8874547Z'\\\"\",\"tags\":{\"MABUsed\":\"Yes\",\"Purpose\":\"Testing\",\"DeleteBy\":\"01-2029\",\"Owner\":\"hiaga\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlcontainer-pstest-rg/providers/Microsoft.RecoveryServices/vaults/sqlcontainer-pstest-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"testvaullt\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A33%3A36.9855088Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.RecoveryServices/vaults/testvaullt\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"vepothir-vault-hana\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A34%3A00.0264488Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vepothir-rg-hana-rama-sub/providers/Microsoft.RecoveryServices/vaults/vepothir-vault-hana\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"akkanase\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A34%3A04.1413999Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vsargMABPortalTestAutomationNOB_group/providers/Microsoft.RecoveryServices/vaults/akkanase/privateEndpointConnections/akkanaseTest.3919549979396882173.backup.b2befeb6-72da-463f-981d-239ddb2d6b7f\",\"name\":\"akkanaseTest.3919549979396882173.backup.b2befeb6-72da-463f-981d-239ddb2d6b7f\",\"type\":\"Microsoft.RecoveryServices/vaults/privateEndpointConnections\",\"location\":\"centraluseuap\",\"properties\":{\"provisioningState\":\"Failed\",\"privateEndpoint\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vsargMABPortalTestAutomationNOB_group/providers/Microsoft.Network/privateEndpoints/akkanaseTest\"},\"groupIds\":[\"AzureBackup\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"None\",\"actionsRequired\":\"None\"}}}],\"privateEndpointStateForBackup\":\"Enabled\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vsargMABPortalTestAutomationNOB_group/providers/Microsoft.RecoveryServices/vaults/akkanase\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"zvtst-1\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A34%3A31.438663Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ztst-\u4E2D\u6587\u540D\u8D44\u6E90\u7EC4/providers/Microsoft.RecoveryServices/vaults/zvtst-1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"cli-ps-testvault\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A34%3A33.4319188Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zubairRG/providers/Microsoft.RecoveryServices/vaults/cli-ps-testvault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clival-remove-test26\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A34%3A35.1384327Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zubairRG/providers/Microsoft.RecoveryServices/vaults/clival-remove-test26\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clival-remove-test27\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A34%3A36.4785538Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zubairRG/providers/Microsoft.RecoveryServices/vaults/clival-remove-test27\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clival-remove-test28\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A34%3A37.8585013Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zubairRG/providers/Microsoft.RecoveryServices/vaults/clival-remove-test28\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clival-remove-test30\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A34%3A39.0004914Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zubairRG/providers/Microsoft.RecoveryServices/vaults/clival-remove-test30\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clival-remove-test31\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A34%3A40.8244919Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zubairRG/providers/Microsoft.RecoveryServices/vaults/clival-remove-test31\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"javaVault0\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A34%3A41.2595814Z'\\\"\",\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"663a02b0-c28f-43a9-b342-0696a84b424e\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":null,\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zubairRG/providers/Microsoft.RecoveryServices/vaults/javaVault0\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"testvsd2\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A34%3A42.6196167Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zubairRG/providers/Microsoft.RecoveryServices/vaults/testvsd2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"zimmut-ccy-2\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A34%3A43.6311784Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zubairRG/providers/Microsoft.RecoveryServices/vaults/zimmut-ccy-2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"zimmut-ccy-3\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A34%3A44.6487146Z'\\\"\",\"tags\":{\"test\":\"\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zubairRG/providers/Microsoft.RecoveryServices/vaults/zimmut-ccy-3\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"zimmut-ccy-4\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A34%3A46.3084337Z'\\\"\",\"tags\":{\"b\":\"c\"},\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"33ceead3-dff3-4f78-b7b0-6bdb0e397a33\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Disabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Disabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zubairRG/providers/Microsoft.RecoveryServices/vaults/zimmut-ccy-4\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"zimmut-ccy-5\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A34%3A47.7252191Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zubairRG/providers/Microsoft.RecoveryServices/vaults/zimmut-ccy-5\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"zimmut-ccy-6\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A34%3A48.8293757Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zubairRG/providers/Microsoft.RecoveryServices/vaults/zimmut-ccy-6\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"zsdtest\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A34%3A49.9215847Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zubairRG/providers/Microsoft.RecoveryServices/vaults/zsdtest\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"ztestsdvault0\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A34%3A51.0038368Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Disabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zubairRG/providers/Microsoft.RecoveryServices/vaults/ztestsdvault0\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"ztestvault1\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A34%3A52.0054435Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zubairRG/providers/Microsoft.RecoveryServices/vaults/ztestvault1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"abcc-copilot-test-recovery\",\"etag\":\"W/\\\"datetime'2025-08-14T09%3A55%3A22.5664171Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abcc-copilot-testing/providers/Microsoft.RecoveryServices/vaults/abcc-copilot-test-recovery\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"network-without-pv\",\"etag\":\"W/\\\"datetime'2025-08-14T09%3A55%3A25.3821741Z'\\\"\",\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"90337ed8-7331-443f-ac8e-e0e138e535f6\",\"type\":\"SystemAssigned, - UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cmk.system/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identityea1\":{\"clientId\":\"72141888-2ff1-4b7c-a17c-7c727f93e2da\",\"principalId\":\"6b5aa7f8-362a-4e49-bd0d-d22e2e10ef09\"}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abcc-copilot-testing/providers/Microsoft.RecoveryServices/vaults/network-without-pv/privateEndpointConnections/dgds.1179189406869345093.backup.ee793a38-aabf-48e5-a4fd-053eed3a132b\",\"name\":\"dgds.1179189406869345093.backup.ee793a38-aabf-48e5-a4fd-053eed3a132b\",\"type\":\"Microsoft.RecoveryServices/vaults/privateEndpointConnections\",\"location\":\"eastus2euap\",\"properties\":{\"provisioningState\":\"Failed\",\"privateEndpoint\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abcc-copilot-testing/providers/Microsoft.Network/privateEndpoints/dgds\"},\"groupIds\":[\"AzureBackup\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"None\",\"actionsRequired\":\"None\"}}}],\"privateEndpointStateForBackup\":\"Enabled\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abcc-copilot-testing/providers/Microsoft.RecoveryServices/vaults/network-without-pv\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"adigupt-ecy-sql-archieve-rg\",\"etag\":\"W/\\\"datetime'2025-08-14T09%3A56%3A51.9999209Z'\\\"\",\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseLRS/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cmkTestIdentity\":{\"clientId\":\"a6ead08c-7be8-4e74-9d75-312c475d4257\",\"principalId\":\"a79557be-ef8d-4c3b-b096-bd4395e1883e\"}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":null,\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adigupt-ecy-rg/providers/Microsoft.RecoveryServices/vaults/adigupt-ecy-sql-archieve-rg\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"akkanaseTest\",\"etag\":\"W/\\\"datetime'2025-08-14T09%3A56%3A52.4287316Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adigupt-ecy-rg/providers/Microsoft.RecoveryServices/vaults/akkanaseTest\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"akkanaseTest123\",\"etag\":\"W/\\\"datetime'2025-08-14T09%3A56%3A53.3093425Z'\\\"\",\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"6c569f0f-ea97-471a-ae1b-3d87ced8c2d5\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adigupt-ecy-rg/providers/Microsoft.RecoveryServices/vaults/akkanaseTest123\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"akkanaseTestfa\",\"etag\":\"W/\\\"datetime'2025-08-14T09%3A56%3A55.2484857Z'\\\"\",\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cmk.system/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identity1\":{\"clientId\":\"73571b84-6f37-4bdd-a60f-1121cb5d31d7\",\"principalId\":\"13a05d1f-eae9-47ae-944f-46270c95d12e\"}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":{\"keyVaultProperties\":{\"keyUri\":\"https://akkanaseeuap.vault.azure.net/keys/akkanaseTest\"},\"kekIdentity\":{\"useSystemAssignedIdentity\":false,\"userAssignedIdentity\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cmk.system/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identity1\"},\"infrastructureEncryption\":\"Disabled\"},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adigupt-ecy-rg/providers/Microsoft.RecoveryServices/vaults/akkanaseTestfa\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"skk\",\"etag\":\"W/\\\"datetime'2025-08-14T09%3A56%3A57.9602875Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adigupt-ecy-rg/providers/Microsoft.RecoveryServices/vaults/skk\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"test\",\"etag\":\"W/\\\"datetime'2025-08-14T09%3A56%3A59.2277276Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adigupt-ecy-rg/providers/Microsoft.RecoveryServices/vaults/test\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"test123withimmutablePrivateEndpoint\",\"etag\":\"W/\\\"datetime'2025-08-14T09%3A57%3A00.5771313Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adigupt-ecy-rg/providers/Microsoft.RecoveryServices/vaults/test123withimmutablePrivateEndpoint\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"testas\",\"etag\":\"W/\\\"datetime'2025-08-14T09%3A57%3A02.0344874Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adigupt-ecy-rg/providers/Microsoft.RecoveryServices/vaults/testas\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"akkanaseGRS1\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A00%3A25.7614404Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/akkanaseGRS1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"akkanaseGRSCRR\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A00%3A54.7636161Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/akkanaseGRSCRR\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"akkanaseLRS1\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A01%3A28.1078705Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/akkanaseLRS1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"akkanaseRedundancyTestm1\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A02%3A14.7452465Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/akkanaseRedundancyTestm1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"akkanaseTest\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A02%3A18.4286177Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/akkanaseTest\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"akkanaseTest32\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A02%3A26.6409856Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/akkanaseTest32\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"akkanaseTestfa\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A02%3A40.3959019Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Disabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/akkanaseTestfa\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"akkanaseTestVault1\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A02%3A45.5616169Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/akkanaseTestVault1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"test\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A04%3A02.2756848Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/test\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"teswt\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A05%3A09.1781024Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/teswt\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"BugbashBVSanityadkayeth\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A05%3A30.0468837Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Disabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AdkayethBugbash/providers/Microsoft.RecoveryServices/vaults/BugbashBVSanityadkayeth\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"deleteMe\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A05%3A34.55989Z'\\\"\",\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cmk.system/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identity1\":{\"clientId\":\"73571b84-6f37-4bdd-a60f-1121cb5d31d7\",\"principalId\":\"13a05d1f-eae9-47ae-944f-46270c95d12e\"}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":{\"keyVaultProperties\":{\"keyUri\":\"https://testabd.vault.azure.net/keys/sdfads\"},\"kekIdentity\":{\"useSystemAssignedIdentity\":false,\"userAssignedIdentity\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cmk.system/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identity1\"},\"infrastructureEncryption\":\"Disabled\"},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AdkayethBugbash/providers/Microsoft.RecoveryServices/vaults/deleteMe\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"sdfsdf\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A05%3A38.9589474Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AdkayethBugbash/providers/Microsoft.RecoveryServices/vaults/sdfsdf\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"test\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A06%3A21.8060142Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AdkayethBugbash/providers/Microsoft.RecoveryServices/vaults/test\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"adkImmutabilityVault\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A06%3A28.1841956Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayethImmutability/providers/Microsoft.RecoveryServices/vaults/adkImmutabilityVault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"dsfsdfs\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A06%3A32.2993767Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayethImmutability/providers/Microsoft.RecoveryServices/vaults/dsfsdfs\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"testVaultCreation234\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A06%3A37.786952Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayethImmutability/providers/Microsoft.RecoveryServices/vaults/testVaultCreation234\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"akkanaseTest123\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A09%3A56.3730561Z'\\\"\",\"tags\":{\"purpose\":\"testing\",\"owner\":\"akkanase\",\"DoNotUse\":\"yes\"},\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"UserAssigned\",\"userAssignedIdentities\":{}},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":{\"keyVaultProperties\":{\"keyUri\":\"https://te1st123123.vault.azure.net/keys/test123sdf\"},\"kekIdentity\":{\"useSystemAssignedIdentity\":false,\"userAssignedIdentity\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_bugbash-ecy-rg_aksbugbashtest1_eastus2euap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/aksbugbashtest1-agentpool\"},\"infrastructureEncryption\":\"Disabled\"},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"PermanentlyDisabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/afstests/providers/Microsoft.RecoveryServices/vaults/akkanaseTest123\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"no-soft-delete\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A15%3A07.769326Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/afstests/providers/Microsoft.RecoveryServices/vaults/no-soft-delete\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"test\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A15%3A19.1666037Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/afstests/providers/Microsoft.RecoveryServices/vaults/test\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"test-sd\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A15%3A53.0675265Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/afstests/providers/Microsoft.RecoveryServices/vaults/test-sd\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"akkanaseIdentity\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A16%3A37.2800812Z'\\\"\",\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"3d3b4fd8-bfb7-4d43-ae8f-96719ed2a8c4\",\"type\":\"SystemAssigned, + Used\":\"yes\",\"Purpose\":\"BVT\",\"Owner\":\"akkanase\",\"DeleteBy\":\"05-2099\"},\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"c168dcfd-9d6e-45ff-bd87-7509d98ab08f\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":{\"keyVaultProperties\":{\"keyUri\":\"https://iaasdescrr-des-keyvault.vault.azure.net/keys/iaasdescrr-des-key\"},\"kekIdentity\":{\"useSystemAssignedIdentity\":true,\"userAssignedIdentity\":null},\"infrastructureEncryption\":\"Enabled\"},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvm.cmk.descrr/providers/Microsoft.RecoveryServices/vaults/iaasvmexistingcrrdesvault1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"iaasvmexistingcrrvault1\",\"etag\":\"W/\\\"datetime'2026-06-17T09%3A46%3A17.0994001Z'\\\"\",\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"bc375f3e-c1c7-4ac3-9271-bd8899c15a64\",\"type\":\"SystemAssigned, + UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cmk.system/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identity1\":{\"clientId\":\"73571b84-6f37-4bdd-a60f-1121cb5d31d7\",\"principalId\":\"13a05d1f-eae9-47ae-944f-46270c95d12e\"},\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagarg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cmk-pstest-msi1\":{\"clientId\":\"cc17dc91-0ffc-41c4-9f4b-b7b61fa9f4e8\",\"principalId\":\"79e6360a-251c-4431-b817-a7fff3ac5c91\"}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvm.existing.crr/providers/Microsoft.RecoveryServices/vaults/iaasvmexistingcrrvault1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"iaasvmsqlworkloadexistingcrrvault\",\"etag\":\"W/\\\"datetime'2025-08-14T15%3A03%3A40.485906Z'\\\"\",\"tags\":{\"MabUsed\":\"Yes\",\"Purpose\":\"BVT\"},\"identity\":{\"type\":\"None\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"moveDetails\":{\"operationId\":\"06275736-66fc-46b6-8369-514c41bb3940\",\"startTimeUtc\":\"2020-09-14T14:05:35.3187945Z\",\"completionTimeUtc\":\"2020-09-15T06:46:17.6623452Z\",\"sourceResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingcrrvault\",\"targetResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.crr/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingcrrvault\"},\"moveState\":\"MoveSucceeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.crr/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingcrrvault\",\"type\":\"microsoft.recoveryservices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"crr111\",\"etag\":\"W/\\\"datetime'2025-08-14T15%3A19%3A39.5150377Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ishan_softDeleteContainerTest/providers/Microsoft.RecoveryServices/vaults/crr111\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"crrMock\",\"etag\":\"W/\\\"datetime'2025-08-14T15%3A19%3A45.1154968Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ishan_softDeleteContainerTest/providers/Microsoft.RecoveryServices/vaults/crrMock\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"vaulttest2\",\"etag\":\"W/\\\"datetime'2025-08-14T15%3A31%3A14.1302029Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ishan_softDeleteContainerTest/providers/Microsoft.RecoveryServices/vaults/vaulttest2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"sometest\",\"etag\":\"W/\\\"datetime'2025-08-14T15%3A31%3A51.5748958Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ishansap/providers/Microsoft.RecoveryServices/vaults/sometest\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"MarsSetup1\",\"etag\":\"W/\\\"datetime'2025-08-14T15%3A40%3A00.0761593Z'\\\"\",\"tags\":{\"Owner\":\"Kalyan\",\"Purpose\":\"Testing\",\"DeleteBy\":\"06-2024\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mars_issue_repro/providers/Microsoft.RecoveryServices/vaults/MarsSetup1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"msi-pstest-vault\",\"etag\":\"W/\\\"datetime'2025-10-26T17%3A47%3A16.5233633Z'\\\"\",\"tags\":{\"MABUsed\":\"Yes\",\"Owner\":\"hiaga\",\"Purpose\":\"testing\",\"DeleteBy\":\"01-2099\"},\"identity\":{\"type\":\"None\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/msi-pstest-rg/providers/Microsoft.RecoveryServices/vaults/msi-pstest-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"pevaultfpnkl\",\"etag\":\"W/\\\"datetime'2026-07-20T10%3A54%3A33.4762456Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pe.new.vaults/providers/Microsoft.RecoveryServices/vaults/pevaultfpnkl\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"pevaultiehvj\",\"etag\":\"W/\\\"datetime'2026-07-20T11%3A01%3A58.5021285Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pe.new.vaults/providers/Microsoft.RecoveryServices/vaults/pevaultiehvj\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"ps-test-runtime-vault\",\"etag\":\"W/\\\"datetime'2025-10-29T05%3A55%3A46.9303882Z'\\\"\",\"tags\":{\"Owner\":\"hiaga\",\"MABUsed\":\"Yes\",\"Purpose\":\"Testing\",\"DeleteBy\":\"06-2099\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps-test-runtime/providers/Microsoft.RecoveryServices/vaults/ps-test-runtime-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"PSTestRSV3e47f7bb\",\"etag\":\"W/\\\"datetime'2025-08-14T15%3A45%3A13.0402048Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PSTestRG3e47f7bb/providers/Microsoft.RecoveryServices/vaults/PSTestRSV3e47f7bb\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"PSTestRSV7dd07fe2\",\"etag\":\"W/\\\"datetime'2025-08-14T15%3A45%3A13.3229644Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PSTestRG7dd07fe2/providers/Microsoft.RecoveryServices/vaults/PSTestRSV7dd07fe2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"PSTestRSVccdb4c89\",\"etag\":\"W/\\\"datetime'2025-08-14T15%3A45%3A13.7301779Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PSTestRGccdb4c8924/providers/Microsoft.RecoveryServices/vaults/PSTestRSVccdb4c89\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"vaultTBD\",\"etag\":\"W/\\\"datetime'2026-04-24T06%3A03%3A26.4164179Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raghavchugh-rg/providers/Microsoft.RecoveryServices/vaults/vaultTBD\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"testccy-vault\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A19%3A17.6714058Z'\\\"\",\"tags\":{\"Owner\":\"Kalyan\",\"Purpose\":\"Testing\",\"DeleteBy\":\"10-2025\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/reregistration-test-rg/providers/Microsoft.RecoveryServices/vaults/testccy-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"vault372\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A10%3A41.7546874Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg372/providers/Microsoft.RecoveryServices/vaults/vault372\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"vault416\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A10%3A45.0781326Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg416/providers/Microsoft.RecoveryServices/vaults/vault416\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"vault525\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A10%3A46.14048Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg525/providers/Microsoft.RecoveryServices/vaults/vault525\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"saphana-clitest-vault\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A10%3A46.9907561Z'\\\"\",\"tags\":{\"Owner\":\"akneema\",\"Purpose\":\"CLITest\",\"MABUsed\":\"Yes\",\"DeleteBy\":\"12-9999\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/saphana-clitest-rg/providers/Microsoft.RecoveryServices/vaults/saphana-clitest-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"saphana-clitestvault-donotuse\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A10%3A49.6959094Z'\\\"\",\"tags\":{\"Owner\":\"akneema\",\"Purpose\":\"Testi\",\"DeleteBy\":\"12-9999\",\"MABUsed\":\"Yes\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/saphana-clitest-rg/providers/Microsoft.RecoveryServices/vaults/saphana-clitestvault-donotuse\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"saphanaworkloadexistingvault\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A10%3A51.333736Z'\\\"\",\"tags\":{\"MABUsed\":\"Yes\",\"Purpose\":\"BVT\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":null,\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/saphanaworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/saphanaworkloadexistingvault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"CopilotTestVault\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A11%3A45.8499245Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/CopilotTestVault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"sarath-ccy-vaultv1\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A12%3A55.6374672Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-ccy-vaultv1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"sarath-copilot-testvault1\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A12%3A58.1196117Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-copilot-testvault1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"sarath-resourcemove-vault\",\"etag\":\"W/\\\"datetime'2023-07-21T07%3A06%3A31.3767489Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"moveDetails\":{\"operationId\":\"e47b5e89-92a4-4f0f-955f-de87c715f2ea\",\"startTimeUtc\":\"2023-07-21T06:51:15.7626678Z\",\"completionTimeUtc\":\"2023-07-21T07:06:31.35924Z\",\"sourceResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-resourcemove-vault\",\"targetResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AdkayethBugbash/providers/Microsoft.RecoveryServices/vaults/sarath-resourcemove-vault\"},\"moveState\":\"InProgress\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-resourcemove-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"sql-clicloudtest-vault\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A32%3A48.1924995Z'\\\"\",\"tags\":{\"Owner\":\"akneema\",\"Purpose\":\"Testing\",\"MABUsed\":\"Yes\",\"DeleteBy\":\"12-9999\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sql-clicloudtest-rg/providers/Microsoft.RecoveryServices/vaults/sql-clicloudtest-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"vault110\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A32%3A50.084204Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sql-clicloudtest-rg/providers/Microsoft.RecoveryServices/vaults/vault110\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"vault579\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A32%3A51.8803266Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sql-clicloudtest-rg/providers/Microsoft.RecoveryServices/vaults/vault579\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"vault600\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A32%3A53.5330786Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sql-clicloudtest-rg/providers/Microsoft.RecoveryServices/vaults/vault600\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"vault670\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A32%3A55.8389673Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sql-clicloudtest-rg/providers/Microsoft.RecoveryServices/vaults/vault670\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"vault885l\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A32%3A58.109011Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sql-clicloudtest-rg/providers/Microsoft.RecoveryServices/vaults/vault885l\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitrack2vault\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A32%3A59.6990383Z'\\\"\",\"tags\":{\"Owner\":\"akneema\",\"Purpose\":\"Testing\",\"MABUsed\":\"Yes\",\"DeleteBy\":\"12-9999\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sql-clitest-rg/providers/Microsoft.RecoveryServices/vaults/clitrack2vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitrack2vault2\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A33%3A02.4957739Z'\\\"\",\"tags\":{\"Owner\":\"akneema\",\"MABUsed\":\"Yes\",\"DeleteBy\":\"12-9999\",\"Purpose\":\"Testing\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sql-clitest-rg/providers/Microsoft.RecoveryServices/vaults/clitrack2vault2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"sql-clitest-vault\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A33%3A04.3367001Z'\\\"\",\"tags\":{\"Owner\":\"akneema\",\"Purpose\":\"CLITest\",\"MABUsed\":\"Yes\",\"DeleteBy\":\"12-9999\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sql-clitest-rg/providers/Microsoft.RecoveryServices/vaults/sql-clitest-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"sql-clitestvault-donotuse\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A33%3A33.5764617Z'\\\"\",\"tags\":{\"Owner\":\"akneema\",\"Purpose\":\"Testing\",\"DeleteBy\":\"12-9999\",\"MABUsed\":\"Yes\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sql-clitest-rg/providers/Microsoft.RecoveryServices/vaults/sql-clitestvault-donotuse\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"sqlcontainer-pstest-vault\",\"etag\":\"W/\\\"datetime'2025-10-27T09%3A39%3A46.8874547Z'\\\"\",\"tags\":{\"MABUsed\":\"Yes\",\"Purpose\":\"Testing\",\"DeleteBy\":\"01-2029\",\"Owner\":\"hiaga\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlcontainer-pstest-rg/providers/Microsoft.RecoveryServices/vaults/sqlcontainer-pstest-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"testvaullt\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A33%3A36.9855088Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.RecoveryServices/vaults/testvaullt\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"vepothir-vault-hana\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A34%3A00.0264488Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vepothir-rg-hana-rama-sub/providers/Microsoft.RecoveryServices/vaults/vepothir-vault-hana\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"akkanase\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A34%3A04.1413999Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vsargMABPortalTestAutomationNOB_group/providers/Microsoft.RecoveryServices/vaults/akkanase/privateEndpointConnections/akkanaseTest.3919549979396882173.backup.b2befeb6-72da-463f-981d-239ddb2d6b7f\",\"name\":\"akkanaseTest.3919549979396882173.backup.b2befeb6-72da-463f-981d-239ddb2d6b7f\",\"type\":\"Microsoft.RecoveryServices/vaults/privateEndpointConnections\",\"location\":\"centraluseuap\",\"properties\":{\"provisioningState\":\"Failed\",\"privateEndpoint\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vsargMABPortalTestAutomationNOB_group/providers/Microsoft.Network/privateEndpoints/akkanaseTest\"},\"groupIds\":[\"AzureBackup\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"None\",\"actionsRequired\":\"None\"}}}],\"privateEndpointStateForBackup\":\"Enabled\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vsargMABPortalTestAutomationNOB_group/providers/Microsoft.RecoveryServices/vaults/akkanase\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"zvtst-1\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A34%3A31.438663Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ztst-\u4E2D\u6587\u540D\u8D44\u6E90\u7EC4/providers/Microsoft.RecoveryServices/vaults/zvtst-1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"cli-ps-testvault\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A34%3A33.4319188Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zubairRG/providers/Microsoft.RecoveryServices/vaults/cli-ps-testvault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clival-remove-test26\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A34%3A35.1384327Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zubairRG/providers/Microsoft.RecoveryServices/vaults/clival-remove-test26\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clival-remove-test27\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A34%3A36.4785538Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zubairRG/providers/Microsoft.RecoveryServices/vaults/clival-remove-test27\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clival-remove-test28\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A34%3A37.8585013Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zubairRG/providers/Microsoft.RecoveryServices/vaults/clival-remove-test28\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clival-remove-test30\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A34%3A39.0004914Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zubairRG/providers/Microsoft.RecoveryServices/vaults/clival-remove-test30\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clival-remove-test31\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A34%3A40.8244919Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zubairRG/providers/Microsoft.RecoveryServices/vaults/clival-remove-test31\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"javaVault0\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A34%3A41.2595814Z'\\\"\",\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"663a02b0-c28f-43a9-b342-0696a84b424e\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":null,\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zubairRG/providers/Microsoft.RecoveryServices/vaults/javaVault0\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"testvsd2\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A34%3A42.6196167Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zubairRG/providers/Microsoft.RecoveryServices/vaults/testvsd2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"zimmut-ccy-2\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A34%3A43.6311784Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zubairRG/providers/Microsoft.RecoveryServices/vaults/zimmut-ccy-2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"zimmut-ccy-3\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A34%3A44.6487146Z'\\\"\",\"tags\":{\"test\":\"\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zubairRG/providers/Microsoft.RecoveryServices/vaults/zimmut-ccy-3\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"zimmut-ccy-4\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A34%3A46.3084337Z'\\\"\",\"tags\":{\"b\":\"c\"},\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"33ceead3-dff3-4f78-b7b0-6bdb0e397a33\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Disabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Disabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zubairRG/providers/Microsoft.RecoveryServices/vaults/zimmut-ccy-4\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"zimmut-ccy-5\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A34%3A47.7252191Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zubairRG/providers/Microsoft.RecoveryServices/vaults/zimmut-ccy-5\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"zimmut-ccy-6\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A34%3A48.8293757Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zubairRG/providers/Microsoft.RecoveryServices/vaults/zimmut-ccy-6\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"zsdtest\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A34%3A49.9215847Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zubairRG/providers/Microsoft.RecoveryServices/vaults/zsdtest\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"ztestsdvault0\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A34%3A51.0038368Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Disabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zubairRG/providers/Microsoft.RecoveryServices/vaults/ztestsdvault0\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"ztestvault1\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A34%3A52.0054435Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zubairRG/providers/Microsoft.RecoveryServices/vaults/ztestvault1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"abcc-copilot-test-recovery\",\"etag\":\"W/\\\"datetime'2025-08-14T09%3A55%3A22.5664171Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abcc-copilot-testing/providers/Microsoft.RecoveryServices/vaults/abcc-copilot-test-recovery\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"network-without-pv\",\"etag\":\"W/\\\"datetime'2025-08-14T09%3A55%3A25.3821741Z'\\\"\",\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"90337ed8-7331-443f-ac8e-e0e138e535f6\",\"type\":\"SystemAssigned, + UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cmk.system/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identityea1\":{\"clientId\":\"72141888-2ff1-4b7c-a17c-7c727f93e2da\",\"principalId\":\"6b5aa7f8-362a-4e49-bd0d-d22e2e10ef09\"}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abcc-copilot-testing/providers/Microsoft.RecoveryServices/vaults/network-without-pv/privateEndpointConnections/dgds.1179189406869345093.backup.ee793a38-aabf-48e5-a4fd-053eed3a132b\",\"name\":\"dgds.1179189406869345093.backup.ee793a38-aabf-48e5-a4fd-053eed3a132b\",\"type\":\"Microsoft.RecoveryServices/vaults/privateEndpointConnections\",\"location\":\"eastus2euap\",\"properties\":{\"provisioningState\":\"Failed\",\"privateEndpoint\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abcc-copilot-testing/providers/Microsoft.Network/privateEndpoints/dgds\"},\"groupIds\":[\"AzureBackup\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"None\",\"actionsRequired\":\"None\"}}}],\"privateEndpointStateForBackup\":\"Enabled\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abcc-copilot-testing/providers/Microsoft.RecoveryServices/vaults/network-without-pv\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"abc-droip\",\"etag\":\"W/\\\"datetime'2026-01-28T10%3A24%3A08.9379278Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adigupt-ecy-rg/providers/Microsoft.RecoveryServices/vaults/abc-droip\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"adigupt-ctr-bug-bash-source-vault\",\"etag\":\"W/\\\"datetime'2026-06-04T13%3A24%3A27.7063548Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adigupt-ecy-rg/providers/Microsoft.RecoveryServices/vaults/adigupt-ctr-bug-bash-source-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"adigupt-ecy-rsv-02\",\"etag\":\"W/\\\"datetime'2026-05-14T11%3A04%3A31.455836Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adigupt-ecy-rg/providers/Microsoft.RecoveryServices/vaults/adigupt-ecy-rsv-02\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"adigupt-ecy-sql-archieve-rg\",\"etag\":\"W/\\\"datetime'2026-06-24T14%3A17%3A42.3392956Z'\\\"\",\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseLRS/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cmkTestIdentity\":{\"clientId\":\"a6ead08c-7be8-4e74-9d75-312c475d4257\",\"principalId\":\"a79557be-ef8d-4c3b-b096-bd4395e1883e\"}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":null,\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adigupt-ecy-rg/providers/Microsoft.RecoveryServices/vaults/adigupt-ecy-sql-archieve-rg\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"akkanaseTest\",\"etag\":\"W/\\\"datetime'2025-08-14T09%3A56%3A52.4287316Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adigupt-ecy-rg/providers/Microsoft.RecoveryServices/vaults/akkanaseTest\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"akkanaseTest123\",\"etag\":\"W/\\\"datetime'2025-08-14T09%3A56%3A53.3093425Z'\\\"\",\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"6c569f0f-ea97-471a-ae1b-3d87ced8c2d5\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adigupt-ecy-rg/providers/Microsoft.RecoveryServices/vaults/akkanaseTest123\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"akkanaseTestfa\",\"etag\":\"W/\\\"datetime'2025-08-14T09%3A56%3A55.2484857Z'\\\"\",\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cmk.system/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identity1\":{\"clientId\":\"73571b84-6f37-4bdd-a60f-1121cb5d31d7\",\"principalId\":\"13a05d1f-eae9-47ae-944f-46270c95d12e\"}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":{\"keyVaultProperties\":{\"keyUri\":\"https://akkanaseeuap.vault.azure.net/keys/akkanaseTest\"},\"kekIdentity\":{\"useSystemAssignedIdentity\":false,\"userAssignedIdentity\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cmk.system/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identity1\"},\"infrastructureEncryption\":\"Disabled\"},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adigupt-ecy-rg/providers/Microsoft.RecoveryServices/vaults/akkanaseTestfa\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"bulk-restore-grs\",\"etag\":\"W/\\\"datetime'2026-04-02T10%3A15%3A13.756977Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adigupt-ecy-rg/providers/Microsoft.RecoveryServices/vaults/bulk-restore-grs\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"ctr-ecy-restore-vault\",\"etag\":\"W/\\\"datetime'2026-05-11T19%3A20%3A33.997746Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adigupt-ecy-rg/providers/Microsoft.RecoveryServices/vaults/ctr-ecy-restore-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"ctr-image-vm-testing\",\"etag\":\"W/\\\"datetime'2026-05-14T10%3A28%3A14.1669259Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adigupt-ecy-rg/providers/Microsoft.RecoveryServices/vaults/ctr-image-vm-testing\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"skk\",\"etag\":\"W/\\\"datetime'2025-08-14T09%3A56%3A57.9602875Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adigupt-ecy-rg/providers/Microsoft.RecoveryServices/vaults/skk\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"test\",\"etag\":\"W/\\\"datetime'2025-08-14T09%3A56%3A59.2277276Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adigupt-ecy-rg/providers/Microsoft.RecoveryServices/vaults/test\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"test123withimmutablePrivateEndpoint\",\"etag\":\"W/\\\"datetime'2025-08-14T09%3A57%3A00.5771313Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adigupt-ecy-rg/providers/Microsoft.RecoveryServices/vaults/test123withimmutablePrivateEndpoint\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"testas\",\"etag\":\"W/\\\"datetime'2025-08-14T09%3A57%3A02.0344874Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adigupt-ecy-rg/providers/Microsoft.RecoveryServices/vaults/testas\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"akkanaseGRS1\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A00%3A25.7614404Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/akkanaseGRS1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"akkanaseGRSCRR\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A00%3A54.7636161Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/akkanaseGRSCRR\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"akkanaseLRS1\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A01%3A28.1078705Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/akkanaseLRS1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"akkanaseRedundancyTestm1\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A02%3A14.7452465Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/akkanaseRedundancyTestm1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"akkanaseTest\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A02%3A18.4286177Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/akkanaseTest\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"akkanaseTest32\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A02%3A26.6409856Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/akkanaseTest32\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"akkanaseTestfa\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A02%3A40.3959019Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Disabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/akkanaseTestfa\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"akkanaseTestVault1\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A02%3A45.5616169Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/akkanaseTestVault1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"test\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A04%3A02.2756848Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/test\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"teswt\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A05%3A09.1781024Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/teswt\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"BugbashBVSanityadkayeth\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A05%3A30.0468837Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Disabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AdkayethBugbash/providers/Microsoft.RecoveryServices/vaults/BugbashBVSanityadkayeth\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"deleteMe\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A05%3A34.55989Z'\\\"\",\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cmk.system/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identity1\":{\"clientId\":\"73571b84-6f37-4bdd-a60f-1121cb5d31d7\",\"principalId\":\"13a05d1f-eae9-47ae-944f-46270c95d12e\"}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":{\"keyVaultProperties\":{\"keyUri\":\"https://testabd.vault.azure.net/keys/sdfads\"},\"kekIdentity\":{\"useSystemAssignedIdentity\":false,\"userAssignedIdentity\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cmk.system/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identity1\"},\"infrastructureEncryption\":\"Disabled\"},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AdkayethBugbash/providers/Microsoft.RecoveryServices/vaults/deleteMe\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"sdfsdf\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A05%3A38.9589474Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AdkayethBugbash/providers/Microsoft.RecoveryServices/vaults/sdfsdf\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"test\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A06%3A21.8060142Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AdkayethBugbash/providers/Microsoft.RecoveryServices/vaults/test\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"adkImmutabilityVault\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A06%3A28.1841956Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayethImmutability/providers/Microsoft.RecoveryServices/vaults/adkImmutabilityVault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"dsfsdfs\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A06%3A32.2993767Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayethImmutability/providers/Microsoft.RecoveryServices/vaults/dsfsdfs\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"testVaultCreation234\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A06%3A37.786952Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayethImmutability/providers/Microsoft.RecoveryServices/vaults/testVaultCreation234\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"akkanaseTest123\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A09%3A56.3730561Z'\\\"\",\"tags\":{\"purpose\":\"testing\",\"owner\":\"akkanase\",\"DoNotUse\":\"yes\"},\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"UserAssigned\",\"userAssignedIdentities\":{}},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":{\"keyVaultProperties\":{\"keyUri\":\"https://te1st123123.vault.azure.net/keys/test123sdf\"},\"kekIdentity\":{\"useSystemAssignedIdentity\":false,\"userAssignedIdentity\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_bugbash-ecy-rg_aksbugbashtest1_eastus2euap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/aksbugbashtest1-agentpool\"},\"infrastructureEncryption\":\"Disabled\"},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"PermanentlyDisabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/afstests/providers/Microsoft.RecoveryServices/vaults/akkanaseTest123\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"no-soft-delete\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A15%3A07.769326Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/afstests/providers/Microsoft.RecoveryServices/vaults/no-soft-delete\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"test\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A15%3A19.1666037Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/afstests/providers/Microsoft.RecoveryServices/vaults/test\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"test-sd\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A15%3A53.0675265Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/afstests/providers/Microsoft.RecoveryServices/vaults/test-sd\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"akkanaseIdentity\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A16%3A37.2800812Z'\\\"\",\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"3d3b4fd8-bfb7-4d43-ae8f-96719ed2a8c4\",\"type\":\"SystemAssigned, UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cmk.system/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identity2\":{\"clientId\":\"c105dcb0-b19f-4d55-adba-749e0037c42e\",\"principalId\":\"ab44c749-c400-4689-bcd1-128d7ecefd94\"}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanase/providers/Microsoft.RecoveryServices/vaults/akkanaseIdentity\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"akkanaseTest\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A16%3A58.458163Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanase/providers/Microsoft.RecoveryServices/vaults/akkanaseTest\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"akkanaseTest321\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A16%3A59.6687675Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"50d31b4c-e6e1-4537-af78-aac55dddb7df\",\"type\":\"SystemAssigned, UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cmk.system/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identity1\":{\"clientId\":\"73571b84-6f37-4bdd-a60f-1121cb5d31d7\",\"principalId\":\"13a05d1f-eae9-47ae-944f-46270c95d12e\"}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":{\"keyVaultProperties\":{\"keyUri\":\"https://akkanaseeuap.vault.azure.net/keys/akkanaseTest\"},\"kekIdentity\":{\"useSystemAssignedIdentity\":false,\"userAssignedIdentity\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cmk.system/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identity1\"},\"infrastructureEncryption\":\"Enabled\"},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanase/providers/Microsoft.RecoveryServices/vaults/akkanaseTest321\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"akkanaseTest32123\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A17%3A01.083306Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanase/providers/Microsoft.RecoveryServices/vaults/akkanaseTest32123\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"akkanase-diskaccess\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A23%3A50.298769Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanase-diskaccess/providers/Microsoft.RecoveryServices/vaults/akkanase-diskaccess\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"akkanaseTest3281\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A24%3A16.9770603Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanase-diskaccess/providers/Microsoft.RecoveryServices/vaults/akkanaseTest3281\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"akkanase29402227\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A17%3A13.1863539Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseAFSTest/providers/Microsoft.RecoveryServices/vaults/akkanase29402227\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"zrs123\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A19%3A33.7594624Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseAFSTest/providers/Microsoft.RecoveryServices/vaults/zrs123\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"test123\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A21%3A59.7608232Z'\\\"\",\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"f709b73a-af21-409a-89ad-4f2ce95512ec\",\"type\":\"SystemAssigned, UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cmk.system/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identity1\":{\"clientId\":\"73571b84-6f37-4bdd-a60f-1121cb5d31d7\",\"principalId\":\"13a05d1f-eae9-47ae-944f-46270c95d12e\"}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseCcyGrs/providers/Microsoft.RecoveryServices/vaults/test123\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"akkanaseTest\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A23%3A30.5262182Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cmk.system/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identity2\":{\"clientId\":\"c105dcb0-b19f-4d55-adba-749e0037c42e\",\"principalId\":\"ab44c749-c400-4689-bcd1-128d7ecefd94\"}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":{\"keyVaultProperties\":{\"keyUri\":\"https://akkanaseeuap.vault.azure.net/keys/akkanaseTest\"},\"kekIdentity\":{\"useSystemAssignedIdentity\":false,\"userAssignedIdentity\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cmk.system/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identity2\"},\"infrastructureEncryption\":\"Disabled\"},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseCMK/providers/Microsoft.RecoveryServices/vaults/akkanaseTest\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"akkanaseCsbEcy\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A23%3A41.6525892Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseCSB/providers/Microsoft.RecoveryServices/vaults/akkanaseCsbEcy\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"akkanaseGRSVault1\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A24%3A46.6675772Z'\\\"\",\"tags\":{\"Purpose\":\"Testing\",\"Owner\":\"akkanase\",\"Mab @@ -1229,18 +1281,23 @@ interactions: Used\":\"Yes\",\"DeleteBy\":\"01-2025\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"PermanentlyDisabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseGRSVault/providers/Microsoft.RecoveryServices/vaults/akkanaseGRSVault2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"rsvjan21\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A24%3A48.2460689Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseGRSVault/providers/Microsoft.RecoveryServices/vaults/rsvjan21\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"yrdysn\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A24%3A49.1007926Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseGRSVault/providers/Microsoft.RecoveryServices/vaults/yrdysn\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"akkanaseEUS2\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A24%3A50.1844437Z'\\\"\",\"tags\":{\"Purpose\":\"testing\",\"Owner\":\"akkanase\",\"DeleteBy\":\"01-2023\",\"Mab Used\":\"yes\"},\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"3681e1f5-05a6-4f6d-8037-c0b37723f703\",\"type\":\"SystemAssigned, UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/hiagaczr-rg/providers/microsoft.managedidentity/userassignedidentities/hiagauseridentity2\":{\"clientId\":\"6059a064-efa4-4f21-a52a-df467ddd1e60\",\"principalId\":\"a399daa0-490c-4e1c-b7ca-2f4c8175ad9b\"}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"PermanentlyDisabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseIaasVMNew/providers/Microsoft.RecoveryServices/vaults/akkanaseEUS2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"akkanaseTest1\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A26%3A26.7083458Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseTest/providers/Microsoft.RecoveryServices/vaults/akkanaseTest1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"akkanaseTest123\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A26%3A27.8799686Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseTest/providers/Microsoft.RecoveryServices/vaults/akkanaseTest123\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"akkanaseTest321\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A26%3A32.3155403Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseTest/providers/Microsoft.RecoveryServices/vaults/akkanaseTest321\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"akkanaseTestfa\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A26%3A34.7907428Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseTest/providers/Microsoft.RecoveryServices/vaults/akkanaseTestfa\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"akkanaseTestLRS\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A26%3A38.1696548Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseTest/providers/Microsoft.RecoveryServices/vaults/akkanaseTestLRS\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"akkanaseZRSVault\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A34%3A04.9419388Z'\\\"\",\"tags\":{\"Purpose\":\"Testing\",\"Owner\":\"akkanase\",\"Mab - Used\":\"yes\",\"DeleteBy\":\"01-2025\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseZRS/providers/Microsoft.RecoveryServices/vaults/akkanaseZRSVault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"ankurResourceGuardVaultTest1\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A43%3A28.248523Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurResourceGuard1/providers/Microsoft.RecoveryServices/vaults/ankurResourceGuardVaultTest1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"testrsv177\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A43%3A32.030305Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurResourceGuard1/providers/Microsoft.RecoveryServices/vaults/testrsv177\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"demoRSVault-MUA\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A50%3A38.2961298Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurRG137/providers/Microsoft.RecoveryServices/vaults/demoRSVault-MUA\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultnhx5pwynrq4\",\"etag\":\"W/\\\"datetime'2025-09-29T12%3A27%3A03.5527944Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest.rgs72kxt6oxawzkrnuayeszk3nzt75pqs6bkfkuuremjpjmwokluo/providers/Microsoft.RecoveryServices/vaults/clitest-vaultnhx5pwynrq4\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultqhdmhsti6s3\",\"etag\":\"W/\\\"datetime'2025-10-27T08%3A19%3A35.4594676Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_aztxgovpaky74kjushdo4eko53dmg5guohs6b45kkcrnhyhqjlqsi/providers/Microsoft.RecoveryServices/vaults/clitest-vaultqhdmhsti6s3\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaulteeyvtppnlrq\",\"etag\":\"W/\\\"datetime'2025-10-27T09%3A05%3A44.914843Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_dr3gb3wzru/providers/Microsoft.RecoveryServices/vaults/clitest-vaulteeyvtppnlrq\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaulth4kh2lwo3ix\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A06%3A42.5748541Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_h25oswkkpz/providers/Microsoft.RecoveryServices/vaults/clitest-vaulth4kh2lwo3ix\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultvw725vnz6nk\",\"etag\":\"W/\\\"datetime'2025-10-27T09%3A13%3A16.4509471Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_hb7icahwjdjivpzi766cu4tb46d7seb7aspu5lppmqihithjzirxi/providers/Microsoft.RecoveryServices/vaults/clitest-vaultvw725vnz6nk\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vault000004\",\"etag\":\"W/\\\"datetime'2025-10-27T13%3A42%3A03.3640265Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000004\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vault000005\",\"etag\":\"W/\\\"datetime'2025-10-27T13%3A44%3A14.953657Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Disabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vault000002\",\"etag\":\"W/\\\"datetime'2025-10-27T13%3A40%3A49.6290441Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vault000003\",\"etag\":\"W/\\\"datetime'2025-10-27T13%3A41%3A57.1007886Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vault7mxxlft3ltp\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A11%3A09.2250502Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_jq7g3b3af4/providers/Microsoft.RecoveryServices/vaults/clitest-vault7mxxlft3ltp\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultfnn4wvrjbee\",\"etag\":\"W/\\\"datetime'2025-10-27T08%3A24%3A38.797138Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_sip4ch76sj/providers/Microsoft.RecoveryServices/vaults/clitest-vaultfnn4wvrjbee\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultehcljeqp5b7\",\"etag\":\"W/\\\"datetime'2025-10-27T10%3A02%3A21.1908354Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_teaunbt7zh4aajutojc7bkqfmrov7uvngaxfqqpfmjtoui52lu4qx/providers/Microsoft.RecoveryServices/vaults/clitest-vaultehcljeqp5b7\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vault3jxvjdveygp\",\"etag\":\"W/\\\"datetime'2025-10-27T09%3A11%3A27.310114Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_znqbkpa6fr/providers/Microsoft.RecoveryServices/vaults/clitest-vault3jxvjdveygp\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"ztestdeletethisvault1\",\"etag\":\"W/\\\"datetime'2025-10-24T09%3A29%3A40.2343797Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_randomtestingrg/providers/Microsoft.RecoveryServices/vaults/ztestdeletethisvault1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vault-secondary-donotuse\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A55%3A00.2608233Z'\\\"\",\"tags\":{\"Owner\":\"akneema\",\"Purpose\":\"Testing\",\"MABUsed\":\"Yes\",\"DeleteBy\":\"12-9999\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-rg-donotuse/providers/Microsoft.RecoveryServices/vaults/clitest-vault-secondary-donotuse\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vault65k4kh6ktaf\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A39%3A40.8768142Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2bg3cbkaqf/providers/Microsoft.RecoveryServices/vaults/clitest-vault65k4kh6ktaf\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultqais36fqgin\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A39%3A42.8221878Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2rgxr5gfjtccsjn6gbc7xrit6gy34fqc5uqxlfdec5xe4uz3s4smat2wrjya6b5go/providers/Microsoft.RecoveryServices/vaults/clitest-vaultqais36fqgin\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultqkax5oaneau\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A39%3A44.5386356Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg33op5uzqbz/providers/Microsoft.RecoveryServices/vaults/clitest-vaultqkax5oaneau\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultxwdk54obumt\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A39%3A44.916514Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3hcuks3vwd/providers/Microsoft.RecoveryServices/vaults/clitest-vaultxwdk54obumt\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultitnv4jgu6vn\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A40%3A21.5107452Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3qtvuvtx6x/providers/Microsoft.RecoveryServices/vaults/clitest-vaultitnv4jgu6vn\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultjvh7pnr66io\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A40%3A22.8803048Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3qzvnzmjgoqkfdzre37jgukbtm5okudm3yfcn54wf5i2yrx4cais2lbxc6wqvxxu6/providers/Microsoft.RecoveryServices/vaults/clitest-vaultjvh7pnr66io\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vault3ollswe2psc\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A40%3A25.0416098Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg47mqv43kwb/providers/Microsoft.RecoveryServices/vaults/clitest-vault3ollswe2psc\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultj6d6o7l2nfq\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A40%3A26.6680868Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg4c4fr4iol2n6asyvyaxaso4szgowrjlcjwbgubohhp64z473hzayqx32berwezqee/providers/Microsoft.RecoveryServices/vaults/clitest-vaultj6d6o7l2nfq\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultohm6lktembg\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A40%3A29.9050459Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg4fw5qlufuw/providers/Microsoft.RecoveryServices/vaults/clitest-vaultohm6lktembg\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaulteutiggudzz6\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A40%3A32.5581924Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg4jep3kixoy/providers/Microsoft.RecoveryServices/vaults/clitest-vaulteutiggudzz6\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vault37ufk5r5ozg\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A40%3A33.1899895Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg4ur4lf4qwyolb5zyvnr3fmneudycxpyz7lsrq5klhujpoae6py7dbj4eiexp5ivf5/providers/Microsoft.RecoveryServices/vaults/clitest-vault37ufk5r5ozg\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vault63spw23tqen\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A40%3A34.7414909Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg5asmzai6ku/providers/Microsoft.RecoveryServices/vaults/clitest-vault63spw23tqen\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultwh7nmgzm5ep\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A40%3A50.0495682Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg5xu7543w7spf42za2mn4dzqpwexmclj4pgs55ja65m5lc4yaeha3elbb2ubqqewxy/providers/Microsoft.RecoveryServices/vaults/clitest-vaultwh7nmgzm5ep\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaulttehwrzeu73p\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A40%3A51.2681763Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg67g2vnygkjgrt2q54nrhpkdet4c6sxg4ndofu2eqgh4evrzthbjjiilycbkzvzg5z/providers/Microsoft.RecoveryServices/vaults/clitest-vaulttehwrzeu73p\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultamwfm52xmeh\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A40%3A51.983946Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg6dy534jexa/providers/Microsoft.RecoveryServices/vaults/clitest-vaultamwfm52xmeh\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultwoccjwthpzb\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A40%3A52.4847857Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg6khejhxutb/providers/Microsoft.RecoveryServices/vaults/clitest-vaultwoccjwthpzb\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vault7ksvlz5ry57\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A40%3A52.7556987Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg6msouzoxmw/providers/Microsoft.RecoveryServices/vaults/clitest-vault7ksvlz5ry57\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultbkcpk2o3blt\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A42%3A03.6808911Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg723a4eqpp2uszzujz4obkfangjatn3tl2m7gmicgvccigesqfl5sfhdzjjve372pv/providers/Microsoft.RecoveryServices/vaults/clitest-vaultbkcpk2o3blt\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultbswg24c7zxseziyblsud62mqnymhkup6swdf7\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A42%3A05.3983388Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg72aqcrw7d5wtheix7gspdnmgwp37ufhzvf646dkfeuqvftbzxmwex4xiujj43tj6i/providers/Microsoft.RecoveryServices/vaults/clitest-vaultbswg24c7zxseziyblsud62mqnymhkup6swdf7\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultfo3iuqmr36l\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A42%3A06.6309431Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg72aqcrw7d5wtheix7gspdnmgwp37ufhzvf646dkfeuqvftbzxmwex4xiujj43tj6i/providers/Microsoft.RecoveryServices/vaults/clitest-vaultfo3iuqmr36l\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultjps26s3vkro\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A42%3A08.7792525Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg7cucbizzd5/providers/Microsoft.RecoveryServices/vaults/clitest-vaultjps26s3vkro\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultpgk5xlaa4z2\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A42%3A15.5960596Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg7ytcrgwbjp/providers/Microsoft.RecoveryServices/vaults/clitest-vaultpgk5xlaa4z2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vault5zxsqzdqxku\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A42%3A16.7087016Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg7yyrnbsvcm/providers/Microsoft.RecoveryServices/vaults/clitest-vault5zxsqzdqxku\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultnap3nzblec7\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A42%3A17.9123145Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg7zxbmjfftz/providers/Microsoft.RecoveryServices/vaults/clitest-vaultnap3nzblec7\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultmkblhfrsq4m\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A42%3A19.8516909Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgahf3tgqwv7/providers/Microsoft.RecoveryServices/vaults/clitest-vaultmkblhfrsq4m\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultjyb3sbzr2jr\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A42%3A20.9683317Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgahgpmi2cpzcq5jtv7lqwisjxw35nb4sroxt7rar4hntibhfsf6eim3wiubit4qsfc/providers/Microsoft.RecoveryServices/vaults/clitest-vaultjyb3sbzr2jr\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultpguf7ztztux\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A42%3A22.8697204Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgahlurnanmm/providers/Microsoft.RecoveryServices/vaults/clitest-vaultpguf7ztztux\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultt4wqn7jdgmi\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A42%3A26.2836226Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgart6fnulvh4d5iuhwvyfovhufdslruiv5afcbfdllnhqw4g73u7zzh2aagqy73hru/providers/Microsoft.RecoveryServices/vaults/clitest-vaultt4wqn7jdgmi\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultkvhtussu5rz\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A42%3A27.2992962Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgayeccgm3vp/providers/Microsoft.RecoveryServices/vaults/clitest-vaultkvhtussu5rz\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultbiexkxvg4zy\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A44%3A06.1115302Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbq3yof5nlzlywpgn6di7eq4b7igsxczzlqqan5f2ye6txjoh3xkrqqngsrcz3voen/providers/Microsoft.RecoveryServices/vaults/clitest-vaultbiexkxvg4zy\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vault75p46maplcs\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A44%3A29.759921Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbs4r3blwcg/providers/Microsoft.RecoveryServices/vaults/clitest-vault75p46maplcs\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vault57v3kafwdfm\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A45%3A30.7882834Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbsz32pqjpl/providers/Microsoft.RecoveryServices/vaults/clitest-vault57v3kafwdfm\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaulttgqhxrt7usf\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A45%3A32.4167601Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbtymrer5lybiney2hjf63wiv6m4bfy4bx3frfvomov7zwmydhwdjby4q2e2qom2yq/providers/Microsoft.RecoveryServices/vaults/clitest-vaulttgqhxrt7usf\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultml7cvf2azby\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A45%3A33.323468Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbztq7mogmw/providers/Microsoft.RecoveryServices/vaults/clitest-vaultml7cvf2azby\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultlc3ffj5mvbm\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A45%3A45.026702Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgcef4mvmbhp/providers/Microsoft.RecoveryServices/vaults/clitest-vaultlc3ffj5mvbm\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vault6bsy3xb4aap\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A45%3A50.4849464Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgcuoiullr4besuyzqgagrmj3ep32oq3mbzazzy6l7c5vmlmjagz2zhzesozayda2wh/providers/Microsoft.RecoveryServices/vaults/clitest-vault6bsy3xb4aap\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultbe4dlgt2lpm\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A45%3A52.3793363Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgd2nvyrskhg/providers/Microsoft.RecoveryServices/vaults/clitest-vaultbe4dlgt2lpm\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultxmhic53jxen\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A46%3A05.214208Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgdluc5oguoz3myl5qe6osadsqvbncntorflnndxdzo2hvzrw26u2pkalhbdjmwbtqv/providers/Microsoft.RecoveryServices/vaults/clitest-vaultxmhic53jxen\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultxbfk5qjts6l\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A46%3A06.8326872Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgdndsqcnmop7g4vi7rsk6ybemgegz4dttpsnss2l2qtviqz3657d7olez2js32iugz/providers/Microsoft.RecoveryServices/vaults/clitest-vaultxbfk5qjts6l\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vault2tdcuvjpity\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A46%3A09.1169525Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgds4de4zrjy/providers/Microsoft.RecoveryServices/vaults/clitest-vault2tdcuvjpity\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultjr4jmsi2eiu\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A46%3A09.6967664Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgds7bi4bu3bc5pqz5jrwlagohwyea7bkuevt7ijgyei254vdr4ti6upa6mnijpjfbk/providers/Microsoft.RecoveryServices/vaults/clitest-vaultjr4jmsi2eiu\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultafe2sdm47xz\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A46%3A10.8983794Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgdt7oy3fzyp/providers/Microsoft.RecoveryServices/vaults/clitest-vaultafe2sdm47xz\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vault5vsucjbzarw\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A46%3A19.4386323Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeieca3mc5v/providers/Microsoft.RecoveryServices/vaults/clitest-vault5vsucjbzarw\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaulttnc5n5ijuzz\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A46%3A20.365335Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgesi4bpmzxr/providers/Microsoft.RecoveryServices/vaults/clitest-vaulttnc5n5ijuzz\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultjd6w7jfv2bq\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A46%3A21.9488249Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgf5gzj463lafuhlg2nwntquakqgbbbdfavyz5tsijqmsfk3jzsr7w73xoq76y23nti/providers/Microsoft.RecoveryServices/vaults/clitest-vaultjd6w7jfv2bq\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultbhxymvkehbl\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A46%3A22.6885869Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgfdjr374owj/providers/Microsoft.RecoveryServices/vaults/clitest-vaultbhxymvkehbl\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vault7mubxheaf3t\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A46%3A23.6022932Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgfhjnqlf6uz/providers/Microsoft.RecoveryServices/vaults/clitest-vault7mubxheaf3t\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultuvwpvrw3pnw\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A46%3A27.0311904Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgfruuuncw2w/providers/Microsoft.RecoveryServices/vaults/clitest-vaultuvwpvrw3pnw\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultxgqipdoaude\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A46%3A29.2034914Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgfyqr2f73ss/providers/Microsoft.RecoveryServices/vaults/clitest-vaultxgqipdoaude\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultav3xtoaj6no\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A46%3A31.4637644Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rggfnqctz2a6/providers/Microsoft.RecoveryServices/vaults/clitest-vaultav3xtoaj6no\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultxizu3qwzhlx\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A46%3A31.831646Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgggjpg3yrx5i7uedvs7c3n56a2x76yidyn6bnm3ahicnobaddlewciqoi5zgum4n37/providers/Microsoft.RecoveryServices/vaults/clitest-vaultxizu3qwzhlx\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultrdlzxapz4cw\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A46%3A33.4581227Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rggytctduurd7k6lrkr3nd2ev5sndsbb4vvt6leok4hm7qrxql4ajdcmtjornomcrre/providers/Microsoft.RecoveryServices/vaults/clitest-vaultrdlzxapz4cw\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vault4fwdzxsa4sr\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A46%3A34.6587366Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgh3fp4bjhml/providers/Microsoft.RecoveryServices/vaults/clitest-vault4fwdzxsa4sr\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultksstyz2bqji\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A46%3A34.9546414Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rghlhm5ss2i6rdj2lmudim5sy6muwxfzukjosntesn2sgx5slwj6s4wpcej4cqvre3x/providers/Microsoft.RecoveryServices/vaults/clitest-vaultksstyz2bqji\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultthw3lxxufr2\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A46%3A35.8033694Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rghr3j7i5g5jneijnggfb55qpmmu7oqklu6alfsyqq2k6kc3krzie5odex7fr7nfyct/providers/Microsoft.RecoveryServices/vaults/clitest-vaultthw3lxxufr2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultymggrxlukmk\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A46%3A36.4471614Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgi4uuuikc5s/providers/Microsoft.RecoveryServices/vaults/clitest-vaultymggrxlukmk\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaulthl6cy6qtdor\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A46%3A37.9316839Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgibnxofmo52/providers/Microsoft.RecoveryServices/vaults/clitest-vaulthl6cy6qtdor\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultblftka53s2w\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A47%3A46.3926542Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgiveu7vegifoae36zzhsg62h2jvryowumipeibzhpovnik73edhcj4o6z5gzh6ti34/providers/Microsoft.RecoveryServices/vaults/clitest-vaultblftka53s2w\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vault3nx74hynsys\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A47%3A48.5999406Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgj6ogktzcy4/providers/Microsoft.RecoveryServices/vaults/clitest-vault3nx74hynsys\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultlsyuc4oarrt\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A47%3A50.7732383Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjavqfa3dci/providers/Microsoft.RecoveryServices/vaults/clitest-vaultlsyuc4oarrt\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultcd5mryy3pq6\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A47%3A51.8328967Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjo7vmp22fu/providers/Microsoft.RecoveryServices/vaults/clitest-vaultcd5mryy3pq6\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultxdf36kzh2bh\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A47%3A52.862563Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjvjqgbheja/providers/Microsoft.RecoveryServices/vaults/clitest-vaultxdf36kzh2bh\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultw6sghl7fg72\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A47%3A55.6706556Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgk6my5qsud3ol2slc4j3opiflifcabnc5esbwkj5laxsk3kzrlldgwp6t7twldsc4x/providers/Microsoft.RecoveryServices/vaults/clitest-vaultw6sghl7fg72\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultlpsecrhuz4g\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A47%3A56.5013872Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgkbrinbaopymg3b4u5ksyvne6gywtbb4ady3xil2elsd7nhnhizsm2otrewq7ukze6/providers/Microsoft.RecoveryServices/vaults/clitest-vaultlpsecrhuz4g\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultzjrvaz2temu\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A47%3A59.8842938Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgkjrciekihr/providers/Microsoft.RecoveryServices/vaults/clitest-vaultzjrvaz2temu\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaulttmltqx6ujug\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A48%3A00.4551092Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgks3deugit6/providers/Microsoft.RecoveryServices/vaults/clitest-vaulttmltqx6ujug\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultdd2cms4klvc\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A48%3A02.4284715Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgl3nkztpsosh6kkbdabsmrzlfkuxleazdzuxvqq4fd5zc3vah3y7bgahdxxbuqmvwy/providers/Microsoft.RecoveryServices/vaults/clitest-vaultdd2cms4klvc\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultyzc2qr7oz2r\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A48%3A03.2182165Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgl6dfqhvffv/providers/Microsoft.RecoveryServices/vaults/clitest-vaultyzc2qr7oz2r\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vault5bx3ugmgygp\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A48%3A04.0439498Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgl6wnxfiybx/providers/Microsoft.RecoveryServices/vaults/clitest-vault5bx3ugmgygp\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultozj3mmhyqql\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A48%3A05.3525267Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgln73szhokgzbkwczfj6forrlqvu23avn7ytfrpxt7tt4driu7dswlv5bk34lzcm5q/providers/Microsoft.RecoveryServices/vaults/clitest-vaultozj3mmhyqql\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultbk6mjqjxmhn\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A48%3A06.6161186Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgltqppz5ss5ekly4jigzo2eq2oklpd6ibtlpvbkshpilztkq64jvoejrywwir6woce/providers/Microsoft.RecoveryServices/vaults/clitest-vaultbk6mjqjxmhn\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultimh5b3ekl6v\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A48%3A07.8217293Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmkx7s34knwnhgsls2pcd7konemac2rxqjfqtt7v63x7k2jpagj7y7rrlc3ibptqy2/providers/Microsoft.RecoveryServices/vaults/clitest-vaultimh5b3ekl6v\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultp6roblrfu64\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A48%3A09.790093Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmqp7n3d4mv/providers/Microsoft.RecoveryServices/vaults/clitest-vaultp6roblrfu64\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vault3ts3aj7xtmh\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A48%3A10.7747755Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmukahy54pndlhmnyvfbr3gfmzc2tnwvckw7e6bjecwrlnwisnztycbpyw53hkg6io/providers/Microsoft.RecoveryServices/vaults/clitest-vault3ts3aj7xtmh\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultaowc5z2noxt6mpve4jfvdg5tydmelkc3pq2lv\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A48%3A11.5045393Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmukahy54pndlhmnyvfbr3gfmzc2tnwvckw7e6bjecwrlnwisnztycbpyw53hkg6io/providers/Microsoft.RecoveryServices/vaults/clitest-vaultaowc5z2noxt6mpve4jfvdg5tydmelkc3pq2lv\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultqh75k2vkdmr\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A48%3A12.6931553Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgnklk2g3how/providers/Microsoft.RecoveryServices/vaults/clitest-vaultqh75k2vkdmr\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultoc663vigb2w\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A48%3A13.9357538Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgnltlmkgi2u/providers/Microsoft.RecoveryServices/vaults/clitest-vaultoc663vigb2w\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultmha4kfx4gd47xre2fyj6mus3x22ffzb2wjyw2\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A48%3A14.7115032Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgno2vg4l266otbzbiuw5j4pzzh4m77siw7draagjgpqoksrbljue232p2imvcksegi/providers/Microsoft.RecoveryServices/vaults/clitest-vaultmha4kfx4gd47xre2fyj6mus3x22ffzb2wjyw2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultxa3xhztpvtu\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A48%3A17.2576805Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgnvoelwrvnb/providers/Microsoft.RecoveryServices/vaults/clitest-vaultxa3xhztpvtu\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vault3pufgihfvk7\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A48%3A17.6745463Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgnvp6pc5g7dxrkpc222eytqb6nmnctcbb3kdk2u2c43odblpevtibtla6vmvpmzj3j/providers/Microsoft.RecoveryServices/vaults/clitest-vault3pufgihfvk7\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultrpyba3nnz43\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A48%3A19.9638064Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgoi6qydosfi/providers/Microsoft.RecoveryServices/vaults/clitest-vaultrpyba3nnz43\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultsuscscd6b5y\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A48%3A20.7255605Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgokl4ve3cduutmqx3zbjjonqfuoi7zf4nk452arczqnqywrzyeobfxkko4avqo5ts2/providers/Microsoft.RecoveryServices/vaults/clitest-vaultsuscscd6b5y\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultotbbkjtxtaj\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A48%3A21.2753828Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgooldj62n6ch7hxxvqmo6x5y2vydsyue5d25qcpovyyup3b4zzojnjumds5mojnrag/providers/Microsoft.RecoveryServices/vaults/clitest-vaultotbbkjtxtaj\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultx6tk4nykhno\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A48%3A23.5006641Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgoqq67trjre/providers/Microsoft.RecoveryServices/vaults/clitest-vaultx6tk4nykhno\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultsjfzc7a5qmxkpzu3y2sbuixrl3pjx4kwlp3eb\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A48%3A25.6809598Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgotffkwd5fpzfkflw6txijy3nno3ktes5cuefbo3u262jfbqsfx2z6bbqpk2fhy54o/providers/Microsoft.RecoveryServices/vaults/clitest-vaultsjfzc7a5qmxkpzu3y2sbuixrl3pjx4kwlp3eb\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultexbgejmcend\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A48%3A27.1614821Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgowu2oj3ndo6t35od2rs53gsirzwigoa6yscj6ogjtyhqhsc6cl4yuqxnovyzlwcyz/providers/Microsoft.RecoveryServices/vaults/clitest-vaultexbgejmcend\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vault7m4uluoj7hd\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A48%3A28.601017Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgp5qr37qurxzxrxjtuskkearnstupaxq277d2jqzjyci4i3cyhzczqo26r6vgmnjtb/providers/Microsoft.RecoveryServices/vaults/clitest-vault7m4uluoj7hd\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultbegfaas7jmz\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A48%3A32.8046594Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpidqnhbcir/providers/Microsoft.RecoveryServices/vaults/clitest-vaultbegfaas7jmz\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultizrd5eigmzs\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A48%3A34.6550619Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpiik274b5c/providers/Microsoft.RecoveryServices/vaults/clitest-vaultizrd5eigmzs\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultqxiqco5vnor\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A48%3A36.1865671Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpjoqnu6cat/providers/Microsoft.RecoveryServices/vaults/clitest-vaultqxiqco5vnor\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultwkoh2cbjarm\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A48%3A37.7110748Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpljtsfw7lxg4nxrai36gnbgqs6qmbvkk3beiiqbpqbkwdwto35qk5scnpviniyhxo/providers/Microsoft.RecoveryServices/vaults/clitest-vaultwkoh2cbjarm\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vault4ucvicn4sch\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A49%3A28.4996824Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqmpl3cjtiq/providers/Microsoft.RecoveryServices/vaults/clitest-vault4ucvicn4sch\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaulto2ke4jqomwa\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A49%3A29.7112911Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqsy2zpp6g3/providers/Microsoft.RecoveryServices/vaults/clitest-vaulto2ke4jqomwa\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultxa3qzinq32ct4tilcz6azauicqvu2dxfr5g77\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A49%3A32.4524067Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqvsourg2um3c6ablwfz6ns6h7qcbowz4n6l37ubxgjnwtbtamufsl6gcz2crxlrk6/providers/Microsoft.RecoveryServices/vaults/clitest-vaultxa3qzinq32ct4tilcz6azauicqvu2dxfr5g77\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaulthpbw5s34bko\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A49%3A35.777334Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqw7wm426rvshy6ehztkgiwh2vxq4ltgxckuuqw6v6dxndfnutwb5p3x67oiwyxju5/providers/Microsoft.RecoveryServices/vaults/clitest-vaulthpbw5s34bko\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaulttj52ufwrzro\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A49%3A39.3371858Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqxwksoei53/providers/Microsoft.RecoveryServices/vaults/clitest-vaulttj52ufwrzro\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultewvlpewbc4l\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A49%3A40.9936514Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgrc3jkzpwlcr3wwakox77jcc5yejnonpb4omrfsxnek7lhk33ditojmo6di56kd33r/providers/Microsoft.RecoveryServices/vaults/clitest-vaultewvlpewbc4l\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultzr6lqgfgq4z\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A49%3A42.1222877Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgre7lscogl6/providers/Microsoft.RecoveryServices/vaults/clitest-vaultzr6lqgfgq4z\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultlg3y55oug3o\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A49%3A42.5231581Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgrgslm3qrce/providers/Microsoft.RecoveryServices/vaults/clitest-vaultlg3y55oug3o\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultk2etnwnn36e\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A49%3A44.0566636Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgrlw46nuuq5/providers/Microsoft.RecoveryServices/vaults/clitest-vaultk2etnwnn36e\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultm2vn42q76xo\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A49%3A44.8753995Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgrx33ktqbpq/providers/Microsoft.RecoveryServices/vaults/clitest-vaultm2vn42q76xo\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultxylrozgs2tk\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A49%3A45.500198Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgrxftk6iccbb4vzikjavjxrvjpclpfjvceekivforaot5r5k7dpnosg5lwahjroyp2/providers/Microsoft.RecoveryServices/vaults/clitest-vaultxylrozgs2tk\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultrvnnjmspgtu\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A49%3A47.142668Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgsdjg4s4g3o4blwa3fql3h25zoigszrlhiqeyidoapjlaizqzjato5zl5mxvs55iqv/providers/Microsoft.RecoveryServices/vaults/clitest-vaultrvnnjmspgtu\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultngfyxuuw4ht\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A49%3A48.2143225Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgseham3cwxw/providers/Microsoft.RecoveryServices/vaults/clitest-vaultngfyxuuw4ht\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultypmz74mgckh\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A49%3A49.0670474Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgsqii5io7pr/providers/Microsoft.RecoveryServices/vaults/clitest-vaultypmz74mgckh\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultirqzragbbdb\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A49%3A50.3826229Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgsrwt7fsym3/providers/Microsoft.RecoveryServices/vaults/clitest-vaultirqzragbbdb\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vault4f2giyrpoyh\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A51%3A02.2554519Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtcctfl4ua2dynim2dfypgaotoylnv775vvo74u36e6urroz64kzoh674tjkg6hz37/providers/Microsoft.RecoveryServices/vaults/clitest-vault4f2giyrpoyh\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultswpntoastj4\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A51%3A11.8763516Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgto4pcxgbtm463e6oaew44wax6mgsqfhy3zd4s7wka24usmgjhedaaoaugoummgndq/providers/Microsoft.RecoveryServices/vaults/clitest-vaultswpntoastj4\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultkg55mljaqar\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A51%3A15.6401387Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtxoa4t73iiowggvc7n23ovriz647lwom4kzncygykizvh35ldfhesxdv2n2criqjc/providers/Microsoft.RecoveryServices/vaults/clitest-vaultkg55mljaqar\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaulteurjc2gbt7e\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A51%3A17.712471Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgu5hbhumhqcxgjnrptz76srkqowm4la25xnaqmqh4mp7ytzis3qkg4vmdobaj6cteb/providers/Microsoft.RecoveryServices/vaults/clitest-vaulteurjc2gbt7e\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vault3are2bll3w6\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A51%3A18.9390759Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgu7bg4q3p5t/providers/Microsoft.RecoveryServices/vaults/clitest-vault3are2bll3w6\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultxbhhpqukpv7\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A51%3A21.6092153Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgufjudmjpzx/providers/Microsoft.RecoveryServices/vaults/clitest-vaultxbhhpqukpv7\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultu6htfs26nqh\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A53%3A40.6064564Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rguormbicymt/providers/Microsoft.RecoveryServices/vaults/clitest-vaultu6htfs26nqh\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultf6jo62noeoj\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A53%3A42.2869154Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgutkvmqsrqu/providers/Microsoft.RecoveryServices/vaults/clitest-vaultf6jo62noeoj\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaulthwq3iqbfb4s\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A53%3A43.6944627Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgv24ocqvpdj/providers/Microsoft.RecoveryServices/vaults/clitest-vaulthwq3iqbfb4s\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vault7y4fhdiqv4i\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A54%3A01.1528432Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgva5vlyuayc/providers/Microsoft.RecoveryServices/vaults/clitest-vault7y4fhdiqv4i\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultyjbqxp6mtuu\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A54%3A02.1875107Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgvenkcmmuky/providers/Microsoft.RecoveryServices/vaults/clitest-vaultyjbqxp6mtuu\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultd3wvesi6ym6\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A54%3A05.5004442Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgwfkr3silm3/providers/Microsoft.RecoveryServices/vaults/clitest-vaultd3wvesi6ym6\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultbb7zul236z2\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A54%3A06.3571687Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgwhn5zwkci6/providers/Microsoft.RecoveryServices/vaults/clitest-vaultbb7zul236z2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultk4eqdutogrq\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A54%3A07.8116999Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgwl3udk2zry46qt6wpxpomk5tcz6aj4yytxhiszhsbisjdnfrgzisxeai5cdfk3w6k/providers/Microsoft.RecoveryServices/vaults/clitest-vaultk4eqdutogrq\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultlatshlotpfk\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A54%3A08.5264699Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgwmsx3udfjk/providers/Microsoft.RecoveryServices/vaults/clitest-vaultlatshlotpfk\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultdr4qonfffxf\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A54%3A09.2602342Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgwsht2qhusc/providers/Microsoft.RecoveryServices/vaults/clitest-vaultdr4qonfffxf\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultab3w7xyxrvs\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A54%3A12.6331484Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgxeoki3er7s/providers/Microsoft.RecoveryServices/vaults/clitest-vaultab3w7xyxrvs\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultudr7tyxj2hb\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A54%3A15.8181232Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgxqp5r6uwst/providers/Microsoft.RecoveryServices/vaults/clitest-vaultudr7tyxj2hb\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultts2dx52w2op\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A54%3A17.2806527Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgxz75dffllwwc5trdklyvt5yplt5ezu42z327dycsyztsiac5hqxp43srveuqb5sam/providers/Microsoft.RecoveryServices/vaults/clitest-vaultts2dx52w2op\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaulthvtb3u5uflr\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A54%3A19.1960364Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgy4q4r753h4/providers/Microsoft.RecoveryServices/vaults/clitest-vaulthvtb3u5uflr\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultkodrrji3ynw\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A54%3A20.8105171Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgyd7li7qt7d/providers/Microsoft.RecoveryServices/vaults/clitest-vaultkodrrji3ynw\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"sfsag\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A07.4465112Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abcc-copilot-testing/providers/Microsoft.RecoveryServices/vaults/sfsag\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"akkanasefasdf\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A14.5424346Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/akkanasefasdf\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"akkanaseGRS\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A08.5009054Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/akkanaseGRS\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"akkanaseTestabc\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A56.1935094Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/akkanaseTestabc\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"TestDoubleSlashVault\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A21.4124879Z'\\\"\",\"tags\":{\"kpl\":\"kjl\"},\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cmk.system/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identity1\":{\"clientId\":\"73571b84-6f37-4bdd-a60f-1121cb5d31d7\",\"principalId\":\"13a05d1f-eae9-47ae-944f-46270c95d12e\"}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":{\"keyVaultProperties\":{\"keyUri\":\"https://cmkkeyvaultea1.vault.azure.net/keys/key1\"},\"kekIdentity\":{\"useSystemAssignedIdentity\":false,\"userAssignedIdentity\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cmk.system/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identity1\"},\"infrastructureEncryption\":\"Disabled\"},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/TestDoubleSlashVault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"afs-pstest-vault\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A00%3A55.4084275Z'\\\"\",\"tags\":{\"MABUsed\":\"yes\",\"Owner\":\"hiaga\",\"Purpose\":\"testing\",\"DeleteBy\":\"01-2099\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/afs-pstest-rg/providers/Microsoft.RecoveryServices/vaults/afs-pstest-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"afsdeletevault\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A34.6718716Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/afstests/providers/Microsoft.RecoveryServices/vaults/afsdeletevault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"akkanaseTest123f\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A20.3470998Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/afstests/providers/Microsoft.RecoveryServices/vaults/akkanaseTest123f\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"crr-test\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A00%3A39.6135011Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":null,\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/afstests/providers/Microsoft.RecoveryServices/vaults/crr-test\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"Donotuse-afsnavigation-ea-vault\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A00%3A39.8823468Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/afstests/providers/Microsoft.RecoveryServices/vaults/Donotuse-afsnavigation-ea-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"akkanaseCmkUserTest\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A06.0633074Z'\\\"\",\"identity\":{\"type\":\"None\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanase-diskaccess/providers/Microsoft.RecoveryServices/vaults/akkanaseCmkUserTest/privateEndpointConnections/akkanasediskaccess.3980868635877947304.backup.b5a72c23-e8d6-4a09-bac3-ba346f4a9cdd\",\"name\":\"akkanasediskaccess.3980868635877947304.backup.b5a72c23-e8d6-4a09-bac3-ba346f4a9cdd\",\"type\":\"Microsoft.RecoveryServices/vaults/privateEndpointConnections\",\"location\":\"eastasia\",\"properties\":{\"provisioningState\":\"Failed\",\"privateEndpoint\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanase-diskaccess/providers/Microsoft.Network/privateEndpoints/akkanasediskaccess\"},\"groupIds\":[\"AzureBackup\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"None\",\"actionsRequired\":\"None\"}}}],\"privateEndpointStateForBackup\":\"Enabled\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanase-diskaccess/providers/Microsoft.RecoveryServices/vaults/akkanaseCmkUserTest\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"akkanaseTest\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A33.5115381Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseAFSTest/providers/Microsoft.RecoveryServices/vaults/akkanaseTest\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"akkanaseTest\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A53.675955Z'\\\"\",\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cmk.system/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identity1\":{\"clientId\":\"73571b84-6f37-4bdd-a60f-1121cb5d31d7\",\"principalId\":\"13a05d1f-eae9-47ae-944f-46270c95d12e\"}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseTest/providers/Microsoft.RecoveryServices/vaults/akkanaseTest/privateEndpointConnections/akkanaseTime.7422943731775250981.backup.503d360e-d81b-4b94-8f13-b68f9a16b2ab\",\"name\":\"akkanaseTime.7422943731775250981.backup.503d360e-d81b-4b94-8f13-b68f9a16b2ab\",\"type\":\"Microsoft.RecoveryServices/vaults/privateEndpointConnections\",\"location\":\"eastasia\",\"properties\":{\"provisioningState\":\"Failed\",\"privateEndpoint\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseTest/providers/Microsoft.Network/privateEndpoints/akkanaseTime\"},\"groupIds\":[\"AzureBackup\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"None\",\"actionsRequired\":\"None\"}}}],\"privateEndpointStateForBackup\":\"Enabled\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":{\"keyVaultProperties\":{\"keyUri\":\"https://cmkkeyvaultea1.vault.azure.net/keys/key1\"},\"kekIdentity\":{\"useSystemAssignedIdentity\":false,\"userAssignedIdentity\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cmk.system/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identity1\"},\"infrastructureEncryption\":\"Disabled\"},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseTest/providers/Microsoft.RecoveryServices/vaults/akkanaseTest\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"akkanaseTestfsa\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A08.5928528Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseTest/providers/Microsoft.RecoveryServices/vaults/akkanaseTestfsa\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"newVault1\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A59.7764529Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseTest/providers/Microsoft.RecoveryServices/vaults/newVault1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"akneema-alert-vault1\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A54.9542223Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-alert-vault1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"akneema-alert-vault2\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A39.4791099Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-alert-vault2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"akneema-alert-vault3\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A02%3A09.4428987Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-alert-vault3\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"eatestvault\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A32.2812449Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/eatestvault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"amchandnEArsv\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A00%3A56.6717012Z'\\\"\",\"tags\":{\"Owner\":\"mabteam\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amchandnEA/providers/Microsoft.RecoveryServices/vaults/amchandnEArsv\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"asmaskar123\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A02%3A09.3409577Z'\\\"\",\"tags\":{\"Owner\":\"asmaskar\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"b779b5de-9095-4102-abb4-72ef36f76315\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":{\"keyVaultProperties\":{\"keyUri\":\"https:\\\\\\\\ab.vault.azure.net\"},\"kekIdentity\":{\"useSystemAssignedIdentity\":true,\"userAssignedIdentity\":null},\"infrastructureEncryption\":\"Disabled\"},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amchandnEA/providers/Microsoft.RecoveryServices/vaults/asmaskar123\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"ankur-vault-resourceguard\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A00%3A29.8091349Z'\\\"\",\"tags\":{\"Owner\":\"hiaga\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurRG137/providers/Microsoft.RecoveryServices/vaults/ankur-vault-resourceguard\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"ankurRSV96\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A00%3A37.9254709Z'\\\"\",\"tags\":{\"Owner\":\"ankur\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurRG137/providers/Microsoft.RecoveryServices/vaults/ankurRSV96\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"AnkurRSVRGTest2\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A34.6928595Z'\\\"\",\"tags\":{\"Owner\":\"ankur\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurRG137/providers/Microsoft.RecoveryServices/vaults/AnkurRSVRGTest2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"RG12\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A15.6757833Z'\\\"\",\"tags\":{\"Owner\":\"ankur\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurRG137/providers/Microsoft.RecoveryServices/vaults/RG12\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"RGVaultTest\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A02%3A09.3939266Z'\\\"\",\"tags\":{\"Owner\":\"ankur\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurRG137/providers/Microsoft.RecoveryServices/vaults/RGVaultTest\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"RSRansomewareHackathonVault\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A52.4816423Z'\\\"\",\"tags\":{\"Name\":\"Hackathon2024Vault\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurRG137/providers/Microsoft.RecoveryServices/vaults/RSRansomewareHackathonVault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"RSV2211\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A00%3A28.4209337Z'\\\"\",\"tags\":{\"Owner\":\"ankur\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurRG137/providers/Microsoft.RecoveryServices/vaults/RSV2211\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"RSV2411\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A26.4565902Z'\\\"\",\"tags\":{\"Owner\":\"ankur\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurRG137/providers/Microsoft.RecoveryServices/vaults/RSV2411\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"RSV241111\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A00%3A26.2731674Z'\\\"\",\"tags\":{\"Owner\":\"ankur\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurRG137/providers/Microsoft.RecoveryServices/vaults/RSV241111\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"RSVaultForTesting\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A00%3A26.5230228Z'\\\"\",\"tags\":{\"Owner\":\"ankur\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurRG137/providers/Microsoft.RecoveryServices/vaults/RSVaultForTesting\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"testVault1891\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A35.8991671Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurRG137/providers/Microsoft.RecoveryServices/vaults/testVault1891\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"TestVault219\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A02%3A11.7795568Z'\\\"\",\"tags\":{\"Owner\":\"ankur\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurRG137/providers/Microsoft.RecoveryServices/vaults/TestVault219\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"TestVault2610\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A04.9739311Z'\\\"\",\"tags\":{\"Owner\":\"ankur\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurRG137/providers/Microsoft.RecoveryServices/vaults/TestVault2610\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"TestVaultRepro\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A27.4889974Z'\\\"\",\"tags\":{\"Owner\":\"ankur\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurRG137/providers/Microsoft.RecoveryServices/vaults/TestVaultRepro\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"Vault119\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A00%3A55.3624537Z'\\\"\",\"tags\":{\"Owner\":\"ankur\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurRG137/providers/Microsoft.RecoveryServices/vaults/Vault119\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"DonotUse-sapasedatabaseworkload-BVT-Vault\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A34.7148478Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ase-workload.existing/providers/Microsoft.RecoveryServices/vaults/DonotUse-sapasedatabaseworkload-BVT-Vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"sapasedatabaseworkloadexistingvaulteastasia\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A31.0369591Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ase-workload.existing/providers/Microsoft.RecoveryServices/vaults/sapasedatabaseworkloadexistingvaulteastasia\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"DonotUse-sapasedatabase-BVT-Vault\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A33.4685621Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ase.workload/providers/Microsoft.RecoveryServices/vaults/DonotUse-sapasedatabase-BVT-Vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"testcsrsrc\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A02%3A14.0742386Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chandrikarg/providers/Microsoft.RecoveryServices/vaults/testcsrsrc\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"clitest-vaultxiatviv3gcr\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A20.343102Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3kqkpka2eh/providers/Microsoft.RecoveryServices/vaults/clitest-vaultxiatviv3gcr\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"clitest-vaulttvvff46kmtl\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A02%3A16.4548722Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":null,\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg6wcbdfnzw5/providers/Microsoft.RecoveryServices/vaults/clitest-vaulttvvff46kmtl\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"clitest-vault2k3fqj54ds7\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A02%3A16.5867956Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":null,\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgijzhkmzp2x/providers/Microsoft.RecoveryServices/vaults/clitest-vault2k3fqj54ds7\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"clitest-vault5u6owqetawx\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A02%3A04.4827481Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgiv6mglu63d/providers/Microsoft.RecoveryServices/vaults/clitest-vault5u6owqetawx\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"clitest-vaultajgisvb5lcb\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A34.717846Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":null,\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgq2ngzm2cfv23h26gwc2vgkzykpubprmwhfecdhfgigdi5a3igjbwbffa2arltxuoh/providers/Microsoft.RecoveryServices/vaults/clitest-vaultajgisvb5lcb\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"clitest-vaultfkwemaxgduh\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A44.2663608Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":null,\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgujpkcer63dnd7lksn2rtkjzdr5eolvm54rd4rlh3qvhj73vpfdwwu6dfbxof3e7kz/providers/Microsoft.RecoveryServices/vaults/clitest-vaultfkwemaxgduh\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"sqlageacanvault\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A00%3A32.9833111Z'\\\"\",\"tags\":{\"Owner\":\"gesahoo\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/donot-use-bvt-ea-can2-oss/providers/Microsoft.RecoveryServices/vaults/sqlageacanvault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"Donot-Use-Port-Accessibility-Vault\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A32.1952957Z'\\\"\",\"tags\":{\"Purpose\":\"BVT\",\"Owner\":\"akkanase\",\" - DeleteBy\":\"05-2040\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DoNotUse-Accessibility-Test/providers/Microsoft.RecoveryServices/vaults/Donot-Use-Port-Accessibility-Vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"bvt-alert-navigation\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A06.0912894Z'\\\"\",\"tags\":{\"Owner\":\"adigupt\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DONOTUSE-BVT-EA-CAN-RG/providers/Microsoft.RecoveryServices/vaults/bvt-alert-navigation\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"DonotUse-iaasvmsqlworkload-BVT-EUS-Vault\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A44.1184456Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DonotUse-iaasvmsqlworkload-BVT-EUS-RG/providers/Microsoft.RecoveryServices/vaults/DonotUse-iaasvmsqlworkload-BVT-EUS-Vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"donotuse-immutability-bvt-ea-vault\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A02%3A19.396182Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/donotuse-ransomware-bvt-ea-rg/providers/Microsoft.RecoveryServices/vaults/donotuse-immutability-bvt-ea-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"donotuse-immutability-bvt-ea-vault-to-update-state\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A34.6248991Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/donotuse-ransomware-bvt-ea-rg/providers/Microsoft.RecoveryServices/vaults/donotuse-immutability-bvt-ea-vault-to-update-state\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"Donotuse-navigation-vault\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A00%3A43.712146Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/doNotUsePortalBVT/providers/Microsoft.RecoveryServices/vaults/Donotuse-navigation-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"gesahoonew\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A50.3508656Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoohana/providers/Microsoft.RecoveryServices/vaults/gesahoonew\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"newvault\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A13.3711078Z'\\\"\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoohana/providers/Microsoft.RecoveryServices/vaults/newvault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"test\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A00%3A34.2245974Z'\\\"\",\"tags\":{\"Owner\":\"gesahoo\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoohana/providers/Microsoft.RecoveryServices/vaults/test\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"vault966\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A59.733476Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoohana/providers/Microsoft.RecoveryServices/vaults/vault966\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"gesahooAGvault\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A02%3A09.4229116Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gsAG1-EASTASIA/providers/Microsoft.RecoveryServices/vaults/gesahooAGvault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"gvjreddy-eacan-rsvault-vault-softdelete-testing\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A50.3048925Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-eacan-rsvault-vault-softdelete-testing\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"gvjreddy-test-ea-rsvault\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A22.7587145Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-test-ea-rsvault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"gvjreddy-test-ea-rsvault-with-userassigned-cmk\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A00%3A47.1831519Z'\\\"\",\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/gvjreddy-test-ea-mi\":{\"clientId\":\"7af51b8c-f9bf-44b6-9de4-fd3ba8a8d90b\",\"principalId\":\"6b5a9e25-7d46-4c7f-bdf6-165ce283ff9e\"}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":{\"keyVaultProperties\":{\"keyUri\":\"https://gvjreddy-test-ea-kv.vault.azure.net/keys/gvjreddy-test-key-for-vault-encryption-alternate\"},\"kekIdentity\":{\"useSystemAssignedIdentity\":false,\"userAssignedIdentity\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/gvjreddy-test-ea-mi\"},\"infrastructureEncryption\":\"Disabled\"},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-test-ea-rsvault-with-userassigned-cmk\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"hiaga-eacan-acis1\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A00%3A44.8045206Z'\\\"\",\"tags\":{\"MABUsed\":\"Yes\",\"Owner\":\"hiaga\",\"Purpose\":\"testing\",\"DeleteBy\":\"01-2025\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-eacan-acis1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"iaasvm-encryptedvm-vault\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A11.0354497Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvm.encryptedvm-eastasia/providers/Microsoft.RecoveryServices/vaults/iaasvm-encryptedvm-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"donotuse-iaasvm-policymigration-vault-east-asia\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A00%3A39.7734099Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvm.existing.vaults/providers/Microsoft.RecoveryServices/vaults/donotuse-iaasvm-policymigration-vault-east-asia\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"donotuse-iaasvm-selectivedisk-vault-eastasia\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A02%3A12.8399479Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvm.existing.vaults/providers/Microsoft.RecoveryServices/vaults/donotuse-iaasvm-selectivedisk-vault-eastasia\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"iaasmchangepol-eastasia\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A46.5250637Z'\\\"\",\"tags\":{\"Purpose\":\"BVT\",\"Owner\":\"akkanase\",\"MabUsed\":\"yes\",\"DeleteBy\":\"05-2099\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvm.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasmchangepol-eastasia\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"iaasvmexistingvault-eastasia\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A00%3A39.4016227Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvm.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmexistingvault-eastasia\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"newvault\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A53.7748987Z'\\\"\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvm.existing.vaults/providers/Microsoft.RecoveryServices/vaults/newvault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"sarathtestiaasvmvault\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A00%3A57.4552514Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvm.new/providers/Microsoft.RecoveryServices/vaults/sarathtestiaasvmvault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"iaasvmnavigationtestvault\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A25.1353518Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IaasVMNavigationTest-RG-eastasia/providers/Microsoft.RecoveryServices/vaults/iaasvmnavigationtestvault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"donotusegrantpermissionvault\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A00%3A56.5137919Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlinstanceworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/donotusegrantpermissionvault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"donotusesqlinstanceworkloadvault\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A00%3A56.7196736Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlinstanceworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/donotusesqlinstanceworkloadvault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"iaasvmsqlinstanceworkloadexistingvaulteastasia\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A13.6859263Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlinstanceworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlinstanceworkloadexistingvaulteastasia\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"iaasvmsqlworkloadexistingvaulteastasia\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A38.1628661Z'\\\"\",\"tags\":{\"MAB - Used\":\"Yes\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvaulteastasia\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"acisactiontest2\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A00%3A39.0748112Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ishan_softDeleteContainerTest/providers/Microsoft.RecoveryServices/vaults/acisactiontest2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"acisactiontest3\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A31.0119737Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ishan_softDeleteContainerTest/providers/Microsoft.RecoveryServices/vaults/acisactiontest3\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"acisactiontest4\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A00.0757459Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ishan_softDeleteContainerTest/providers/Microsoft.RecoveryServices/vaults/acisactiontest4\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"ankurMuaTestingVault1\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A31.0269648Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ishan_softDeleteContainerTest/providers/Microsoft.RecoveryServices/vaults/ankurMuaTestingVault1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"ankurTestVault\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A02%3A19.3522075Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ishan_softDeleteContainerTest/providers/Microsoft.RecoveryServices/vaults/ankurTestVault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"ankurVault1245\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A58.6051242Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ishan_softDeleteContainerTest/providers/Microsoft.RecoveryServices/vaults/ankurVault1245\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"DMTest\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A03.8575729Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ishan_softDeleteContainerTest/providers/Microsoft.RecoveryServices/vaults/DMTest\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"tp2\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A44.168418Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ishan_softDeleteContainerTest/providers/Microsoft.RecoveryServices/vaults/tp2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"vault1\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A02%3A15.530403Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ishan_softDeleteContainerTest/providers/Microsoft.RecoveryServices/vaults/vault1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"vault123\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A02.5573202Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ishan_softDeleteContainerTest/providers/Microsoft.RecoveryServices/vaults/vault123\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"vault1705delete\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A48.9996419Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ishan_softDeleteContainerTest/providers/Microsoft.RecoveryServices/vaults/vault1705delete\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"vaultsoftdelete120420242\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A02%3A05.7830011Z'\\\"\",\"tags\":{\"Owner\":\"Kalyan\",\"DeleteBy\":\"05-2024\",\"Purpose\":\"Testing\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ishan_softDeleteContainerTest/providers/Microsoft.RecoveryServices/vaults/vaultsoftdelete120420242\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"testVault111\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A07.3925431Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ishansap/providers/Microsoft.RecoveryServices/vaults/testVault111\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"vault2406\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A27.7808297Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ishansap/providers/Microsoft.RecoveryServices/vaults/vault2406\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"vaultNew2406\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A19.0238607Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ishansap/providers/Microsoft.RecoveryServices/vaults/vaultNew2406\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"jsinghVault\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A54.9832048Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jsinghRG/providers/Microsoft.RecoveryServices/vaults/jsinghVault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"mkheranirsv\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A13.4660528Z'\\\"\",\"tags\":{\"Owner\":\"mkherani\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mkherani/providers/Microsoft.RecoveryServices/vaults/mkheranirsv\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"ankurMuaTestingVault1\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A47.7423642Z'\\\"\",\"tags\":{\"Owner\":\"ishanjindal\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redundancyTestingVault/providers/Microsoft.RecoveryServices/vaults/ankurMuaTestingVault1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"argTest2\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A44.1454306Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redundancyTestingVault/providers/Microsoft.RecoveryServices/vaults/argTest2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"hotfix1\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A26.2786927Z'\\\"\",\"tags\":{\"Owner\":\"ishanjindal\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redundancyTestingVault/providers/Microsoft.RecoveryServices/vaults/hotfix1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"hotfix2\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A00%3A42.4858517Z'\\\"\",\"tags\":{\"Owner\":\"ishanjindal\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redundancyTestingVault/providers/Microsoft.RecoveryServices/vaults/hotfix2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"hotfixTest1\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A21.5354177Z'\\\"\",\"tags\":{\"Owner\":\"ishanjindal\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redundancyTestingVault/providers/Microsoft.RecoveryServices/vaults/hotfixTest1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"hotfixTest2\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A02%3A17.1094956Z'\\\"\",\"tags\":{\"Owner\":\"ishanjindal\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redundancyTestingVault/providers/Microsoft.RecoveryServices/vaults/hotfixTest2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"hotfixTest3\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A01.4619495Z'\\\"\",\"tags\":{\"Owner\":\"ishanjindal\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redundancyTestingVault/providers/Microsoft.RecoveryServices/vaults/hotfixTest3\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"oldFlowTest1\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A55.0221817Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redundancyTestingVault/providers/Microsoft.RecoveryServices/vaults/oldFlowTest1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"test1\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A00%3A48.2905166Z'\\\"\",\"tags\":{\"Owner\":\"ishanjindal\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redundancyTestingVault/providers/Microsoft.RecoveryServices/vaults/test1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"timepass1\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A02.520341Z'\\\"\",\"tags\":{\"Owner\":\"ishanjindal\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redundancyTestingVault/providers/Microsoft.RecoveryServices/vaults/timepass1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"ResourceMove-b890e7-0\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A26.3726385Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ResourceMoverRG-southeastasia-eastasia-sea/providers/Microsoft.RecoveryServices/vaults/ResourceMove-b890e7-0\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"testvaultishan\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A02%3A15.0936531Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RG_BTALTYAP\u0131GUVENLIK/providers/Microsoft.RecoveryServices/vaults/testvaultishan\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"saphanaworkloadexistingvaulteastasia\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A02%3A02.1790722Z'\\\"\",\"tags\":{\"MABUsed\":\"Yes\"},\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cmk.system/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identity1\":{\"clientId\":\"73571b84-6f37-4bdd-a60f-1121cb5d31d7\",\"principalId\":\"13a05d1f-eae9-47ae-944f-46270c95d12e\"},\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cmk.system/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identity2\":{\"clientId\":\"c105dcb0-b19f-4d55-adba-749e0037c42e\",\"principalId\":\"ab44c749-c400-4689-bcd1-128d7ecefd94\"},\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dimunj_mua_rm_test/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testUAMIECY\":{\"clientId\":\"d84cf4ae-ec92-4843-8909-3f96e243a737\",\"principalId\":\"714861d4-74f2-460f-b4c1-0813a88faddb\"}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":null,\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/saphanaworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/saphanaworkloadexistingvaulteastasia\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"sarath-afs-hardening-vault\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A08.6668101Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-afs-hardening-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"sarath-dmtest-sourcevault\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A02%3A00.9987497Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-dmtest-sourcevault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"sarath-securescore-vault\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A16.3394022Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-securescore-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"sarathhanatarget\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A06.0962868Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarathhanatarget\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"sarathsourcevault1\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A56.098564Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarathsourcevault1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"sarathsourcevault2\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A44.1814178Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarathsourcevault2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"sarathsourcevault3\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A02%3A14.2601319Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarathsourcevault3\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"sarathtargetvault2\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A02%3A16.3439351Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarathtargetvault2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"vault132\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A21.4504658Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/vault132\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"vault227\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A00%3A41.2615542Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/vault227\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"vault251\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A00%3A29.6912018Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/vault251\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"vault5512\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A00%3A26.2142005Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/vault5512\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"sarathsourcevault1\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A16.7231816Z'\\\"\",\"tags\":{\"Owner\":\"sarath\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarathmovedrg4/providers/Microsoft.RecoveryServices/vaults/sarathsourcevault1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"sarathtargetvault1\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A00%3A43.6771662Z'\\\"\",\"tags\":{\"Owner\":\"sarath\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarathmovedrg4/providers/Microsoft.RecoveryServices/vaults/sarathtargetvault1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"softdeletevault-1403-1\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A02%3A10.5032911Z'\\\"\",\"tags\":{\"Owner\":\"Ishan;ishanjindal\",\"Purpose\":\"Testing\",\"DeleteBy\":\"05-2024\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vault_sd/providers/Microsoft.RecoveryServices/vaults/softdeletevault-1403-1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"vaultalerttest150225\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A02%3A13.3856423Z'\\\"\",\"tags\":{\"Owner\":\"Kalyan\",\"Purpose\":\"Testing\",\"DeleteBy\":\"10-2025\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vaultsd/providers/Microsoft.RecoveryServices/vaults/vaultalerttest150225\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"vaultsd-180901-2\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A44.1924028Z'\\\"\",\"tags\":{\"Owner\":\"Kalyan\",\"DeleteBy\":\"11-2024\",\"Purpose\":\"TEsting\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vaultsd/providers/Microsoft.RecoveryServices/vaults/vaultsd-180901-2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"vaultsd180924-1\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A04.9969192Z'\\\"\",\"tags\":{\"Owner\":\"Kalyan\",\"DeleteBy\":\"11-2024\",\"Purpose\":\"Testing\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vaultsd/providers/Microsoft.RecoveryServices/vaults/vaultsd180924-1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"vepothir-sql-snapshot-rsv\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A00%3A55.4623966Z'\\\"\",\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"74042e57-15b4-4f12-88e4-27f074e74c05\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vepothir-rg-ram-sub/providers/Microsoft.RecoveryServices/vaults/vepothir-sql-snapshot-rsv\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}}],\"nextLink\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/vaults?api-version=2025-08-01&%24skiptoken=7dDPT8IwFMDxv4UmetGyrmUKJMagImroNDAmLFxK9xiD%2fUpbJhvhf3d48uzZ28v38N7L54gyOJhxnO006h%2fRcDD1ZlM6nA0%2bUB9tjCl037JSkYkIUshMW9R7BW2Zp5ber7RUcWHiPNMW6zLSAZth5twC7hAHcA96AlNKmGOHUkJXWoXKyzgEpS0eS5XrfG3aE5B5CaqagipjCdoqxT4x%2bl4UMW66brbfUUIdTLqY2JcXtKN3zdF8B9md3eqSFq%2bjmj9NEu5xw%2bsZC6aE8Cc%2fGXtJ8v45NHz7%2btX0QzByt4G32c7rh%2fWCHopw5Nfho1MFLElc9lxJ%2blaKlyG%2bsls3pCVTv14xv1pQf82fe3Qx93X44p7n7WqUkGDukvE82ISfByKzQvG0w9yUVwGdYXS6RkKlgyhSEAkDoXf%2btvEcTDi6%2fgHnQu1ANem4%2fG2%2bRP3lv%2frf1JfohE7f\"}" + Used\":\"yes\",\"DeleteBy\":\"01-2025\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseZRS/providers/Microsoft.RecoveryServices/vaults/akkanaseZRSVault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"amansha-imm-02\",\"etag\":\"W/\\\"datetime'2026-06-04T08%3A46%3A18.040392Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amansha-rg/providers/Microsoft.RecoveryServices/vaults/amansha-imm-02\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"ankurResourceGuardVaultTest1\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A43%3A28.248523Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurResourceGuard1/providers/Microsoft.RecoveryServices/vaults/ankurResourceGuardVaultTest1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"testrsv177\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A43%3A32.030305Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurResourceGuard1/providers/Microsoft.RecoveryServices/vaults/testrsv177\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"demoRSVault-MUA\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A50%3A38.2961298Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurRG137/providers/Microsoft.RecoveryServices/vaults/demoRSVault-MUA\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"ABCCSQLInstanceTestVault\",\"etag\":\"W/\\\"datetime'2026-07-17T07%3A56%3A18.0404057Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_abcctestsqlinstancerg/providers/Microsoft.RecoveryServices/vaults/ABCCSQLInstanceTestVault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vault23ykopsnchw\",\"etag\":\"W/\\\"datetime'2026-07-20T07%3A40%3A38.0664478Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_6dhofk7z5y/providers/Microsoft.RecoveryServices/vaults/clitest-vault23ykopsnchw\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultx6cpy5v3tcg\",\"etag\":\"W/\\\"datetime'2026-07-20T07%3A40%3A22.0030691Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_76t2xnx6my/providers/Microsoft.RecoveryServices/vaults/clitest-vaultx6cpy5v3tcg\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultqhdmhsti6s3\",\"etag\":\"W/\\\"datetime'2026-07-20T07%3A39%3A52.9269035Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_aztxgovpaky74kjushdo4eko53dmg5guohs6b45kkcrnhyhqjlqsi/providers/Microsoft.RecoveryServices/vaults/clitest-vaultqhdmhsti6s3\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vault6sqlfc2cs4t\",\"etag\":\"W/\\\"datetime'2026-07-20T07%3A41%3A14.3780942Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_baez54hmbl/providers/Microsoft.RecoveryServices/vaults/clitest-vault6sqlfc2cs4t\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultvbgttzl3yqv\",\"etag\":\"W/\\\"datetime'2026-07-20T07%3A40%3A58.2937079Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_d62mkibysi/providers/Microsoft.RecoveryServices/vaults/clitest-vaultvbgttzl3yqv\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaulteeyvtppnlrq\",\"etag\":\"W/\\\"datetime'2026-07-20T07%3A40%3A16.2947015Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_dr3gb3wzru/providers/Microsoft.RecoveryServices/vaults/clitest-vaulteeyvtppnlrq\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaulth4kh2lwo3ix\",\"etag\":\"W/\\\"datetime'2026-07-20T07%3A39%3A37.2276739Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_h25oswkkpz/providers/Microsoft.RecoveryServices/vaults/clitest-vaulth4kh2lwo3ix\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultvw725vnz6nk\",\"etag\":\"W/\\\"datetime'2026-07-20T07%3A40%3A07.0285109Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_hb7icahwjdjivpzi766cu4tb46d7seb7aspu5lppmqihithjzirxi/providers/Microsoft.RecoveryServices/vaults/clitest-vaultvw725vnz6nk\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vault2hbubota64q\",\"etag\":\"W/\\\"datetime'2026-07-20T07%3A40%3A51.2903519Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_itzxcbe3cd/providers/Microsoft.RecoveryServices/vaults/clitest-vault2hbubota64q\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vault7mxxlft3ltp\",\"etag\":\"W/\\\"datetime'2026-07-20T07%3A39%3A44.7373295Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_jq7g3b3af4/providers/Microsoft.RecoveryServices/vaults/clitest-vault7mxxlft3ltp\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vault000003\",\"etag\":\"W/\\\"datetime'2026-07-21T05%3A02%3A07.0287516Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"costManagementSettings\":{\"granularityLevel\":\"VaultLevel\"},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vault000004\",\"etag\":\"W/\\\"datetime'2026-07-21T05%3A02%3A12.4980463Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"costManagementSettings\":{\"granularityLevel\":\"VaultLevel\"},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000004\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vault000005\",\"etag\":\"W/\\\"datetime'2026-07-21T05%3A04%3A20.8823489Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"costManagementSettings\":{\"granularityLevel\":\"VaultLevel\"},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Disabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vault000002\",\"etag\":\"W/\\\"datetime'2026-07-21T05%3A01%3A00.2552071Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"costManagementSettings\":{\"granularityLevel\":\"VaultLevel\"},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultf64enu2f6eg\",\"etag\":\"W/\\\"datetime'2026-07-20T07%3A41%3A53.8020055Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_qw3m5phfarru4lcfrmlrbpp6vz456kl2uzltyq3sqtvz4a2cp2khn/providers/Microsoft.RecoveryServices/vaults/clitest-vaultf64enu2f6eg\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultrwpggd6zkal\",\"etag\":\"W/\\\"datetime'2026-07-20T07%3A40%3A36.5727274Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_rvugmkl5prak5iefbykpefg5hubw7kya6f55iztyftdr4xx3hhced/providers/Microsoft.RecoveryServices/vaults/clitest-vaultrwpggd6zkal\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultfnn4wvrjbee\",\"etag\":\"W/\\\"datetime'2026-07-20T07%3A40%3A00.7449702Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_sip4ch76sj/providers/Microsoft.RecoveryServices/vaults/clitest-vaultfnn4wvrjbee\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultehcljeqp5b7\",\"etag\":\"W/\\\"datetime'2026-07-20T07%3A39%3A24.6068702Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_teaunbt7zh4aajutojc7bkqfmrov7uvngaxfqqpfmjtoui52lu4qx/providers/Microsoft.RecoveryServices/vaults/clitest-vaultehcljeqp5b7\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultlvilvjdpo66\",\"etag\":\"W/\\\"datetime'2026-07-20T07%3A40%3A30.2725728Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_tisaspz46i/providers/Microsoft.RecoveryServices/vaults/clitest-vaultlvilvjdpo66\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultlvoxwagchuc\",\"etag\":\"W/\\\"datetime'2026-07-20T07%3A39%3A44.3716478Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_tpyrrinjq7/providers/Microsoft.RecoveryServices/vaults/clitest-vaultlvoxwagchuc\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultxpvbrzsvxpp\",\"etag\":\"W/\\\"datetime'2026-07-20T07%3A42%3A00.8727187Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_wnaytgcsbg266od3bejveopxcfxeccvrsqv2wkqeurgrxfe6ygmlb/providers/Microsoft.RecoveryServices/vaults/clitest-vaultxpvbrzsvxpp\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultxjp4bkeod4z\",\"etag\":\"W/\\\"datetime'2026-07-20T07%3A41%3A05.8304979Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_xxydv2hluw/providers/Microsoft.RecoveryServices/vaults/clitest-vaultxjp4bkeod4z\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaults6pfszhe2ck\",\"etag\":\"W/\\\"datetime'2026-07-20T07%3A41%3A45.7344838Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_z67kba7wyip2ylk76yijtmtx7pi7nebo3jnjwglvs5b3xhuophfoh/providers/Microsoft.RecoveryServices/vaults/clitest-vaults6pfszhe2ck\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vault3jxvjdveygp\",\"etag\":\"W/\\\"datetime'2026-07-20T07%3A40%3A32.048704Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_znqbkpa6fr/providers/Microsoft.RecoveryServices/vaults/clitest-vault3jxvjdveygp\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"ztestdeletethisvault1\",\"etag\":\"W/\\\"datetime'2025-10-24T09%3A29%3A40.2343797Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_randomtestingrg/providers/Microsoft.RecoveryServices/vaults/ztestdeletethisvault1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vault-secondary-donotuse\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A55%3A00.2608233Z'\\\"\",\"tags\":{\"Owner\":\"akneema\",\"Purpose\":\"Testing\",\"MABUsed\":\"Yes\",\"DeleteBy\":\"12-9999\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-rg-donotuse/providers/Microsoft.RecoveryServices/vaults/clitest-vault-secondary-donotuse\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultqais36fqgin\",\"etag\":\"W/\\\"datetime'2025-12-12T08%3A49%3A14.6918865Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2rgxr5gfjtccsjn6gbc7xrit6gy34fqc5uqxlfdec5xe4uz3s4smat2wrjya6b5go/providers/Microsoft.RecoveryServices/vaults/clitest-vaultqais36fqgin\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultqkax5oaneau\",\"etag\":\"W/\\\"datetime'2025-12-12T07%3A16%3A02.6645118Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg33op5uzqbz/providers/Microsoft.RecoveryServices/vaults/clitest-vaultqkax5oaneau\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultxwdk54obumt\",\"etag\":\"W/\\\"datetime'2025-12-12T07%3A16%3A05.5605834Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3hcuks3vwd/providers/Microsoft.RecoveryServices/vaults/clitest-vaultxwdk54obumt\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultitnv4jgu6vn\",\"etag\":\"W/\\\"datetime'2025-12-12T08%3A50%3A10.1961569Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3qtvuvtx6x/providers/Microsoft.RecoveryServices/vaults/clitest-vaultitnv4jgu6vn\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultohm6lktembg\",\"etag\":\"W/\\\"datetime'2025-12-12T07%3A17%3A11.7043639Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg4fw5qlufuw/providers/Microsoft.RecoveryServices/vaults/clitest-vaultohm6lktembg\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultamwfm52xmeh\",\"etag\":\"W/\\\"datetime'2025-12-12T07%3A18%3A14.2222988Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg6dy534jexa/providers/Microsoft.RecoveryServices/vaults/clitest-vaultamwfm52xmeh\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vault7ksvlz5ry57\",\"etag\":\"W/\\\"datetime'2025-12-12T07%3A19%3A17.1502376Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg6msouzoxmw/providers/Microsoft.RecoveryServices/vaults/clitest-vault7ksvlz5ry57\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultpgk5xlaa4z2\",\"etag\":\"W/\\\"datetime'2025-12-12T07%3A20%3A20.4952436Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg7ytcrgwbjp/providers/Microsoft.RecoveryServices/vaults/clitest-vaultpgk5xlaa4z2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vault5zxsqzdqxku\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A42%3A16.7087016Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg7yyrnbsvcm/providers/Microsoft.RecoveryServices/vaults/clitest-vault5zxsqzdqxku\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultnap3nzblec7\",\"etag\":\"W/\\\"datetime'2025-12-12T08%3A49%3A29.0802931Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg7zxbmjfftz/providers/Microsoft.RecoveryServices/vaults/clitest-vaultnap3nzblec7\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultpguf7ztztux\",\"etag\":\"W/\\\"datetime'2025-12-12T07%3A22%3A25.3806055Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgahlurnanmm/providers/Microsoft.RecoveryServices/vaults/clitest-vaultpguf7ztztux\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultkvhtussu5rz\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A42%3A27.2992962Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgayeccgm3vp/providers/Microsoft.RecoveryServices/vaults/clitest-vaultkvhtussu5rz\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultbiexkxvg4zy\",\"etag\":\"W/\\\"datetime'2025-12-12T08%3A50%3A25.2793351Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbq3yof5nlzlywpgn6di7eq4b7igsxczzlqqan5f2ye6txjoh3xkrqqngsrcz3voen/providers/Microsoft.RecoveryServices/vaults/clitest-vaultbiexkxvg4zy\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vault75p46maplcs\",\"etag\":\"W/\\\"datetime'2025-12-12T08%3A48%3A38.3244896Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbs4r3blwcg/providers/Microsoft.RecoveryServices/vaults/clitest-vault75p46maplcs\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vault57v3kafwdfm\",\"etag\":\"W/\\\"datetime'2025-12-12T07%3A22%3A29.8891703Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbsz32pqjpl/providers/Microsoft.RecoveryServices/vaults/clitest-vault57v3kafwdfm\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultml7cvf2azby\",\"etag\":\"W/\\\"datetime'2025-12-12T07%3A22%3A33.6139838Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbztq7mogmw/providers/Microsoft.RecoveryServices/vaults/clitest-vaultml7cvf2azby\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vault6bsy3xb4aap\",\"etag\":\"W/\\\"datetime'2025-12-12T08%3A51%3A48.2849686Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgcuoiullr4besuyzqgagrmj3ep32oq3mbzazzy6l7c5vmlmjagz2zhzesozayda2wh/providers/Microsoft.RecoveryServices/vaults/clitest-vault6bsy3xb4aap\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultbe4dlgt2lpm\",\"etag\":\"W/\\\"datetime'2025-12-12T07%3A23%3A36.1440526Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgd2nvyrskhg/providers/Microsoft.RecoveryServices/vaults/clitest-vaultbe4dlgt2lpm\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultxbfk5qjts6l\",\"etag\":\"W/\\\"datetime'2025-12-12T08%3A52%3A32.6508517Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgdndsqcnmop7g4vi7rsk6ybemgegz4dttpsnss2l2qtviqz3657d7olez2js32iugz/providers/Microsoft.RecoveryServices/vaults/clitest-vaultxbfk5qjts6l\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vault2tdcuvjpity\",\"etag\":\"W/\\\"datetime'2025-12-12T07%3A23%3A39.6279406Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgds4de4zrjy/providers/Microsoft.RecoveryServices/vaults/clitest-vault2tdcuvjpity\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultjr4jmsi2eiu\",\"etag\":\"W/\\\"datetime'2025-12-12T08%3A50%3A40.2855561Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgds7bi4bu3bc5pqz5jrwlagohwyea7bkuevt7ijgyei254vdr4ti6upa6mnijpjfbk/providers/Microsoft.RecoveryServices/vaults/clitest-vaultjr4jmsi2eiu\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vault5vsucjbzarw\",\"etag\":\"W/\\\"datetime'2025-12-12T07%3A24%3A41.2872496Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeieca3mc5v/providers/Microsoft.RecoveryServices/vaults/clitest-vault5vsucjbzarw\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaulttnc5n5ijuzz\",\"etag\":\"W/\\\"datetime'2025-12-12T07%3A25%3A44.6710601Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgesi4bpmzxr/providers/Microsoft.RecoveryServices/vaults/clitest-vaulttnc5n5ijuzz\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultjd6w7jfv2bq\",\"etag\":\"W/\\\"datetime'2025-12-12T08%3A50%3A38.1592331Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgf5gzj463lafuhlg2nwntquakqgbbbdfavyz5tsijqmsfk3jzsr7w73xoq76y23nti/providers/Microsoft.RecoveryServices/vaults/clitest-vaultjd6w7jfv2bq\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultbhxymvkehbl\",\"etag\":\"W/\\\"datetime'2025-12-12T07%3A26%3A47.4751Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgfdjr374owj/providers/Microsoft.RecoveryServices/vaults/clitest-vaultbhxymvkehbl\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vault7mubxheaf3t\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A46%3A23.6022932Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgfhjnqlf6uz/providers/Microsoft.RecoveryServices/vaults/clitest-vault7mubxheaf3t\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultksstyz2bqji\",\"etag\":\"W/\\\"datetime'2025-12-12T08%3A50%3A32.1301516Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rghlhm5ss2i6rdj2lmudim5sy6muwxfzukjosntesn2sgx5slwj6s4wpcej4cqvre3x/providers/Microsoft.RecoveryServices/vaults/clitest-vaultksstyz2bqji\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultthw3lxxufr2\",\"etag\":\"W/\\\"datetime'2025-12-12T08%3A51%3A58.6726654Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rghr3j7i5g5jneijnggfb55qpmmu7oqklu6alfsyqq2k6kc3krzie5odex7fr7nfyct/providers/Microsoft.RecoveryServices/vaults/clitest-vaultthw3lxxufr2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultblftka53s2w\",\"etag\":\"W/\\\"datetime'2025-12-12T08%3A50%3A13.146214Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgiveu7vegifoae36zzhsg62h2jvryowumipeibzhpovnik73edhcj4o6z5gzh6ti34/providers/Microsoft.RecoveryServices/vaults/clitest-vaultblftka53s2w\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vault3nx74hynsys\",\"etag\":\"W/\\\"datetime'2025-12-12T07%3A27%3A50.5410063Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgj6ogktzcy4/providers/Microsoft.RecoveryServices/vaults/clitest-vault3nx74hynsys\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultlsyuc4oarrt\",\"etag\":\"W/\\\"datetime'2025-12-12T07%3A27%3A54.0108996Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjavqfa3dci/providers/Microsoft.RecoveryServices/vaults/clitest-vaultlsyuc4oarrt\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultyzc2qr7oz2r\",\"etag\":\"W/\\\"datetime'2025-12-12T07%3A28%3A55.906139Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgl6dfqhvffv/providers/Microsoft.RecoveryServices/vaults/clitest-vaultyzc2qr7oz2r\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vault5bx3ugmgygp\",\"etag\":\"W/\\\"datetime'2025-12-12T07%3A28%3A58.7842199Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgl6wnxfiybx/providers/Microsoft.RecoveryServices/vaults/clitest-vault5bx3ugmgygp\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultozj3mmhyqql\",\"etag\":\"W/\\\"datetime'2025-12-12T08%3A51%3A57.890914Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgln73szhokgzbkwczfj6forrlqvu23avn7ytfrpxt7tt4driu7dswlv5bk34lzcm5q/providers/Microsoft.RecoveryServices/vaults/clitest-vaultozj3mmhyqql\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultimh5b3ekl6v\",\"etag\":\"W/\\\"datetime'2025-12-12T08%3A52%3A24.3235034Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmkx7s34knwnhgsls2pcd7konemac2rxqjfqtt7v63x7k2jpagj7y7rrlc3ibptqy2/providers/Microsoft.RecoveryServices/vaults/clitest-vaultimh5b3ekl6v\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultoc663vigb2w\",\"etag\":\"W/\\\"datetime'2025-12-12T08%3A49%3A53.3795311Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgnltlmkgi2u/providers/Microsoft.RecoveryServices/vaults/clitest-vaultoc663vigb2w\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultxa3xhztpvtu\",\"etag\":\"W/\\\"datetime'2025-12-12T08%3A48%3A42.7280854Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgnvoelwrvnb/providers/Microsoft.RecoveryServices/vaults/clitest-vaultxa3xhztpvtu\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultrpyba3nnz43\",\"etag\":\"W/\\\"datetime'2025-12-12T08%3A51%3A39.2048545Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgoi6qydosfi/providers/Microsoft.RecoveryServices/vaults/clitest-vaultrpyba3nnz43\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultotbbkjtxtaj\",\"etag\":\"W/\\\"datetime'2025-12-12T08%3A51%3A47.1793202Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgooldj62n6ch7hxxvqmo6x5y2vydsyue5d25qcpovyyup3b4zzojnjumds5mojnrag/providers/Microsoft.RecoveryServices/vaults/clitest-vaultotbbkjtxtaj\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultx6tk4nykhno\",\"etag\":\"W/\\\"datetime'2025-12-12T08%3A51%3A16.795972Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgoqq67trjre/providers/Microsoft.RecoveryServices/vaults/clitest-vaultx6tk4nykhno\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultexbgejmcend\",\"etag\":\"W/\\\"datetime'2025-12-12T08%3A51%3A51.8248435Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgowu2oj3ndo6t35od2rs53gsirzwigoa6yscj6ogjtyhqhsc6cl4yuqxnovyzlwcyz/providers/Microsoft.RecoveryServices/vaults/clitest-vaultexbgejmcend\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultqxiqco5vnor\",\"etag\":\"W/\\\"datetime'2025-12-12T07%3A31%3A11.4877604Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpjoqnu6cat/providers/Microsoft.RecoveryServices/vaults/clitest-vaultqxiqco5vnor\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultwkoh2cbjarm\",\"etag\":\"W/\\\"datetime'2025-12-12T08%3A51%3A33.1957637Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpljtsfw7lxg4nxrai36gnbgqs6qmbvkk3beiiqbpqbkwdwto35qk5scnpviniyhxo/providers/Microsoft.RecoveryServices/vaults/clitest-vaultwkoh2cbjarm\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaulto2ke4jqomwa\",\"etag\":\"W/\\\"datetime'2025-12-12T07%3A31%3A13.681058Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqsy2zpp6g3/providers/Microsoft.RecoveryServices/vaults/clitest-vaulto2ke4jqomwa\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaulttj52ufwrzro\",\"etag\":\"W/\\\"datetime'2025-12-12T07%3A31%3A15.7064094Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqxwksoei53/providers/Microsoft.RecoveryServices/vaults/clitest-vaulttj52ufwrzro\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultlg3y55oug3o\",\"etag\":\"W/\\\"datetime'2025-12-12T08%3A51%3A59.1275209Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgrgslm3qrce/providers/Microsoft.RecoveryServices/vaults/clitest-vaultlg3y55oug3o\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultk2etnwnn36e\",\"etag\":\"W/\\\"datetime'2025-12-12T07%3A31%3A20.1119984Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgrlw46nuuq5/providers/Microsoft.RecoveryServices/vaults/clitest-vaultk2etnwnn36e\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultrvnnjmspgtu\",\"etag\":\"W/\\\"datetime'2025-12-12T08%3A52%3A07.8527453Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgsdjg4s4g3o4blwa3fql3h25zoigszrlhiqeyidoapjlaizqzjato5zl5mxvs55iqv/providers/Microsoft.RecoveryServices/vaults/clitest-vaultrvnnjmspgtu\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultngfyxuuw4ht\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A49%3A48.2143225Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgseham3cwxw/providers/Microsoft.RecoveryServices/vaults/clitest-vaultngfyxuuw4ht\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vault4f2giyrpoyh\",\"etag\":\"W/\\\"datetime'2025-12-12T08%3A51%3A32.5819589Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtcctfl4ua2dynim2dfypgaotoylnv775vvo74u36e6urroz64kzoh674tjkg6hz37/providers/Microsoft.RecoveryServices/vaults/clitest-vault4f2giyrpoyh\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultkg55mljaqar\",\"etag\":\"W/\\\"datetime'2025-12-12T08%3A51%3A25.3792466Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtxoa4t73iiowggvc7n23ovriz647lwom4kzncygykizvh35ldfhesxdv2n2criqjc/providers/Microsoft.RecoveryServices/vaults/clitest-vaultkg55mljaqar\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaulteurjc2gbt7e\",\"etag\":\"W/\\\"datetime'2025-12-12T08%3A51%3A33.7895758Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgu5hbhumhqcxgjnrptz76srkqowm4la25xnaqmqh4mp7ytzis3qkg4vmdobaj6cteb/providers/Microsoft.RecoveryServices/vaults/clitest-vaulteurjc2gbt7e\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultu6htfs26nqh\",\"etag\":\"W/\\\"datetime'2025-12-12T07%3A32%3A24.3534104Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rguormbicymt/providers/Microsoft.RecoveryServices/vaults/clitest-vaultu6htfs26nqh\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaulthwq3iqbfb4s\",\"etag\":\"W/\\\"datetime'2025-12-12T07%3A33%3A27.9010315Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgv24ocqvpdj/providers/Microsoft.RecoveryServices/vaults/clitest-vaulthwq3iqbfb4s\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vault7y4fhdiqv4i\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A54%3A01.1528432Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgva5vlyuayc/providers/Microsoft.RecoveryServices/vaults/clitest-vault7y4fhdiqv4i\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultyjbqxp6mtuu\",\"etag\":\"W/\\\"datetime'2025-12-12T08%3A49%3A49.7107033Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgvenkcmmuky/providers/Microsoft.RecoveryServices/vaults/clitest-vaultyjbqxp6mtuu\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultbb7zul236z2\",\"etag\":\"W/\\\"datetime'2025-12-12T07%3A41%3A06.8238388Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgwhn5zwkci6/providers/Microsoft.RecoveryServices/vaults/clitest-vaultbb7zul236z2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultk4eqdutogrq\",\"etag\":\"W/\\\"datetime'2025-12-12T08%3A52%3A01.3008298Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgwl3udk2zry46qt6wpxpomk5tcz6aj4yytxhiszhsbisjdnfrgzisxeai5cdfk3w6k/providers/Microsoft.RecoveryServices/vaults/clitest-vaultk4eqdutogrq\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultdr4qonfffxf\",\"etag\":\"W/\\\"datetime'2025-12-12T08%3A51%3A26.8417821Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgwsht2qhusc/providers/Microsoft.RecoveryServices/vaults/clitest-vaultdr4qonfffxf\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaulthvtb3u5uflr\",\"etag\":\"W/\\\"datetime'2025-12-12T07%3A41%3A13.5346955Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgy4q4r753h4/providers/Microsoft.RecoveryServices/vaults/clitest-vaulthvtb3u5uflr\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultkodrrji3ynw\",\"etag\":\"W/\\\"datetime'2025-12-12T08%3A48%3A35.6383463Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgyd7li7qt7d/providers/Microsoft.RecoveryServices/vaults/clitest-vaultkodrrji3ynw\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultrzk2n76c2ge\",\"etag\":\"W/\\\"datetime'2025-12-12T08%3A51%3A54.0021505Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgye7qrsbohq/providers/Microsoft.RecoveryServices/vaults/clitest-vaultrzk2n76c2ge\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultkp5kmtwtal5\",\"etag\":\"W/\\\"datetime'2025-12-12T07%3A42%3A21.0811195Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgytoc3bdlt3/providers/Microsoft.RecoveryServices/vaults/clitest-vaultkp5kmtwtal5\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultyovqxpe34f4\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A54%3A43.3572622Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgyymobtr3rk/providers/Microsoft.RecoveryServices/vaults/clitest-vaultyovqxpe34f4\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vault4f4kqwll2qr\",\"etag\":\"W/\\\"datetime'2025-12-12T07%3A42%3A23.5403367Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgyzhyosvymr/providers/Microsoft.RecoveryServices/vaults/clitest-vault4f4kqwll2qr\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultfozqtljmy7s\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A54%3A46.9511058Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgz664mkbgvz/providers/Microsoft.RecoveryServices/vaults/clitest-vaultfozqtljmy7s\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"vaultsd180425-2\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A55%3A41.2996206Z'\\\"\",\"tags\":{\"Owner\":\"Kalyan\",\"Purpose\":\"Testing\",\"DeleteBy\":\"10-2025\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/deleterg/providers/Microsoft.RecoveryServices/vaults/vaultsd180425-2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"DonotUse-iaasvmsqlworkload-BVT-Ecy-vault\",\"etag\":\"W/\\\"datetime'2025-08-14T12%3A02%3A25.6245775Z'\\\"\",\"tags\":{\"MABUsed\":\"Yes\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DonotUse-iaasvmsqlworkload-BVT-Ecy-RG/providers/Microsoft.RecoveryServices/vaults/DonotUse-iaasvmsqlworkload-BVT-Ecy-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"newvaultqqq\",\"etag\":\"W/\\\"datetime'2025-08-14T12%3A31%3A14.1289891Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoocreateVMM/providers/Microsoft.RecoveryServices/vaults/newvaultqqq\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"testgesahoo\",\"etag\":\"W/\\\"datetime'2025-08-19T10%3A23%3A52.7906557Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoocreateVMM/providers/Microsoft.RecoveryServices/vaults/testgesahoo\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"testVault22\",\"etag\":\"W/\\\"datetime'2025-10-03T04%3A58%3A13.5286278Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoocreateVMM/providers/Microsoft.RecoveryServices/vaults/testVault22\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"asw1\",\"etag\":\"W/\\\"datetime'2026-07-19T12%3A34%3A16.0051486Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoohana/providers/Microsoft.RecoveryServices/vaults/asw1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"asw2\",\"etag\":\"W/\\\"datetime'2026-07-19T12%3A49%3A12.5917416Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoohana/providers/Microsoft.RecoveryServices/vaults/asw2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"asw3\",\"etag\":\"W/\\\"datetime'2026-07-19T12%3A59%3A48.6677659Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoohana/providers/Microsoft.RecoveryServices/vaults/asw3\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"asw5\",\"etag\":\"W/\\\"datetime'2026-07-19T13%3A01%3A21.6096596Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoohana/providers/Microsoft.RecoveryServices/vaults/asw5\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"grsVault55\",\"etag\":\"W/\\\"datetime'2026-03-07T07%3A32%3A13.2654913Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoohana/providers/Microsoft.RecoveryServices/vaults/grsVault55\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"NONROCVaultECY2\",\"etag\":\"W/\\\"datetime'2026-07-13T07%3A30%3A08.5000743Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoohana/providers/Microsoft.RecoveryServices/vaults/NONROCVaultECY2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"ROCVaultECY2\",\"etag\":\"W/\\\"datetime'2026-07-11T03%3A56%3A22.8463038Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoohana/providers/Microsoft.RecoveryServices/vaults/ROCVaultECY2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"vfx1\",\"etag\":\"W/\\\"datetime'2026-04-01T05%3A51%3A51.9479635Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoohana/providers/Microsoft.RecoveryServices/vaults/vfx1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"zrsVault2\",\"etag\":\"W/\\\"datetime'2026-02-19T06%3A38%3A39.4288527Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoohana/providers/Microsoft.RecoveryServices/vaults/zrsVault2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"gvjreddy-czr-grsvaultwithcrr\",\"etag\":\"W/\\\"datetime'2026-06-15T09%3A05%3A58.5776955Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-czr-grsvaultwithcrr\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"gvjreddy-czr-grsvaultwithoutcrr\",\"etag\":\"W/\\\"datetime'2025-08-14T12%3A39%3A28.4769301Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-czr-grsvaultwithoutcrr\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"gvjreddy-czr-lrsvault\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A34%3A56.0057331Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-czr-lrsvault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"gvjreddy-czr-zrsvault\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A34%3A57.2641781Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-czr-zrsvault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"gvjreddy-ecy-time-based-immutability-202605061853\",\"etag\":\"W/\\\"datetime'2026-06-05T13%3A43%3A37.4706175Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-ecy-time-based-immutability-202605061853\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"gvjreddy-ecy-time-based-immutability-202605061914\",\"etag\":\"W/\\\"datetime'2026-06-05T13%3A51%3A30.0626058Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-ecy-time-based-immutability-202605061914\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"gvjreddy-ecy-time-based-immutability-202605061917\",\"etag\":\"W/\\\"datetime'2026-06-05T14%3A07%3A08.5470571Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-ecy-time-based-immutability-202605061917\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"gvjreddy-ecy-time-based-immutability-202605061925\",\"etag\":\"W/\\\"datetime'2026-06-09T09%3A13%3A23.9085976Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-ecy-time-based-immutability-202605061925\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"gvjreddy-ecy-time-based-immutability-202605061939\",\"etag\":\"W/\\\"datetime'2026-06-05T14%3A12%3A40.9621189Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-ecy-time-based-immutability-202605061939\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"gvjreddy-ecy-time-based-immutability-202606091423\",\"etag\":\"W/\\\"datetime'2026-06-09T09%3A09%3A58.020639Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-ecy-time-based-immutability-202606091423\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"gvjreddy-ecy-time-based-immutability-202606091440\",\"etag\":\"W/\\\"datetime'2026-06-09T09%3A10%3A41.7846628Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-ecy-time-based-immutability-202606091440\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"gvjreddy-ecy-vault-for-softdelete\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A34%3A58.2737335Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-ecy-vault-for-softdelete\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"gvjreddy-immutability-vault\",\"etag\":\"W/\\\"datetime'2026-05-29T06%3A55%3A57.222139Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-immutability-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"gvjreddy-test-ecy-rsvault\",\"etag\":\"W/\\\"datetime'2026-06-09T07%3A03%3A56.7167536Z'\\\"\",\"tags\":{\"BackupVMName\":\"edgezonetest1\",\"BackupVM + Name Test\":\"Sample VM Name\"},\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"08acd955-274e-4697-883b-8f7775b6d4bf\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-test-ecy-rsvault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"gvjreddy-test-ecy-rsvault-cmk-after-enabling-mua\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A35%3A01.3983582Z'\\\"\",\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"22adfe74-493b-4305-a61f-6c6fcc53eee1\",\"type\":\"SystemAssigned, + UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/gvjreddy-test-ecy-mi\":{\"clientId\":\"c2412e13-88a8-4835-b396-54b237b06074\",\"principalId\":\"555834a3-dae4-40c9-a316-bcdaa9cf290d\"}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-test-ecy-rsvault-cmk-after-enabling-mua\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"gvjreddy-test-ecy-rsvault-with-telemetry\",\"etag\":\"W/\\\"datetime'2026-05-19T06%3A57%3A39.993562Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-test-ecy-rsvault-with-telemetry\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"gvjreddy-test-ecy-rsvault-with-telemetry-1\",\"etag\":\"W/\\\"datetime'2026-05-19T08%3A37%3A12.3383565Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-test-ecy-rsvault-with-telemetry-1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"gvjreddy-test-ecy-rsvault-with-userassigned-cmk\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A35%3A02.7167763Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":{\"keyVaultProperties\":{\"keyUri\":\"https://gvjreddy-test-ecy-kv.vault.azure.net/keys/gvjreddy-test-ecy-key-alternate\"},\"kekIdentity\":{\"useSystemAssignedIdentity\":false,\"userAssignedIdentity\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/gvjreddy-test-ecy-mi\"},\"infrastructureEncryption\":\"Disabled\"},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-test-ecy-rsvault-with-userassigned-cmk\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"gvjreddy-test-ecy-rsvault-with-userassigned-cmk-1\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A35%3A04.0971682Z'\\\"\",\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"b36c6baf-d775-4bea-b407-0cf5c6854048\",\"type\":\"SystemAssigned, + UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/gvjreddy-test-ecy-mi\":{\"clientId\":\"c2412e13-88a8-4835-b396-54b237b06074\",\"principalId\":\"555834a3-dae4-40c9-a316-bcdaa9cf290d\"}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-test-ecy-rsvault-with-userassigned-cmk-1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"gvjreddy-test-ecy-vault-muadeletescenario\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A35%3A04.8588324Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-test-ecy-vault-muadeletescenario\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"gvjreddy-test-ecy-vault-muawithcontributor\",\"etag\":\"W/\\\"datetime'2026-01-13T10%3A15%3A21.5306545Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-test-ecy-vault-muawithcontributor\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"gvjreddy-test-ecy-vault-muawithreader\",\"etag\":\"W/\\\"datetime'2026-06-25T13%3A01%3A35.6123303Z'\\\"\",\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"0d26ad4d-7fd5-4b8c-9c00-30d4ce7b46e0\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-test-ecy-vault-muawithreader\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"gvjreddy-test-vault-20230714-1237\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A35%3A07.9254815Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-test-vault-20230714-1237\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"gvjreddy-test-vault-20230714-1349\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A35%3A08.725129Z'\\\"\",\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"e43e0a3d-2e6b-412e-bfdc-07f95f93def3\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":{\"keyVaultProperties\":{\"keyUri\":\"https://gvjreddy-test-ecy-kv.vault.azure.net/keys/gvjreddy-test-ecy-key\"},\"kekIdentity\":{\"useSystemAssignedIdentity\":true,\"userAssignedIdentity\":null},\"infrastructureEncryption\":\"Disabled\"},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-test-vault-20230714-1349\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"gvjreddy-test-vault-20230714-1353\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A35%3A09.5937463Z'\\\"\",\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"b80e21cc-d9b7-4527-bb86-fc15e4d4d735\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":{\"keyVaultProperties\":{\"keyUri\":\"https://gvjreddy-test-ecy-kv.vault.azure.net/keys/gvjreddy-test-ecy-key-alternate\"},\"kekIdentity\":{\"useSystemAssignedIdentity\":true,\"userAssignedIdentity\":null},\"infrastructureEncryption\":\"Disabled\"},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-test-vault-20230714-1353\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"gvjreddy-test-vault-202307181605\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A35%3A10.2034779Z'\\\"\",\"tags\":{\"DeleteBy\":\"08-2023\",\"Purpose\":\"PolicyType + change testing\",\"Owner\":\"gvjreddy\",\"AutoShutdown\":\"Yes\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-test-vault-202307181605\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"gvjreddy-test-vault-240711\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A35%3A10.7162517Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-test-vault-240711\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"hiagaeuap-vault1\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A35%3A11.3249843Z'\\\"\",\"tags\":{\"MABUsed\":\"Yes\",\"Owner\":\"hiaga\",\"Purpose\":\"Testing\",\"DeleteBy\":\"06-2022\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagaCZR-rg/providers/Microsoft.RecoveryServices/vaults/hiagaeuap-vault1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"sfsag\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A16%3A48.4038785Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abcc-copilot-testing/providers/Microsoft.RecoveryServices/vaults/sfsag\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"ctr-sqlinstance-testing\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A18%3A40.8837566Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adigupt-ecy-rg/providers/Microsoft.RecoveryServices/vaults/ctr-sqlinstance-testing\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"ctr-eacan-restore\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A19%3A13.6734055Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adigupt-mua-rg/providers/Microsoft.RecoveryServices/vaults/ctr-eacan-restore\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"target-vault\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A15%3A18.356761Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adigupt-mua-rg/providers/Microsoft.RecoveryServices/vaults/target-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"akkanasefasdf\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A17%3A04.5416452Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/akkanasefasdf\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"akkanaseGRS\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A16%3A48.4528504Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/akkanaseGRS\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"akkanaseTestabc\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A18%3A27.983085Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/akkanaseTestabc\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"TestDoubleSlashVault\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A17%3A17.1525996Z'\\\"\",\"tags\":{\"kpl\":\"kjl\"},\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cmk.system/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identity1\":{\"clientId\":\"73571b84-6f37-4bdd-a60f-1121cb5d31d7\",\"principalId\":\"13a05d1f-eae9-47ae-944f-46270c95d12e\"}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":{\"keyVaultProperties\":{\"keyUri\":\"https://cmkkeyvaultea1.vault.azure.net/keys/key1\"},\"kekIdentity\":{\"useSystemAssignedIdentity\":false,\"userAssignedIdentity\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cmk.system/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identity1\"},\"infrastructureEncryption\":\"Disabled\"},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/TestDoubleSlashVault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"afs-pstest-vault\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A16%3A22.6665495Z'\\\"\",\"tags\":{\"MABUsed\":\"yes\",\"Owner\":\"hiaga\",\"Purpose\":\"testing\",\"DeleteBy\":\"01-2099\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/afs-pstest-rg/providers/Microsoft.RecoveryServices/vaults/afs-pstest-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"afsdeletevault\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A17%3A45.2623602Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/afstests/providers/Microsoft.RecoveryServices/vaults/afsdeletevault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"akkanaseTest123f\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A17%3A17.0806397Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/afstests/providers/Microsoft.RecoveryServices/vaults/akkanaseTest123f\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"crr-test\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A15%3A48.8894044Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":null,\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/afstests/providers/Microsoft.RecoveryServices/vaults/crr-test\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"Donotuse-afsnavigation-ea-vault\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A15%3A49.6639738Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/afstests/providers/Microsoft.RecoveryServices/vaults/Donotuse-afsnavigation-ea-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"akkanaseCmkUserTest\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A16%3A43.7022837Z'\\\"\",\"identity\":{\"type\":\"None\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanase-diskaccess/providers/Microsoft.RecoveryServices/vaults/akkanaseCmkUserTest/privateEndpointConnections/akkanasediskaccess.3980868635877947304.backup.b5a72c23-e8d6-4a09-bac3-ba346f4a9cdd\",\"name\":\"akkanasediskaccess.3980868635877947304.backup.b5a72c23-e8d6-4a09-bac3-ba346f4a9cdd\",\"type\":\"Microsoft.RecoveryServices/vaults/privateEndpointConnections\",\"location\":\"eastasia\",\"properties\":{\"provisioningState\":\"Failed\",\"privateEndpoint\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanase-diskaccess/providers/Microsoft.Network/privateEndpoints/akkanasediskaccess\"},\"groupIds\":[\"AzureBackup\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"None\",\"actionsRequired\":\"None\"}}}],\"privateEndpointStateForBackup\":\"Enabled\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanase-diskaccess/providers/Microsoft.RecoveryServices/vaults/akkanaseCmkUserTest\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"akkanaseTest\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A17%3A43.9749526Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseAFSTest/providers/Microsoft.RecoveryServices/vaults/akkanaseTest\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"akkanaseTest\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A18%3A22.1969002Z'\\\"\",\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cmk.system/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identity1\":{\"clientId\":\"73571b84-6f37-4bdd-a60f-1121cb5d31d7\",\"principalId\":\"13a05d1f-eae9-47ae-944f-46270c95d12e\"}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseTest/providers/Microsoft.RecoveryServices/vaults/akkanaseTest/privateEndpointConnections/akkanaseTime.7422943731775250981.backup.503d360e-d81b-4b94-8f13-b68f9a16b2ab\",\"name\":\"akkanaseTime.7422943731775250981.backup.503d360e-d81b-4b94-8f13-b68f9a16b2ab\",\"type\":\"Microsoft.RecoveryServices/vaults/privateEndpointConnections\",\"location\":\"eastasia\",\"properties\":{\"provisioningState\":\"Failed\",\"privateEndpoint\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseTest/providers/Microsoft.Network/privateEndpoints/akkanaseTime\"},\"groupIds\":[\"AzureBackup\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"None\",\"actionsRequired\":\"None\"}}}],\"privateEndpointStateForBackup\":\"Enabled\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":{\"keyVaultProperties\":{\"keyUri\":\"https://cmkkeyvaultea1.vault.azure.net/keys/key1\"},\"kekIdentity\":{\"useSystemAssignedIdentity\":false,\"userAssignedIdentity\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cmk.system/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identity1\"},\"infrastructureEncryption\":\"Disabled\"},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseTest/providers/Microsoft.RecoveryServices/vaults/akkanaseTest\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"akkanaseTestfsa\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A16%3A49.5960933Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseTest/providers/Microsoft.RecoveryServices/vaults/akkanaseTestfsa\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"newVault1\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A18%3A35.0454778Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseTest/providers/Microsoft.RecoveryServices/vaults/newVault1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"amansha-bug-imm\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A16%3A38.861793Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amansha-rg/providers/Microsoft.RecoveryServices/vaults/amansha-bug-imm\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"amansha-ctr-rsv-ea-1\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A18%3A45.448896Z'\\\"\",\"tags\":{\"ManagerAlias\":\"vepothir\",\"DeleteBy\":\"02-2029\",\"Purpose\":\"Testing\",\"Owner\":\"amansha\",\"azsecpack\":\"nonprod\",\"platformsettings.host_environment.service.platform_optedin_for_rootcerts\":\"true\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amansha-rg/providers/Microsoft.RecoveryServices/vaults/amansha-ctr-rsv-ea-1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"amansha-ctr-rsv-target-1\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A16%3A25.0524742Z'\\\"\",\"tags\":{\"ManagerAlias\":\"vepothir\",\"DeleteBy\":\"02-2029\",\"Purpose\":\"Testing\",\"Owner\":\"amansha\",\"azsecpack\":\"nonprod\",\"platformsettings.host_environment.service.platform_optedin_for_rootcerts\":\"true\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amansha-rg/providers/Microsoft.RecoveryServices/vaults/amansha-ctr-rsv-target-1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"amansha-rsv-ea\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A17%3A27.7098955Z'\\\"\",\"tags\":{\"Owner\":\"amansha\",\"Purpose\":\"Testing\",\"ManagerAlias\":\"vepothir\",\"Workload\":\"CTR\",\"TestType\":\"LongHaul\",\"DeleteBy\":\"09-2026\"},\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"8e0b0865-4886-475c-affd-57a3099548c4\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Disabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amansha-rg/providers/Microsoft.RecoveryServices/vaults/amansha-rsv-ea\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"amchandnEArsv\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A16%3A26.073226Z'\\\"\",\"tags\":{\"Owner\":\"mabteam\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amchandnEA/providers/Microsoft.RecoveryServices/vaults/amchandnEArsv\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"asmaskar123\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A18%3A51.5228333Z'\\\"\",\"tags\":{\"Owner\":\"asmaskar\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"b779b5de-9095-4102-abb4-72ef36f76315\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":{\"keyVaultProperties\":{\"keyUri\":\"https:\\\\\\\\ab.vault.azure.net\"},\"kekIdentity\":{\"useSystemAssignedIdentity\":true,\"userAssignedIdentity\":null},\"infrastructureEncryption\":\"Disabled\"},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amchandnEA/providers/Microsoft.RecoveryServices/vaults/asmaskar123\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"ankur-vault-resourceguard\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A15%3A29.2389078Z'\\\"\",\"tags\":{\"Owner\":\"hiaga\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurRG137/providers/Microsoft.RecoveryServices/vaults/ankur-vault-resourceguard\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"ankurRSV96\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A15%3A45.160347Z'\\\"\",\"tags\":{\"Owner\":\"ankur\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurRG137/providers/Microsoft.RecoveryServices/vaults/ankurRSV96\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"AnkurRSVRGTest2\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A17%3A45.2863461Z'\\\"\",\"tags\":{\"Owner\":\"ankur\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurRG137/providers/Microsoft.RecoveryServices/vaults/AnkurRSVRGTest2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"RG12\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A17%3A06.7890875Z'\\\"\",\"tags\":{\"Owner\":\"ankur\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurRG137/providers/Microsoft.RecoveryServices/vaults/RG12\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"RGVaultTest\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A18%3A52.7223941Z'\\\"\",\"tags\":{\"Owner\":\"ankur\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurRG137/providers/Microsoft.RecoveryServices/vaults/RGVaultTest\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"RSRansomewareHackathonVault\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A18%3A19.8127756Z'\\\"\",\"tags\":{\"Name\":\"Hackathon2024Vault\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurRG137/providers/Microsoft.RecoveryServices/vaults/RSRansomewareHackathonVault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"RSV2211\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A15%3A26.2875948Z'\\\"\",\"tags\":{\"Owner\":\"ankur\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurRG137/providers/Microsoft.RecoveryServices/vaults/RSV2211\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"RSV2411\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A17%3A30.0463806Z'\\\"\",\"tags\":{\"Owner\":\"ankur\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurRG137/providers/Microsoft.RecoveryServices/vaults/RSV2411\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"RSV241111\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A15%3A22.8001669Z'\\\"\",\"tags\":{\"Owner\":\"ankur\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurRG137/providers/Microsoft.RecoveryServices/vaults/RSV241111\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"RSVaultForTesting\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A15%3A22.9031069Z'\\\"\",\"tags\":{\"Owner\":\"ankur\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurRG137/providers/Microsoft.RecoveryServices/vaults/RSVaultForTesting\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"testVault1891\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A17%3A48.6892302Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurRG137/providers/Microsoft.RecoveryServices/vaults/testVault1891\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"TestVault219\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A18%3A57.4124985Z'\\\"\",\"tags\":{\"Owner\":\"ankur\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurRG137/providers/Microsoft.RecoveryServices/vaults/TestVault219\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"TestVault2610\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A16%3A42.516492Z'\\\"\",\"tags\":{\"Owner\":\"ankur\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurRG137/providers/Microsoft.RecoveryServices/vaults/TestVault2610\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"TestVaultRepro\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A17%3A31.3222839Z'\\\"\",\"tags\":{\"Owner\":\"ankur\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurRG137/providers/Microsoft.RecoveryServices/vaults/TestVaultRepro\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"Vault119\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A16%3A22.528373Z'\\\"\",\"tags\":{\"Owner\":\"ankur\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurRG137/providers/Microsoft.RecoveryServices/vaults/Vault119\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"DonotUse-sapasedatabaseworkload-BVT-Vault\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A17%3A45.4649011Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ase-workload.existing/providers/Microsoft.RecoveryServices/vaults/DonotUse-sapasedatabaseworkload-BVT-Vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"sapasedatabaseworkloadexistingvaulteastasia\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A17%3A38.282891Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ase-workload.existing/providers/Microsoft.RecoveryServices/vaults/sapasedatabaseworkloadexistingvaulteastasia\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"DonotUse-sapasedatabase-BVT-Vault\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A17%3A43.0015042Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ase.workload/providers/Microsoft.RecoveryServices/vaults/DonotUse-sapasedatabase-BVT-Vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"testcsrsrc\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A19%3A03.0385791Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chandrikarg/providers/Microsoft.RecoveryServices/vaults/testcsrsrc\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"clitest-vaultxiatviv3gcr\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A17%3A17.0286694Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3kqkpka2eh/providers/Microsoft.RecoveryServices/vaults/clitest-vaultxiatviv3gcr\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"clitest-vaulttvvff46kmtl\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A19%3A07.9562355Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":null,\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg6wcbdfnzw5/providers/Microsoft.RecoveryServices/vaults/clitest-vaulttvvff46kmtl\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"clitest-vault2k3fqj54ds7\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A19%3A08.0461839Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":null,\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgijzhkmzp2x/providers/Microsoft.RecoveryServices/vaults/clitest-vault2k3fqj54ds7\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"clitest-vault5u6owqetawx\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A18%3A43.1436676Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgiv6mglu63d/providers/Microsoft.RecoveryServices/vaults/clitest-vault5u6owqetawx\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"clitest-vaultajgisvb5lcb\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A17%3A45.5839506Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":null,\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgq2ngzm2cfv23h26gwc2vgkzykpubprmwhfecdhfgigdi5a3igjbwbffa2arltxuoh/providers/Microsoft.RecoveryServices/vaults/clitest-vaultajgisvb5lcb\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"clitest-vaultfkwemaxgduh\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A18%3A03.8826991Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":null,\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgujpkcer63dnd7lksn2rtkjzdr5eolvm54rd4rlh3qvhj73vpfdwwu6dfbxof3e7kz/providers/Microsoft.RecoveryServices/vaults/clitest-vaultfkwemaxgduh\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"deepu-ctr-source-vault\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A17%3A58.1009684Z'\\\"\",\"tags\":{\"Owner\":\"deepuyadav\",\"ManagerAlias\":\"vintib\",\"TestType\":\"Ad-hoc\",\"Purpose\":\"ctr + bug bash\",\"DeleteBy\":\"12-2026\",\"Workload\":\"SQL\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/deepu-ctr-source-rg/providers/Microsoft.RecoveryServices/vaults/deepu-ctr-source-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"sqlageacanvault\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A15%3A35.529951Z'\\\"\",\"tags\":{\"Owner\":\"gesahoo\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/donot-use-bvt-ea-can2-oss/providers/Microsoft.RecoveryServices/vaults/sqlageacanvault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"Donot-Use-Port-Accessibility-Vault\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A17%3A39.4749617Z'\\\"\",\"tags\":{\"Purpose\":\"BVT\",\"Owner\":\"akkanase\",\" + DeleteBy\":\"05-2040\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DoNotUse-Accessibility-Test/providers/Microsoft.RecoveryServices/vaults/Donot-Use-Port-Accessibility-Vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"bvt-alert-navigation\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A16%3A44.6987203Z'\\\"\",\"tags\":{\"Owner\":\"adigupt\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DONOTUSE-BVT-EA-CAN-RG/providers/Microsoft.RecoveryServices/vaults/bvt-alert-navigation\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"DonotUse-iaasvmsqlworkload-BVT-EUS-Vault\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A18%3A02.7540022Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DonotUse-iaasvmsqlworkload-BVT-EUS-RG/providers/Microsoft.RecoveryServices/vaults/DonotUse-iaasvmsqlworkload-BVT-EUS-Vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"donotuse-immutability-bvt-ea-vault\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A19%3A13.6794019Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/donotuse-ransomware-bvt-ea-rg/providers/Microsoft.RecoveryServices/vaults/donotuse-immutability-bvt-ea-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"donotuse-immutability-bvt-ea-vault-to-update-state\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A17%3A45.194398Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/donotuse-ransomware-bvt-ea-rg/providers/Microsoft.RecoveryServices/vaults/donotuse-immutability-bvt-ea-vault-to-update-state\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"Donotuse-navigation-vault\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A15%3A59.1275008Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/doNotUsePortalBVT/providers/Microsoft.RecoveryServices/vaults/Donotuse-navigation-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"eacangesahoo\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A17%3A43.8360313Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoohana/providers/Microsoft.RecoveryServices/vaults/eacangesahoo\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"gesahoonew\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A18%3A17.4765212Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoohana/providers/Microsoft.RecoveryServices/vaults/gesahoonew\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"lrsAbhinavvault\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A16%3A08.6470702Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoohana/providers/Microsoft.RecoveryServices/vaults/lrsAbhinavvault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"newqw\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A17%3A40.619789Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoohana/providers/Microsoft.RecoveryServices/vaults/newqw\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"newvault\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A17%3A02.1902849Z'\\\"\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoohana/providers/Microsoft.RecoveryServices/vaults/newvault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"newVault71\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A17%3A34.7693447Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoohana/providers/Microsoft.RecoveryServices/vaults/newVault71\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"softdelete1\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A16%3A50.7512248Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoohana/providers/Microsoft.RecoveryServices/vaults/softdelete1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"test\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A15%3A36.3910849Z'\\\"\",\"tags\":{\"Owner\":\"gesahoo\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoohana/providers/Microsoft.RecoveryServices/vaults/test\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"vaau13\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A18%3A53.790434Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoohana/providers/Microsoft.RecoveryServices/vaults/vaau13\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"vau07\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A16%3A36.663582Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoohana/providers/Microsoft.RecoveryServices/vaults/vau07\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"vau12\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A16%3A22.5680442Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Disabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoohana/providers/Microsoft.RecoveryServices/vaults/vau12\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"vau16\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A15%3A48.4836343Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoohana/providers/Microsoft.RecoveryServices/vaults/vau16\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"vau17\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A15%3A46.2290065Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoohana/providers/Microsoft.RecoveryServices/vaults/vau17\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"vau20\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A18%3A33.8033935Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoohana/providers/Microsoft.RecoveryServices/vaults/vau20\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"vau22\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A16%3A53.1566448Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoohana/providers/Microsoft.RecoveryServices/vaults/vau22\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"vau33\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A16%3A59.7870549Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoohana/providers/Microsoft.RecoveryServices/vaults/vau33\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"vault966\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A18%3A34.047799Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoohana/providers/Microsoft.RecoveryServices/vaults/vault966\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"gesahooAGvault\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A18%3A53.8540328Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gsAG1-EASTASIA/providers/Microsoft.RecoveryServices/vaults/gesahooAGvault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"gvjreddy-eacan-rsvault-vault-softdelete-testing\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A18%3A17.4655268Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-eacan-rsvault-vault-softdelete-testing\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"gvjreddy-test-ea-rsvault\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A17%3A21.8185468Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-test-ea-rsvault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"gvjreddy-test-ea-rsvault-with-userassigned-cmk\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A16%3A05.0022181Z'\\\"\",\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/gvjreddy-test-ea-mi\":{\"clientId\":\"7af51b8c-f9bf-44b6-9de4-fd3ba8a8d90b\",\"principalId\":\"6b5a9e25-7d46-4c7f-bdf6-165ce283ff9e\"}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":{\"keyVaultProperties\":{\"keyUri\":\"https://gvjreddy-test-ea-kv.vault.azure.net/keys/gvjreddy-test-key-for-vault-encryption-alternate\"},\"kekIdentity\":{\"useSystemAssignedIdentity\":false,\"userAssignedIdentity\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/gvjreddy-test-ea-mi\"},\"infrastructureEncryption\":\"Disabled\"},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-test-ea-rsvault-with-userassigned-cmk\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"hiaga-eacan-acis1\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A15%3A59.4173373Z'\\\"\",\"tags\":{\"MABUsed\":\"Yes\",\"Owner\":\"hiaga\",\"Purpose\":\"testing\",\"DeleteBy\":\"01-2025\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-eacan-acis1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"iaasvm-encryptedvm-vault\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A16%3A57.1073599Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvm.encryptedvm-eastasia/providers/Microsoft.RecoveryServices/vaults/iaasvm-encryptedvm-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"donotuse-iaasvm-selectivedisk-vault-eastasia\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A18%3A59.7467516Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvm.existing.vaults/providers/Microsoft.RecoveryServices/vaults/donotuse-iaasvm-selectivedisk-vault-eastasia\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"doNotUseSoftDeleteTestVaultEastAsia\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A15%3A51.7726883Z'\\\"\",\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dimunj-eus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/test-uami-wus2-1\":{\"clientId\":\"3cbdfe2c-4c86-49e9-a9f1-75065b32bf36\",\"principalId\":\"84506a41-2c01-49fb-bdc5-a0d100f6b193\"}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvm.existing.vaults/providers/Microsoft.RecoveryServices/vaults/doNotUseSoftDeleteTestVaultEastAsia\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"iaasmchangepol-eastasia\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A18%3A07.3368399Z'\\\"\",\"tags\":{\"Purpose\":\"BVT\",\"Owner\":\"akkanase\",\"MabUsed\":\"yes\",\"DeleteBy\":\"05-2099\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvm.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasmchangepol-eastasia\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"iaasvmexistingvault-eastasia\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A15%3A48.5775812Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvm.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmexistingvault-eastasia\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"newvault\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A18%3A23.3554483Z'\\\"\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvm.existing.vaults/providers/Microsoft.RecoveryServices/vaults/newvault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"donotuse-sourcescan-bulk-BVT-vault\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A16%3A22.5620479Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvm.new/providers/Microsoft.RecoveryServices/vaults/donotuse-sourcescan-bulk-BVT-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"donotuse-sourcescan-bulk-BVT-vault-12\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A16%3A51.930835Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvm.new/providers/Microsoft.RecoveryServices/vaults/donotuse-sourcescan-bulk-BVT-vault-12\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"sarathtestiaasvmvault\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A16%3A27.2988808Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvm.new/providers/Microsoft.RecoveryServices/vaults/sarathtestiaasvmvault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"scourcescanx-1\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A15%3A52.9682154Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvm.new/providers/Microsoft.RecoveryServices/vaults/scourcescanx-1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"sourcescan2\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A16%3A44.8870446Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvm.new/providers/Microsoft.RecoveryServices/vaults/sourcescan2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"sourcescannewvaultlwhpx\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A17%3A45.5218655Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvm.new/providers/Microsoft.RecoveryServices/vaults/sourcescannewvaultlwhpx\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"sourcescannewvaultrvrmk\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A18%3A41.9581441Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvm.new/providers/Microsoft.RecoveryServices/vaults/sourcescannewvaultrvrmk\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"sourcescany-2\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A18%3A05.0133234Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvm.new/providers/Microsoft.RecoveryServices/vaults/sourcescany-2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"iaasvm-enablevmbackup-vaultdncub\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A19%3A09.2413418Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvm.vmbackup-eastasia/providers/Microsoft.RecoveryServices/vaults/iaasvm-enablevmbackup-vaultdncub\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"iaasvmnavigationtestvault\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A17%3A26.5421887Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IaasVMNavigationTest-RG-eastasia/providers/Microsoft.RecoveryServices/vaults/iaasvmnavigationtestvault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"donotuse-sqlinstance-workload-vault-hpqfc\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A17%3A40.5648204Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlinstanceworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/donotuse-sqlinstance-workload-vault-hpqfc\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"donotuse-sqlinstance-workload-vault-nwwts\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A17%3A14.3222055Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlinstanceworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/donotuse-sqlinstance-workload-vault-nwwts\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"donotuse-sqlinstance-workload-vault-qczof\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A15%3A52.904251Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlinstanceworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/donotuse-sqlinstance-workload-vault-qczof\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"donotuse-sqlinstance-workload-vault-vjvkz\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A16%3A41.2694883Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlinstanceworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/donotuse-sqlinstance-workload-vault-vjvkz\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"donotusegrantpermissionvault\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A16%3A23.8478821Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlinstanceworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/donotusegrantpermissionvault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"donotusesqlinstanceworkloadvault\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A16%3A26.1581776Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlinstanceworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/donotusesqlinstanceworkloadvault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"iaasvmsqlinstanceworkloadexistingvaulteastasia\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A17%3A03.3100208Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlinstanceworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlinstanceworkloadexistingvaulteastasia\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"donotuse-sql-vm-nav-abcd\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A17%3A17.0286694Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing/providers/Microsoft.RecoveryServices/vaults/donotuse-sql-vm-nav-abcd\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"donotuse-sqlworkload-bvt-vault-ktgct\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A15%3A29.3348619Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/donotuse-sqlworkload-bvt-vault-ktgct\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"iaasvmsqlworkloadexistingvaulteastasia\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A17%3A50.9763716Z'\\\"\",\"tags\":{\"MAB + Used\":\"Yes\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvaulteastasia\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"acisactiontest2\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A15%3A48.4886314Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ishan_softDeleteContainerTest/providers/Microsoft.RecoveryServices/vaults/acisactiontest2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"acisactiontest3\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A17%3A38.2409152Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ishan_softDeleteContainerTest/providers/Microsoft.RecoveryServices/vaults/acisactiontest3\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"acisactiontest4\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A16%3A32.0671175Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ishan_softDeleteContainerTest/providers/Microsoft.RecoveryServices/vaults/acisactiontest4\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"ankurMuaTestingVault1\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A17%3A38.2549074Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ishan_softDeleteContainerTest/providers/Microsoft.RecoveryServices/vaults/ankurMuaTestingVault1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"ankurTestVault\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A19%3A12.6583864Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ishan_softDeleteContainerTest/providers/Microsoft.RecoveryServices/vaults/ankurTestVault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"ankurVault1245\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A18%3A32.7350007Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ishan_softDeleteContainerTest/providers/Microsoft.RecoveryServices/vaults/ankurVault1245\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"DMTest\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A16%3A41.3224583Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ishan_softDeleteContainerTest/providers/Microsoft.RecoveryServices/vaults/DMTest\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"tp2\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A18%3A03.4949193Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ishan_softDeleteContainerTest/providers/Microsoft.RecoveryServices/vaults/tp2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"vault1\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A19%3A05.7894647Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ishan_softDeleteContainerTest/providers/Microsoft.RecoveryServices/vaults/vault1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"vault123\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A16%3A37.7551895Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ishan_softDeleteContainerTest/providers/Microsoft.RecoveryServices/vaults/vault123\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"vault1705delete\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A18%3A14.0009005Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ishan_softDeleteContainerTest/providers/Microsoft.RecoveryServices/vaults/vault1705delete\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"vaultsoftdelete120420242\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A18%3A46.6442404Z'\\\"\",\"tags\":{\"Owner\":\"Kalyan\",\"DeleteBy\":\"05-2024\",\"Purpose\":\"Testing\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ishan_softDeleteContainerTest/providers/Microsoft.RecoveryServices/vaults/vaultsoftdelete120420242\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"testVault111\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A16%3A47.2567158Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ishansap/providers/Microsoft.RecoveryServices/vaults/testVault111\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"vault2406\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A17%3A32.4435082Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ishansap/providers/Microsoft.RecoveryServices/vaults/vault2406\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"vaultNew2406\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A17%3A12.5074295Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ishansap/providers/Microsoft.RecoveryServices/vaults/vaultNew2406\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"jsinghVault\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A18%3A25.6613045Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jsinghRG/providers/Microsoft.RecoveryServices/vaults/jsinghVault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"mkheranirsv\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A17%3A02.2902272Z'\\\"\",\"tags\":{\"Owner\":\"mkherani\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mkherani/providers/Microsoft.RecoveryServices/vaults/mkheranirsv\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"rama-ctr-src\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A15%3A20.6147512Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RamatBugbash/providers/Microsoft.RecoveryServices/vaults/rama-ctr-src\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"rama-ctr-tgt\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A19%3A14.8587323Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RamatBugbash/providers/Microsoft.RecoveryServices/vaults/rama-ctr-tgt\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"ankurMuaTestingVault1\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A18%3A09.8519041Z'\\\"\",\"tags\":{\"Owner\":\"ishanjindal\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redundancyTestingVault/providers/Microsoft.RecoveryServices/vaults/ankurMuaTestingVault1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"argTest2\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A18%3A02.811969Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redundancyTestingVault/providers/Microsoft.RecoveryServices/vaults/argTest2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"hotfix1\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A17%3A27.7708602Z'\\\"\",\"tags\":{\"Owner\":\"ishanjindal\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redundancyTestingVault/providers/Microsoft.RecoveryServices/vaults/hotfix1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"hotfix2\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A15%3A54.291585Z'\\\"\",\"tags\":{\"Owner\":\"ishanjindal\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redundancyTestingVault/providers/Microsoft.RecoveryServices/vaults/hotfix2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"hotfixTest1\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A17%3A19.4334237Z'\\\"\",\"tags\":{\"Owner\":\"ishanjindal\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redundancyTestingVault/providers/Microsoft.RecoveryServices/vaults/hotfixTest1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"hotfixTest2\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A19%3A09.1314055Z'\\\"\",\"tags\":{\"Owner\":\"ishanjindal\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redundancyTestingVault/providers/Microsoft.RecoveryServices/vaults/hotfixTest2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"hotfixTest3\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A16%3A36.5256597Z'\\\"\",\"tags\":{\"Owner\":\"ishanjindal\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redundancyTestingVault/providers/Microsoft.RecoveryServices/vaults/hotfixTest3\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"oldFlowTest1\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A18%3A26.7280783Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redundancyTestingVault/providers/Microsoft.RecoveryServices/vaults/oldFlowTest1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"test1\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A16%3A06.3140912Z'\\\"\",\"tags\":{\"Owner\":\"ishanjindal\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redundancyTestingVault/providers/Microsoft.RecoveryServices/vaults/test1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"timepass1\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A16%3A37.7481937Z'\\\"\",\"tags\":{\"Owner\":\"ishanjindal\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redundancyTestingVault/providers/Microsoft.RecoveryServices/vaults/timepass1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"AFSVaultedOlrTestEA\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A16%3A14.3820665Z'\\\"\",\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"0725fe37-d48c-47a0-a5e5-4105bdcfa7ed\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/reregistration-test-rg/providers/Microsoft.RecoveryServices/vaults/AFSVaultedOlrTestEA\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"ResourceMove-b890e7-0\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A17%3A28.9295014Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ResourceMoverRG-southeastasia-eastasia-sea/providers/Microsoft.RecoveryServices/vaults/ResourceMove-b890e7-0\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"testvaultishan\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A19%3A05.5186453Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RG_BTALTYAP\u0131GUVENLIK/providers/Microsoft.RecoveryServices/vaults/testvaultishan\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"saphanaworkloadexistingvaulteastasia\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A18%3A38.5460423Z'\\\"\",\"tags\":{\"MABUsed\":\"Yes\"},\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cmk.system/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identity1\":{\"clientId\":\"73571b84-6f37-4bdd-a60f-1121cb5d31d7\",\"principalId\":\"13a05d1f-eae9-47ae-944f-46270c95d12e\"},\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cmk.system/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identity2\":{\"clientId\":\"c105dcb0-b19f-4d55-adba-749e0037c42e\",\"principalId\":\"ab44c749-c400-4689-bcd1-128d7ecefd94\"},\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dimunj_mua_rm_test/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testUAMIECY\":{\"clientId\":\"d84cf4ae-ec92-4843-8909-3f96e243a737\",\"principalId\":\"714861d4-74f2-460f-b4c1-0813a88faddb\"}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":null,\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/saphanaworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/saphanaworkloadexistingvaulteastasia\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"sarath-afs-hardening-vault\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A16%3A50.755222Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-afs-hardening-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"sarath-dmtest-sourcevault\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A18%3A37.3620478Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-dmtest-sourcevault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"sarath-securescore-vault\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A17%3A08.0142085Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-securescore-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"sarathhanatarget\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A16%3A44.7724949Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarathhanatarget\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"sarathsourcevault1\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A18%3A26.8220246Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarathsourcevault1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"sarathsourcevault2\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A18%3A03.6358398Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarathsourcevault2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"sarathsourcevault3\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A19%3A03.2590334Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarathsourcevault3\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"sarathtargetvault2\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A19%3A07.9432424Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarathtargetvault2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"vault132\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A17%3A18.2082407Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/vault132\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"vault227\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A15%3A51.8816263Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/vault227\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"vault251\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A15%3A27.9226676Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/vault251\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"vault5512\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A15%3A22.7851742Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/vault5512\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"sarathsourcevault1\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A17%3A08.894315Z'\\\"\",\"tags\":{\"Owner\":\"sarath\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarathmovedrg4/providers/Microsoft.RecoveryServices/vaults/sarathsourcevault1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"sarathtargetvault1\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A15%3A59.1444913Z'\\\"\",\"tags\":{\"Owner\":\"sarath\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarathmovedrg4/providers/Microsoft.RecoveryServices/vaults/sarathtargetvault1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"softdeletevault-1403-1\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A18%3A54.9034364Z'\\\"\",\"tags\":{\"Owner\":\"Ishan;ishanjindal\",\"Purpose\":\"Testing\",\"DeleteBy\":\"05-2024\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vault_sd/providers/Microsoft.RecoveryServices/vaults/softdeletevault-1403-1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"vaultalerttest150225\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A19%3A02.0304441Z'\\\"\",\"tags\":{\"Owner\":\"Kalyan\",\"Purpose\":\"Testing\",\"DeleteBy\":\"10-2025\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vaultsd/providers/Microsoft.RecoveryServices/vaults/vaultalerttest150225\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"vaultsd-180901-2\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A18%3A03.6958053Z'\\\"\",\"tags\":{\"Owner\":\"Kalyan\",\"DeleteBy\":\"11-2024\",\"Purpose\":\"TEsting\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vaultsd/providers/Microsoft.RecoveryServices/vaults/vaultsd-180901-2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"vaultsd180924-1\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A16%3A43.5973432Z'\\\"\",\"tags\":{\"Owner\":\"Kalyan\",\"DeleteBy\":\"11-2024\",\"Purpose\":\"Testing\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vaultsd/providers/Microsoft.RecoveryServices/vaults/vaultsd180924-1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"vepothir-sql-snapshot-rsv\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A16%3A23.7819187Z'\\\"\",\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"74042e57-15b4-4f12-88e4-27f074e74c05\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vepothir-rg-ram-sub/providers/Microsoft.RecoveryServices/vaults/vepothir-sql-snapshot-rsv\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"cmk-newrsv-sami1\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A19%3A00.9917801Z'\\\"\",\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"a5eac032-6e8b-4def-8152-3bc0304bdf1a\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":{\"keyVaultProperties\":{\"keyUri\":\"https://risrajkeyvault.vault.azure.net/keys/key1/5d60de0ea55f45cc85a27ff505242e70\"},\"kekIdentity\":{\"useSystemAssignedIdentity\":true,\"userAssignedIdentity\":null},\"infrastructureEncryption\":\"Enabled\"},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zubaireacan02/providers/Microsoft.RecoveryServices/vaults/cmk-newrsv-sami1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"random-rsv1\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A17%3A13.6200828Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zubaireacan02/providers/Microsoft.RecoveryServices/vaults/random-rsv1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}}],\"nextLink\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/vaults?api-version=2026-05-01&%24skiptoken=7dDNboJAEMDxZ3GT9lJXYFGrJKbB%2bFGTrm0EUYyXdRkR5Cu7K1WM715sLz31CXqb%2fA8zk98VZXBWb1F2lMi6orHtuEuHjJf2B7LQQalCWpqWsoyFkEKmWqw6CWjxPNXkaSe5iAoV5ZnUzJ6pt8Ewsdl5BtzWO4D70GeYEN3sGAHn0ONaIfIyCkBIjUZc5DLfq9YCeF6CuDggyoiD1Ep2SpR8YUWE6y7r7QOiky7WO1g3Hh9IWx7ro%2fkRsoHR6PYatAorOlok1KWKVktz4%2bg6HXnJm5sk76uxovHss%2b7nzXQeb9xDvK6GezZNDhsyiSGbKZ5y%2fGQ02r0GT71qZ3oXn3h7OukTf%2b3J4HV%2bn3O2mmT%2byjP89fCnj2YY3ZqIidQOQwEhUxC4969qN3tBUfMbljJxBFGn6%2fa37RZZ23%2fdv3W36IZuXw%3d%3d\"}" headers: cache-control: - no-cache content-length: - - '618806' + - '521189' content-type: - application/json; charset=utf-8 date: - - Mon, 27 Oct 2025 13:44:18 GMT + - Tue, 21 Jul 2026 05:04:27 GMT expires: - '-1' pragma: @@ -1252,35 +1309,33 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - b1b6a5e6-5eb2-4ea5-9191-7e0a9c335e4d - - b1b6a5e6-5eb2-4ea5-9191-7e0a9c335e4d - - b1b6a5e6-5eb2-4ea5-9191-7e0a9c335e4d - - b1b6a5e6-5eb2-4ea5-9191-7e0a9c335e4d - - b1b6a5e6-5eb2-4ea5-9191-7e0a9c335e4d - - b1b6a5e6-5eb2-4ea5-9191-7e0a9c335e4d - - b1b6a5e6-5eb2-4ea5-9191-7e0a9c335e4d - - b1b6a5e6-5eb2-4ea5-9191-7e0a9c335e4d - - b1b6a5e6-5eb2-4ea5-9191-7e0a9c335e4d - - b1b6a5e6-5eb2-4ea5-9191-7e0a9c335e4d - - b1b6a5e6-5eb2-4ea5-9191-7e0a9c335e4d - - b1b6a5e6-5eb2-4ea5-9191-7e0a9c335e4d - - b1b6a5e6-5eb2-4ea5-9191-7e0a9c335e4d - - b1b6a5e6-5eb2-4ea5-9191-7e0a9c335e4d - - b1b6a5e6-5eb2-4ea5-9191-7e0a9c335e4d - - b1b6a5e6-5eb2-4ea5-9191-7e0a9c335e4d - - b1b6a5e6-5eb2-4ea5-9191-7e0a9c335e4d - - b1b6a5e6-5eb2-4ea5-9191-7e0a9c335e4d - - b1b6a5e6-5eb2-4ea5-9191-7e0a9c335e4d - - b1b6a5e6-5eb2-4ea5-9191-7e0a9c335e4d - - b1b6a5e6-5eb2-4ea5-9191-7e0a9c335e4d - - b1b6a5e6-5eb2-4ea5-9191-7e0a9c335e4d - - b1b6a5e6-5eb2-4ea5-9191-7e0a9c335e4d - - b1b6a5e6-5eb2-4ea5-9191-7e0a9c335e4d - - b1b6a5e6-5eb2-4ea5-9191-7e0a9c335e4d - x-ms-throttling-version: - - v2 + - 527aa2be-0f21-4cd8-b9f9-8aad9689d183 + - 527aa2be-0f21-4cd8-b9f9-8aad9689d183 + - 527aa2be-0f21-4cd8-b9f9-8aad9689d183 + - 527aa2be-0f21-4cd8-b9f9-8aad9689d183 + - 527aa2be-0f21-4cd8-b9f9-8aad9689d183 + - 527aa2be-0f21-4cd8-b9f9-8aad9689d183 + - 527aa2be-0f21-4cd8-b9f9-8aad9689d183 + - 527aa2be-0f21-4cd8-b9f9-8aad9689d183 + - 527aa2be-0f21-4cd8-b9f9-8aad9689d183 + - 527aa2be-0f21-4cd8-b9f9-8aad9689d183 + - 527aa2be-0f21-4cd8-b9f9-8aad9689d183 + - 527aa2be-0f21-4cd8-b9f9-8aad9689d183 + - 527aa2be-0f21-4cd8-b9f9-8aad9689d183 + - 527aa2be-0f21-4cd8-b9f9-8aad9689d183 + - 527aa2be-0f21-4cd8-b9f9-8aad9689d183 + - 527aa2be-0f21-4cd8-b9f9-8aad9689d183 + - 527aa2be-0f21-4cd8-b9f9-8aad9689d183 + - 527aa2be-0f21-4cd8-b9f9-8aad9689d183 + - 527aa2be-0f21-4cd8-b9f9-8aad9689d183 + - 527aa2be-0f21-4cd8-b9f9-8aad9689d183 + - 527aa2be-0f21-4cd8-b9f9-8aad9689d183 + - 527aa2be-0f21-4cd8-b9f9-8aad9689d183 + - 527aa2be-0f21-4cd8-b9f9-8aad9689d183 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: B1F16F919B384BFBA85FF67B954FE680 Ref B: MAA201060513011 Ref C: 2025-10-27T13:44:16Z' + - 'Ref A: F0AD5CFB10444F1A9E58E3B577AC4EE9 Ref B: PNQ231110908029 Ref C: 2026-07-21T05:04:24Z' status: code: 200 message: OK @@ -1296,33 +1351,29 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.11.9 (Windows-10-10.0.26200-SP0) + - AZURECLI/2.88.0 azsdk-python-core/1.39.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/vaults?api-version=2025-08-01&$skiptoken=7dDPT8IwFMDxv4UmetGyrmUKJMagImroNDAmLFxK9xiD/UpbJhvhf3d48uzZ28v38N7L54gyOJhxnO006h/RcDD1ZlM6nA0%2BUB9tjCl037JSkYkIUshMW9R7BW2Zp5ber7RUcWHiPNMW6zLSAZth5twC7hAHcA96AlNKmGOHUkJXWoXKyzgEpS0eS5XrfG3aE5B5CaqagipjCdoqxT4x%2Bl4UMW66brbfUUIdTLqY2JcXtKN3zdF8B9md3eqSFq%2Bjmj9NEu5xw%2BsZC6aE8Cc/GXtJ8v45NHz7%2BtX0QzByt4G32c7rh/WCHopw5Nfho1MFLElc9lxJ%2BlaKlyG%2Bsls3pCVTv14xv1pQf82fe3Qx93X44p7n7WqUkGDukvE82ISfByKzQvG0w9yUVwGdYXS6RkKlgyhSEAkDoXf%2BtvEcTDi6/gHnQu1ANem4/G2%2BRP3lv/rf1JfohE7f + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/vaults?api-version=2026-05-01&$skiptoken=7dDNboJAEMDxZ3GT9lJXYFGrJKbB%2BFGTrm0EUYyXdRkR5Cu7K1WM715sLz31CXqb/A8zk98VZXBWb1F2lMi6orHtuEuHjJf2B7LQQalCWpqWsoyFkEKmWqw6CWjxPNXkaSe5iAoV5ZnUzJ6pt8Ewsdl5BtzWO4D70GeYEN3sGAHn0ONaIfIyCkBIjUZc5DLfq9YCeF6CuDggyoiD1Ep2SpR8YUWE6y7r7QOiky7WO1g3Hh9IWx7ro/kRsoHR6PYatAorOlok1KWKVktz4%2Bg6HXnJm5sk76uxovHss%2B7nzXQeb9xDvK6GezZNDhsyiSGbKZ5y/GQ02r0GT71qZ3oXn3h7OukTf%2B3J4HV%2Bn3O2mmT%2ByjP89fCnj2YY3ZqIidQOQwEhUxC4969qN3tBUfMbljJxBFGn6/a37RZZ23/dv3W36IZuXw%3D%3D response: body: - string: '{"value":[{"location":"eastus2euap","name":"clitest-vaultrzk2n76c2ge","etag":"W/\"datetime''2025-08-14T11%3A54%3A22.2610505Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","monitoringSettings":{"azureMonitorAlertSettings":{"alertsForAllJobFailures":"Enabled","alertsForAllReplicationIssues":"Enabled","alertsForAllFailoverIssues":"Enabled"},"classicAlertSettings":{"alertsForCriticalOperations":"Enabled","emailNotificationsForSiteRecovery":"Enabled"}},"secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgye7qrsbohq/providers/Microsoft.RecoveryServices/vaults/clitest-vaultrzk2n76c2ge","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"eastus2euap","name":"clitest-vaultkp5kmtwtal5","etag":"W/\"datetime''2025-08-14T11%3A54%3A42.5855108Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","monitoringSettings":{"azureMonitorAlertSettings":{"alertsForAllJobFailures":"Enabled","alertsForAllReplicationIssues":"Enabled","alertsForAllFailoverIssues":"Enabled"},"classicAlertSettings":{"alertsForCriticalOperations":"Enabled","emailNotificationsForSiteRecovery":"Enabled"}},"secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgytoc3bdlt3/providers/Microsoft.RecoveryServices/vaults/clitest-vaultkp5kmtwtal5","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"eastus2euap","name":"clitest-vaultyovqxpe34f4","etag":"W/\"datetime''2025-08-14T11%3A54%3A43.3572622Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","monitoringSettings":{"azureMonitorAlertSettings":{"alertsForAllJobFailures":"Enabled","alertsForAllReplicationIssues":"Enabled","alertsForAllFailoverIssues":"Enabled"},"classicAlertSettings":{"alertsForCriticalOperations":"Enabled","emailNotificationsForSiteRecovery":"Enabled"}},"secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgyymobtr3rk/providers/Microsoft.RecoveryServices/vaults/clitest-vaultyovqxpe34f4","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"eastus2euap","name":"clitest-vault4f4kqwll2qr","etag":"W/\"datetime''2025-08-14T11%3A54%3A45.1346904Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","monitoringSettings":{"azureMonitorAlertSettings":{"alertsForAllJobFailures":"Enabled","alertsForAllReplicationIssues":"Enabled","alertsForAllFailoverIssues":"Enabled"},"classicAlertSettings":{"alertsForCriticalOperations":"Enabled","emailNotificationsForSiteRecovery":"Enabled"}},"secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgyzhyosvymr/providers/Microsoft.RecoveryServices/vaults/clitest-vault4f4kqwll2qr","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"eastus2euap","name":"clitest-vaultfozqtljmy7s","etag":"W/\"datetime''2025-08-14T11%3A54%3A46.9511058Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","monitoringSettings":{"azureMonitorAlertSettings":{"alertsForAllJobFailures":"Enabled","alertsForAllReplicationIssues":"Enabled","alertsForAllFailoverIssues":"Enabled"},"classicAlertSettings":{"alertsForCriticalOperations":"Enabled","emailNotificationsForSiteRecovery":"Enabled"}},"secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgz664mkbgvz/providers/Microsoft.RecoveryServices/vaults/clitest-vaultfozqtljmy7s","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"eastus2euap","name":"clitest-vaultmiqnjknkgi2","etag":"W/\"datetime''2025-08-14T11%3A54%3A48.0427547Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","monitoringSettings":{"azureMonitorAlertSettings":{"alertsForAllJobFailures":"Enabled","alertsForAllReplicationIssues":"Enabled","alertsForAllFailoverIssues":"Enabled"},"classicAlertSettings":{"alertsForCriticalOperations":"Enabled","emailNotificationsForSiteRecovery":"Enabled"}},"secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgz7htufhyfzobhsnzzcll75ozfdd6zcofqgbrnh7djdp6i6umlgtfgtf6asu4hek45/providers/Microsoft.RecoveryServices/vaults/clitest-vaultmiqnjknkgi2","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"eastus2euap","name":"clitest-vaultesea4gxskcu","etag":"W/\"datetime''2025-08-14T11%3A54%3A51.5056403Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","monitoringSettings":{"azureMonitorAlertSettings":{"alertsForAllJobFailures":"Enabled","alertsForAllReplicationIssues":"Enabled","alertsForAllFailoverIssues":"Enabled"},"classicAlertSettings":{"alertsForCriticalOperations":"Enabled","emailNotificationsForSiteRecovery":"Enabled"}},"secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgz7r3acas4b/providers/Microsoft.RecoveryServices/vaults/clitest-vaultesea4gxskcu","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"eastus2euap","name":"vaultsd180425-2","etag":"W/\"datetime''2025-08-14T11%3A55%3A41.2996206Z''\"","tags":{"Owner":"Kalyan","Purpose":"Testing","DeleteBy":"10-2025"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/deleterg/providers/Microsoft.RecoveryServices/vaults/vaultsd180425-2","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"DonotUse-iaasvmsqlworkload-BVT-Ecy-vault","etag":"W/\"datetime''2025-08-14T12%3A02%3A25.6245775Z''\"","tags":{"MABUsed":"Yes"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DonotUse-iaasvmsqlworkload-BVT-Ecy-RG/providers/Microsoft.RecoveryServices/vaults/DonotUse-iaasvmsqlworkload-BVT-Ecy-vault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"newvaultqqq","etag":"W/\"datetime''2025-08-14T12%3A31%3A14.1289891Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoocreateVMM/providers/Microsoft.RecoveryServices/vaults/newvaultqqq","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"testgesahoo","etag":"W/\"datetime''2025-08-19T10%3A23%3A52.7906557Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoocreateVMM/providers/Microsoft.RecoveryServices/vaults/testgesahoo","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"testVault22","etag":"W/\"datetime''2025-10-03T04%3A58%3A13.5286278Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoocreateVMM/providers/Microsoft.RecoveryServices/vaults/testVault22","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"gvjreddy-czr-grsvaultwithcrr","etag":"W/\"datetime''2025-08-14T12%3A39%3A27.6961823Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-czr-grsvaultwithcrr","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"gvjreddy-czr-grsvaultwithoutcrr","etag":"W/\"datetime''2025-08-14T12%3A39%3A28.4769301Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-czr-grsvaultwithoutcrr","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"gvjreddy-czr-lrsvault","etag":"W/\"datetime''2025-08-14T16%3A34%3A56.0057331Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-czr-lrsvault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"gvjreddy-czr-zrsvault","etag":"W/\"datetime''2025-08-14T16%3A34%3A57.2641781Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-czr-zrsvault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"gvjreddy-ecy-vault-for-softdelete","etag":"W/\"datetime''2025-08-14T16%3A34%3A58.2737335Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-ecy-vault-for-softdelete","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"gvjreddy-immutability-vault","etag":"W/\"datetime''2025-08-14T16%3A34%3A58.9064556Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-immutability-vault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"gvjreddy-test-ecy-rsvault","etag":"W/\"datetime''2025-08-14T16%3A35%3A00.3258306Z''\"","tags":{"BackupVMName":"edgezonetest1","BackupVM - Name Test":"Sample VM Name"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-test-ecy-rsvault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"gvjreddy-test-ecy-rsvault-cmk-after-enabling-mua","etag":"W/\"datetime''2025-08-14T16%3A35%3A01.3983582Z''\"","identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"22adfe74-493b-4305-a61f-6c6fcc53eee1","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/gvjreddy-test-ecy-mi":{"clientId":"c2412e13-88a8-4835-b396-54b237b06074","principalId":"555834a3-dae4-40c9-a316-bcdaa9cf290d"}}},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-test-ecy-rsvault-cmk-after-enabling-mua","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"gvjreddy-test-ecy-rsvault-with-userassigned-cmk","etag":"W/\"datetime''2025-08-14T16%3A35%3A02.7167763Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","encryption":{"keyVaultProperties":{"keyUri":"https://gvjreddy-test-ecy-kv.vault.azure.net/keys/gvjreddy-test-ecy-key-alternate"},"kekIdentity":{"useSystemAssignedIdentity":false,"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/gvjreddy-test-ecy-mi"},"infrastructureEncryption":"Disabled"},"secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-test-ecy-rsvault-with-userassigned-cmk","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"gvjreddy-test-ecy-rsvault-with-userassigned-cmk-1","etag":"W/\"datetime''2025-08-14T16%3A35%3A04.0971682Z''\"","identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"b36c6baf-d775-4bea-b407-0cf5c6854048","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/gvjreddy-test-ecy-mi":{"clientId":"c2412e13-88a8-4835-b396-54b237b06074","principalId":"555834a3-dae4-40c9-a316-bcdaa9cf290d"}}},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-test-ecy-rsvault-with-userassigned-cmk-1","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"gvjreddy-test-ecy-vault-muadeletescenario","etag":"W/\"datetime''2025-08-14T16%3A35%3A04.8588324Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-test-ecy-vault-muadeletescenario","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"gvjreddy-test-ecy-vault-muawithcontributor","etag":"W/\"datetime''2025-08-14T16%3A35%3A06.1612588Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-test-ecy-vault-muawithcontributor","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"gvjreddy-test-ecy-vault-muawithreader","etag":"W/\"datetime''2025-08-14T16%3A35%3A07.2497798Z''\"","identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"0d26ad4d-7fd5-4b8c-9c00-30d4ce7b46e0","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-test-ecy-vault-muawithreader","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"gvjreddy-test-vault-20230714-1237","etag":"W/\"datetime''2025-08-14T16%3A35%3A07.9254815Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-test-vault-20230714-1237","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"gvjreddy-test-vault-20230714-1349","etag":"W/\"datetime''2025-08-14T16%3A35%3A08.725129Z''\"","identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"e43e0a3d-2e6b-412e-bfdc-07f95f93def3","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","encryption":{"keyVaultProperties":{"keyUri":"https://gvjreddy-test-ecy-kv.vault.azure.net/keys/gvjreddy-test-ecy-key"},"kekIdentity":{"useSystemAssignedIdentity":true,"userAssignedIdentity":null},"infrastructureEncryption":"Disabled"},"secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-test-vault-20230714-1349","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"gvjreddy-test-vault-20230714-1353","etag":"W/\"datetime''2025-08-14T16%3A35%3A09.5937463Z''\"","identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"b80e21cc-d9b7-4527-bb86-fc15e4d4d735","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","encryption":{"keyVaultProperties":{"keyUri":"https://gvjreddy-test-ecy-kv.vault.azure.net/keys/gvjreddy-test-ecy-key-alternate"},"kekIdentity":{"useSystemAssignedIdentity":true,"userAssignedIdentity":null},"infrastructureEncryption":"Disabled"},"secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-test-vault-20230714-1353","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"gvjreddy-test-vault-202307181605","etag":"W/\"datetime''2025-08-14T16%3A35%3A10.2034779Z''\"","tags":{"DeleteBy":"08-2023","Purpose":"PolicyType - change testing","Owner":"gvjreddy","AutoShutdown":"Yes"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-test-vault-202307181605","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"gvjreddy-test-vault-240711","etag":"W/\"datetime''2025-08-14T16%3A35%3A10.7162517Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-test-vault-240711","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"hiagaeuap-vault1","etag":"W/\"datetime''2025-08-14T16%3A35%3A11.3249843Z''\"","tags":{"MABUsed":"Yes","Owner":"hiaga","Purpose":"Testing","DeleteBy":"06-2022"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagaCZR-rg/providers/Microsoft.RecoveryServices/vaults/hiagaeuap-vault1","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"hiagaeuapVault2","etag":"W/\"datetime''2025-08-14T16%3A35%3A11.7787836Z''\"","tags":{"MABUsed":"Yes","Owner":"hiaga","Purpose":"Testing","DeleteBy":"01-2025"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","monitoringSettings":{"classicAlertSettings":{"alertsForCriticalOperations":"Enabled","emailNotificationsForSiteRecovery":"Enabled"}},"secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Disabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagaCZR-rg/providers/Microsoft.RecoveryServices/vaults/hiagaeuapVault2","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"hiagaImmutableVault2","etag":"W/\"datetime''2025-08-14T16%3A35%3A12.5984227Z''\"","tags":{"Owner":"hiaga","DeleteBy":"01-2024","Purpose":"Testing","MABUsed":"Yes"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","encryption":null,"secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagaCZR-rg/providers/Microsoft.RecoveryServices/vaults/hiagaImmutableVault2","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"eastus2euap","name":"vault543","etag":"W/\"datetime''2025-08-14T16%3A35%3A13.2291445Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/vault543","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"iaasvmexistingczrvault1","etag":"W/\"datetime''2025-08-14T16%3A35%3A14.3246626Z''\"","tags":{"Mab + string: '{"value":[{"location":"eastus2euap","name":"hiagaeuapVault2","etag":"W/\"datetime''2025-08-14T16%3A35%3A11.7787836Z''\"","tags":{"MABUsed":"Yes","Owner":"hiaga","Purpose":"Testing","DeleteBy":"01-2025"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","monitoringSettings":{"classicAlertSettings":{"alertsForCriticalOperations":"Enabled","emailNotificationsForSiteRecovery":"Enabled"}},"secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Disabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagaCZR-rg/providers/Microsoft.RecoveryServices/vaults/hiagaeuapVault2","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"hiagaImmutableVault2","etag":"W/\"datetime''2025-08-14T16%3A35%3A12.5984227Z''\"","tags":{"Owner":"hiaga","DeleteBy":"01-2024","Purpose":"Testing","MABUsed":"Yes"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","encryption":null,"secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagaCZR-rg/providers/Microsoft.RecoveryServices/vaults/hiagaImmutableVault2","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"eastus2euap","name":"vault543","etag":"W/\"datetime''2025-08-14T16%3A35%3A13.2291445Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/vault543","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"iaasvmexistingczrvault1","etag":"W/\"datetime''2025-08-14T16%3A35%3A14.3246626Z''\"","tags":{"Mab Used":"yes","Purpose":"BVT","Owner":"akkanase","DeleteBy":"01-2030"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvm.existing.czr.ecy/providers/Microsoft.RecoveryServices/vaults/iaasvmexistingczrvault1","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"iaasvmexistingczrvaultecy1","etag":"W/\"datetime''2025-08-14T16%3A35%3A14.6925002Z''\"","tags":{"Mab - Used":"yes","Purpose":"BVT","Owner":"akkanase","DeleteBy":"01-2030"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvm.existing.czr.ecy/providers/Microsoft.RecoveryServices/vaults/iaasvmexistingczrvaultecy1","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"iaasvmsqlworkloadexistingcrrsecondaryvault","etag":"W/\"datetime''2025-08-14T16%3A35%3A15.4681588Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Disabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.crr/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingcrrsecondaryvault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"testing12345","etag":"W/\"datetime''2025-08-14T16%3A35%3A16.2498145Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ishan_softDeleteContainerTest/providers/Microsoft.RecoveryServices/vaults/testing12345","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"testvault1","etag":"W/\"datetime''2025-08-14T16%3A35%3A16.6926193Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ishan_softDeleteContainerTest/providers/Microsoft.RecoveryServices/vaults/testvault1","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"testvault2","etag":"W/\"datetime''2025-08-14T16%3A35%3A17.5832264Z''\"","tags":{"Testing":"123"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ishan_softDeleteContainerTest/providers/Microsoft.RecoveryServices/vaults/testvault2","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"testvault33","etag":"W/\"datetime''2025-08-14T16%3A35%3A18.0710113Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ishan_softDeleteContainerTest/providers/Microsoft.RecoveryServices/vaults/testvault33","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"immutableVaultTest111","etag":"W/\"datetime''2025-08-14T16%3A35%3A18.7527116Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ishansap/providers/Microsoft.RecoveryServices/vaults/immutableVaultTest111","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"tpppp","etag":"W/\"datetime''2025-08-14T16%3A35%3A19.6323244Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ishansap/providers/Microsoft.RecoveryServices/vaults/tpppp","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"JCE-WE-MGMT-RSV-ONPREM","etag":"W/\"datetime''2025-08-14T16%3A35%3A20.2470527Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JCE-WE-MGMT-RG-DISASTERRECOVERY/providers/Microsoft.RecoveryServices/vaults/JCE-WE-MGMT-RSV-ONPREM","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"mkheranirsvvaultecy","etag":"W/\"datetime''2025-08-14T16%3A35%3A20.9297518Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mkheraniecyrg/providers/Microsoft.RecoveryServices/vaults/mkheranirsvvaultecy","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"mkheraniecyrgtarget2","etag":"W/\"datetime''2025-08-14T16%3A35%3A21.5644728Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mkheraniecyrgtarget/providers/Microsoft.RecoveryServices/vaults/mkheraniecyrgtarget2","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"mkheranitargetvault","etag":"W/\"datetime''2025-08-14T16%3A35%3A22.0222707Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mkheraniecyrgtarget/providers/Microsoft.RecoveryServices/vaults/mkheranitargetvault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"vault89","etag":"W/\"datetime''2025-08-14T16%3A35%3A22.6489951Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/newRG/providers/Microsoft.RecoveryServices/vaults/vault89","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"akkanaseTest","etag":"W/\"datetime''2025-08-14T16%3A35%3A23.3097032Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RamatBugbash/providers/Microsoft.RecoveryServices/vaults/akkanaseTest","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"VaultSoftDelete","etag":"W/\"datetime''2025-08-14T16%3A35%3A24.0373828Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RamatBugbash/providers/Microsoft.RecoveryServices/vaults/VaultSoftDelete","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"argTest3","etag":"W/\"datetime''2025-08-14T16%3A35%3A25.0719269Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redundancyTestingVault/providers/Microsoft.RecoveryServices/vaults/argTest3","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"argTest4","etag":"W/\"datetime''2025-08-14T16%3A35%3A26.272398Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redundancyTestingVault/providers/Microsoft.RecoveryServices/vaults/argTest4","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"test11","etag":"W/\"datetime''2025-08-14T16%3A35%3A27.8117202Z''\"","tags":{"Owner":"ishanjindal","AutoAddedTagsSpendMgmt":"Owner"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redundancyTestingVault/providers/Microsoft.RecoveryServices/vaults/test11","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"test12","etag":"W/\"datetime''2025-08-14T16%3A35%3A29.2960653Z''\"","tags":{"Owner":"ishanjindal","AutoAddedTagsSpendMgmt":"Owner"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redundancyTestingVault/providers/Microsoft.RecoveryServices/vaults/test12","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"test654","etag":"W/\"datetime''2025-08-14T16%3A35%3A44.58033Z''\"","tags":{"Owner":"ishanjindal","AutoAddedTagsSpendMgmt":"Owner"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redundancyTestingVault/providers/Microsoft.RecoveryServices/vaults/test654","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"test6543","etag":"W/\"datetime''2025-08-14T16%3A35%3A45.3569884Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redundancyTestingVault/providers/Microsoft.RecoveryServices/vaults/test6543","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"Rereg-AFS-Test","etag":"W/\"datetime''2025-10-27T07%3A19%3A18.250199Z''\"","tags":{"Owner":"kalyan","Purpose":"Test","DeleteBy":"10-2025"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/reregistration-test-rg/providers/Microsoft.RecoveryServices/vaults/Rereg-AFS-Test","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"Rereg-VM-Test","etag":"W/\"datetime''2025-10-27T07%3A22%3A20.9832261Z''\"","tags":{"Owner":"Kalyan","Purpose":"Testing","DeleteBy":"10-2025"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/reregistration-test-rg/providers/Microsoft.RecoveryServices/vaults/Rereg-VM-Test","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"reregistration-demo-vault","etag":"W/\"datetime''2025-10-27T07%3A22%3A21.1231643Z''\"","tags":{"CreatedOn":"2025-07-01T04:46:19.3664265Z"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/reregistration-test-rg/providers/Microsoft.RecoveryServices/vaults/reregistration-demo-vault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"testclassicsa","etag":"W/\"datetime''2025-08-14T16%3A35%3A47.8019101Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rohinitest/providers/Microsoft.RecoveryServices/vaults/testclassicsa","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"saphana-clitest-secondary-vault","etag":"W/\"datetime''2025-08-14T16%3A35%3A48.2517118Z''\"","tags":{"Owner":"akneema","MABUsed":"Yes","DeleteBy":"12-9999","Purpose":"CLITest"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/saphana-clitest-rg/providers/Microsoft.RecoveryServices/vaults/saphana-clitest-secondary-vault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"saphanaworkloadexistingsecondaryvault","etag":"W/\"datetime''2025-08-14T16%3A35%3A49.0133769Z''\"","tags":{"MABUsed":"Yes","Purpose":"BVT"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","encryption":null,"secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/saphanaworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/saphanaworkloadexistingsecondaryvault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"sarathecyvault","etag":"W/\"datetime''2025-08-14T16%3A36%3A53.0851312Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarathecyvault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"simran-rs","etag":"W/\"datetime''2025-08-14T16%3A43%3A53.6017981Z''\"","tags":{"Auto + Used":"yes","Purpose":"BVT","Owner":"akkanase","DeleteBy":"01-2030"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvm.existing.czr.ecy/providers/Microsoft.RecoveryServices/vaults/iaasvmexistingczrvaultecy1","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"iaasvmsqlworkloadexistingcrrsecondaryvault","etag":"W/\"datetime''2025-08-14T16%3A35%3A15.4681588Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Disabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.crr/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingcrrsecondaryvault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"testing12345","etag":"W/\"datetime''2025-08-14T16%3A35%3A16.2498145Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ishan_softDeleteContainerTest/providers/Microsoft.RecoveryServices/vaults/testing12345","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"testvault1","etag":"W/\"datetime''2025-08-14T16%3A35%3A16.6926193Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ishan_softDeleteContainerTest/providers/Microsoft.RecoveryServices/vaults/testvault1","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"testvault2","etag":"W/\"datetime''2025-08-14T16%3A35%3A17.5832264Z''\"","tags":{"Testing":"123"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ishan_softDeleteContainerTest/providers/Microsoft.RecoveryServices/vaults/testvault2","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"testvault33","etag":"W/\"datetime''2025-08-14T16%3A35%3A18.0710113Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ishan_softDeleteContainerTest/providers/Microsoft.RecoveryServices/vaults/testvault33","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"immutableVaultTest111","etag":"W/\"datetime''2025-08-14T16%3A35%3A18.7527116Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ishansap/providers/Microsoft.RecoveryServices/vaults/immutableVaultTest111","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"tpppp","etag":"W/\"datetime''2025-08-14T16%3A35%3A19.6323244Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ishansap/providers/Microsoft.RecoveryServices/vaults/tpppp","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"JCE-WE-MGMT-RSV-ONPREM","etag":"W/\"datetime''2025-08-14T16%3A35%3A20.2470527Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JCE-WE-MGMT-RG-DISASTERRECOVERY/providers/Microsoft.RecoveryServices/vaults/JCE-WE-MGMT-RSV-ONPREM","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"mkheranirsvvaultecy","etag":"W/\"datetime''2025-08-14T16%3A35%3A20.9297518Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mkheraniecyrg/providers/Microsoft.RecoveryServices/vaults/mkheranirsvvaultecy","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"mkheraniecyrgtarget2","etag":"W/\"datetime''2025-08-14T16%3A35%3A21.5644728Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mkheraniecyrgtarget/providers/Microsoft.RecoveryServices/vaults/mkheraniecyrgtarget2","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"mkheranitargetvault","etag":"W/\"datetime''2025-08-14T16%3A35%3A22.0222707Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mkheraniecyrgtarget/providers/Microsoft.RecoveryServices/vaults/mkheranitargetvault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"vault89","etag":"W/\"datetime''2025-08-14T16%3A35%3A22.6489951Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/newRG/providers/Microsoft.RecoveryServices/vaults/vault89","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"afscrrtest","etag":"W/\"datetime''2026-06-15T08%3A59%3A39.4917713Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raghavchugh-rg/providers/Microsoft.RecoveryServices/vaults/afscrrtest","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"csbCzrTestVault","etag":"W/\"datetime''2026-03-08T17%3A48%3A42.2092997Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raghavchugh-rg/providers/Microsoft.RecoveryServices/vaults/csbCzrTestVault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"raghav-mars-vault","etag":"W/\"datetime''2026-01-20T14%3A16%3A00.3308169Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raghavchugh-rg/providers/Microsoft.RecoveryServices/vaults/raghav-mars-vault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"raghavTestImmutableVault","etag":"W/\"datetime''2026-03-05T06%3A04%3A53.2809478Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","costManagementSettings":{"granularityLevel":"ProtectedItemWithParentTag"},"secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raghavchugh-rg/providers/Microsoft.RecoveryServices/vaults/raghavTestImmutableVault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"SoftDeleteVaultTestFlagOn","etag":"W/\"datetime''2026-01-01T12%3A59%3A47.7545227Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raghavchugh-rg/providers/Microsoft.RecoveryServices/vaults/SoftDeleteVaultTestFlagOn","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"tb-immutability-30d","etag":"W/\"datetime''2026-06-12T11%3A43%3A45.595814Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raghavchugh-rg/providers/Microsoft.RecoveryServices/vaults/tb-immutability-30d","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"tb-immutability-60d","etag":"W/\"datetime''2026-06-12T12%3A42%3A39.950836Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raghavchugh-rg/providers/Microsoft.RecoveryServices/vaults/tb-immutability-60d","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"tb-immutability-off","etag":"W/\"datetime''2026-06-12T12%3A32%3A45.6497033Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raghavchugh-rg/providers/Microsoft.RecoveryServices/vaults/tb-immutability-off","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"tb-immutability-policy","etag":"W/\"datetime''2026-06-12T12%3A27%3A37.7366446Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raghavchugh-rg/providers/Microsoft.RecoveryServices/vaults/tb-immutability-policy","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"testVault","etag":"W/\"datetime''2026-04-24T06%3A01%3A52.6165071Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raghavchugh-rg/providers/Microsoft.RecoveryServices/vaults/testVault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"vaultDeletionTest","etag":"W/\"datetime''2026-04-16T07%3A30%3A48.2199412Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raghavchugh-rg/providers/Microsoft.RecoveryServices/vaults/vaultDeletionTest","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"crosssubscriptionbackup-czr-test","etag":"W/\"datetime''2026-03-05T04%3A01%3A28.9377361Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raghavchugh-test-rg/providers/Microsoft.RecoveryServices/vaults/crosssubscriptionbackup-czr-test","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"akkanaseTest","etag":"W/\"datetime''2025-08-14T16%3A35%3A23.3097032Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RamatBugbash/providers/Microsoft.RecoveryServices/vaults/akkanaseTest","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"VaultSoftDelete","etag":"W/\"datetime''2025-08-14T16%3A35%3A24.0373828Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RamatBugbash/providers/Microsoft.RecoveryServices/vaults/VaultSoftDelete","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"argTest3","etag":"W/\"datetime''2025-08-14T16%3A35%3A25.0719269Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redundancyTestingVault/providers/Microsoft.RecoveryServices/vaults/argTest3","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"argTest4","etag":"W/\"datetime''2025-08-14T16%3A35%3A26.272398Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redundancyTestingVault/providers/Microsoft.RecoveryServices/vaults/argTest4","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"test11","etag":"W/\"datetime''2025-08-14T16%3A35%3A27.8117202Z''\"","tags":{"Owner":"ishanjindal","AutoAddedTagsSpendMgmt":"Owner"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redundancyTestingVault/providers/Microsoft.RecoveryServices/vaults/test11","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"test12","etag":"W/\"datetime''2025-08-14T16%3A35%3A29.2960653Z''\"","tags":{"Owner":"ishanjindal","AutoAddedTagsSpendMgmt":"Owner"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redundancyTestingVault/providers/Microsoft.RecoveryServices/vaults/test12","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"test654","etag":"W/\"datetime''2025-08-14T16%3A35%3A44.58033Z''\"","tags":{"Owner":"ishanjindal","AutoAddedTagsSpendMgmt":"Owner"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redundancyTestingVault/providers/Microsoft.RecoveryServices/vaults/test654","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"test6543","etag":"W/\"datetime''2025-08-14T16%3A35%3A45.3569884Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redundancyTestingVault/providers/Microsoft.RecoveryServices/vaults/test6543","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"Rereg-AFS-Test","etag":"W/\"datetime''2025-10-30T18%3A17%3A23.363862Z''\"","tags":{"Owner":"kalyan","Purpose":"Test","DeleteBy":"10-2025"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/reregistration-test-rg/providers/Microsoft.RecoveryServices/vaults/Rereg-AFS-Test","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"Rereg-VM-Test","etag":"W/\"datetime''2026-03-30T07%3A00%3A36.58315Z''\"","tags":{"Owner":"Kalyan","Purpose":"Testing","DeleteBy":"10-2025"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/reregistration-test-rg/providers/Microsoft.RecoveryServices/vaults/Rereg-VM-Test","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"reregistration-demo-vault","etag":"W/\"datetime''2025-10-27T07%3A22%3A21.1231643Z''\"","tags":{"CreatedOn":"2025-07-01T04:46:19.3664265Z"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/reregistration-test-rg/providers/Microsoft.RecoveryServices/vaults/reregistration-demo-vault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"testclassicsa","etag":"W/\"datetime''2025-08-14T16%3A35%3A47.8019101Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rohinitest/providers/Microsoft.RecoveryServices/vaults/testclassicsa","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"saphana-clitest-secondary-vault","etag":"W/\"datetime''2025-08-14T16%3A35%3A48.2517118Z''\"","tags":{"Owner":"akneema","MABUsed":"Yes","DeleteBy":"12-9999","Purpose":"CLITest"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/saphana-clitest-rg/providers/Microsoft.RecoveryServices/vaults/saphana-clitest-secondary-vault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"saphanaworkloadexistingsecondaryvault","etag":"W/\"datetime''2025-08-14T16%3A35%3A49.0133769Z''\"","tags":{"MABUsed":"Yes","Purpose":"BVT"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","encryption":null,"secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/saphanaworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/saphanaworkloadexistingsecondaryvault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"sarathecyvault","etag":"W/\"datetime''2025-08-14T16%3A36%3A53.0851312Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarathecyvault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"simran-rs","etag":"W/\"datetime''2025-08-14T16%3A43%3A53.6017981Z''\"","tags":{"Auto Shutdown":"No"," DeleteBy":"05-2039"},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cmk.system/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identity2":{"clientId":"c105dcb0-b19f-4d55-adba-749e0037c42e","principalId":"ab44c749-c400-4689-bcd1-128d7ecefd94"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cmk.system/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identityea1":{"clientId":"72141888-2ff1-4b7c-a17c-7c727f93e2da","principalId":"6b5aa7f8-362a-4e49-bd0d-d22e2e10ef09"}}},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Disabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/simran-test/providers/Microsoft.RecoveryServices/vaults/simran-rs","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"snirsvault-sys","etag":"W/\"datetime''2025-08-14T16%3A43%3A54.4824096Z''\"","tags":{"Owner":"zubairabid","Purpose":"SNI Testing"},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"0e188efb-b4f7-4276-b7df-516b39e9ff1f","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/snitestingrgecy/providers/Microsoft.RecoveryServices/vaults/snirsvault-sys","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"snirsvault-sysuser","etag":"W/\"datetime''2025-08-14T16%3A43%3A55.1041355Z''\"","tags":{"Owner":"zubairabid","Purpose":"SNI Testing"},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"959ceaf3-1fae-428e-83f1-7e48f8a021b9","type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg7pyzsjevhwekdbuqz553tg6kgb6slt5rnpfllucxn5hfwmjf2ajkuvi2gbdaaxgwv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity1lo6xcwqhnfjlvnrua4ltft5sexv2vwbdq":{"clientId":"da517d21-5e7b-44b8-a1d4-da442e04819f","principalId":"1a4e49c1-5ead-4089-8842-6387e7c47da9"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg7pyzsjevhwekdbuqz553tg6kgb6slt5rnpfllucxn5hfwmjf2ajkuvi2gbdaaxgwv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity2rirallpzdiewl22mxvqokxo33nnpipxka":{"clientId":"4f600a01-5528-4de0-a35a-b50eae847d9c","principalId":"b9ced4e4-c763-4812-a0f5-c0ecb4badecf"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgdzpzsaihvvk3ol7ruhv26iuemblmnbqkpfy4wnc3nlfqvyeb35exxm4ysury32tyd/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity137pbjy65i54ed7o3i2qo7c2wzk6ygda2h":{"clientId":"c126e597-db35-4f69-8a05-d3090fb49e2e","principalId":"f0d76384-52d5-4702-a329-4ce942b74b9e"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgdzpzsaihvvk3ol7ruhv26iuemblmnbqkpfy4wnc3nlfqvyeb35exxm4ysury32tyd/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity2nv45p6srizmxurnkwwa4lgmqil4vo7p57":{"clientId":"62b3a5f2-8bbe-4316-a0fd-ae363fb14e9d","principalId":"0a35a6cc-9b72-46cf-ae32-24bf27872442"}}},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/snitestingrgecy/providers/Microsoft.RecoveryServices/vaults/snirsvault-sysuser","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"snirsvault-user","etag":"W/\"datetime''2025-08-14T16%3A43%3A55.9297716Z''\"","tags":{"Owner":"zubairabid","Purpose":"SNI - Testing"},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg7pyzsjevhwekdbuqz553tg6kgb6slt5rnpfllucxn5hfwmjf2ajkuvi2gbdaaxgwv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity1lo6xcwqhnfjlvnrua4ltft5sexv2vwbdq":{"clientId":"da517d21-5e7b-44b8-a1d4-da442e04819f","principalId":"1a4e49c1-5ead-4089-8842-6387e7c47da9"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg7pyzsjevhwekdbuqz553tg6kgb6slt5rnpfllucxn5hfwmjf2ajkuvi2gbdaaxgwv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity2rirallpzdiewl22mxvqokxo33nnpipxka":{"clientId":"4f600a01-5528-4de0-a35a-b50eae847d9c","principalId":"b9ced4e4-c763-4812-a0f5-c0ecb4badecf"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgdzpzsaihvvk3ol7ruhv26iuemblmnbqkpfy4wnc3nlfqvyeb35exxm4ysury32tyd/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity137pbjy65i54ed7o3i2qo7c2wzk6ygda2h":{"clientId":"c126e597-db35-4f69-8a05-d3090fb49e2e","principalId":"f0d76384-52d5-4702-a329-4ce942b74b9e"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgdzpzsaihvvk3ol7ruhv26iuemblmnbqkpfy4wnc3nlfqvyeb35exxm4ysury32tyd/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity2nv45p6srizmxurnkwwa4lgmqil4vo7p57":{"clientId":"62b3a5f2-8bbe-4316-a0fd-ae363fb14e9d","principalId":"0a35a6cc-9b72-46cf-ae32-24bf27872442"}}},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/snitestingrgecy/providers/Microsoft.RecoveryServices/vaults/snirsvault-user","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"testhanatarget","etag":"W/\"datetime''2025-08-14T16%3A43%3A56.5095161Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testbcdrhana/providers/Microsoft.RecoveryServices/vaults/testhanatarget","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"vepothir-eastus2euap","etag":"W/\"datetime''2025-08-31T19%3A50%3A37.9859179Z''\"","identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"829318ca-d52b-423a-bf44-09303cfd8345","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vepothir-rg-ram-sub/providers/Microsoft.RecoveryServices/vaults/vepothir-eastus2euap","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"vepothir-softdelete-2","etag":"W/\"datetime''2025-08-14T16%3A52%3A02.2833801Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vepothir-rg-ram-sub/providers/Microsoft.RecoveryServices/vaults/vepothir-softdelete-2","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"vepothir-test-sof-create-vault","etag":"W/\"datetime''2025-08-14T16%3A52%3A26.4517321Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vepothir-rg-ram-sub/providers/Microsoft.RecoveryServices/vaults/vepothir-test-sof-create-vault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"vepothir-vault-eastus2euap","etag":"W/\"datetime''2025-08-14T16%3A52%3A26.0908917Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vepothir-rg-ram-sub/providers/Microsoft.RecoveryServices/vaults/vepothir-vault-eastus2euap","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"vepothir-vault-gaurd","etag":"W/\"datetime''2025-08-14T16%3A52%3A26.776589Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vepothir-rg-ram-sub/providers/Microsoft.RecoveryServices/vaults/vepothir-vault-gaurd","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"ABCTestDUPIVault","etag":"W/\"datetime''2025-08-14T16%3A52%3A27.4293019Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vtAG8abcc-EASTUS2EUAP/providers/Microsoft.RecoveryServices/vaults/ABCTestDUPIVault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"ClusterDUPITestABCC","etag":"W/\"datetime''2025-08-14T16%3A52%3A27.9200852Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vtAG9abcc-EASTUS2EUAP/providers/Microsoft.RecoveryServices/vaults/ClusterDUPITestABCC","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"zcmktest","etag":"W/\"datetime''2025-08-14T16%3A52%3A28.549809Z''\"","identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zubairRGecy/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zubairuamiecy":{"clientId":"e5f5dcca-f99a-4722-8de8-b51ba0119ab0","principalId":"08dab2c2-10f7-4cbd-9321-b097e3c2ca84"}}},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","encryption":{"keyVaultProperties":{"keyUri":"https://zubairkv.vault.azure.net/keys/cmktest1"},"kekIdentity":{"useSystemAssignedIdentity":false,"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zubairRGecy/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zubairuamiecy"},"infrastructureEncryption":"Disabled"},"secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zubairRG/providers/Microsoft.RecoveryServices/vaults/zcmktest","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"zecysdtestvault0","etag":"W/\"datetime''2025-08-14T16%3A52%3A29.3004767Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","monitoringSettings":{"azureMonitorAlertSettings":{"alertsForAllJobFailures":"Enabled","alertsForAllReplicationIssues":"Enabled","alertsForAllFailoverIssues":"Enabled"},"classicAlertSettings":{"alertsForCriticalOperations":"Enabled","emailNotificationsForSiteRecovery":"Enabled"}},"secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zubairRG/providers/Microsoft.RecoveryServices/vaults/zecysdtestvault0","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"eastus2euap","name":"zecysdtestvault1","etag":"W/\"datetime''2025-08-14T16%3A52%3A29.613339Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","monitoringSettings":{"azureMonitorAlertSettings":{"alertsForAllJobFailures":"Enabled","alertsForAllReplicationIssues":"Enabled","alertsForAllFailoverIssues":"Enabled"},"classicAlertSettings":{"alertsForCriticalOperations":"Enabled","emailNotificationsForSiteRecovery":"Enabled"}},"secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zubairRG/providers/Microsoft.RecoveryServices/vaults/zecysdtestvault1","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"eastus2euap","name":"zecysdtestvault2","etag":"W/\"datetime''2025-08-14T16%3A52%3A30.3070333Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","monitoringSettings":{"azureMonitorAlertSettings":{"alertsForAllJobFailures":"Enabled","alertsForAllReplicationIssues":"Enabled","alertsForAllFailoverIssues":"Enabled"},"classicAlertSettings":{"alertsForCriticalOperations":"Enabled","emailNotificationsForSiteRecovery":"Enabled"}},"secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zubairRG/providers/Microsoft.RecoveryServices/vaults/zecysdtestvault2","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"eastus2euap","name":"zimmut-ecy-1","etag":"W/\"datetime''2025-08-14T16%3A52%3A30.7138541Z''\"","tags":{"Owner":"zubairabid"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zubairRG/providers/Microsoft.RecoveryServices/vaults/zimmut-ecy-1","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"ztest1005","etag":"W/\"datetime''2025-08-14T16%3A52%3A31.2496178Z''\"","identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zubairRGecy/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zubairuamiecy":{"clientId":"e5f5dcca-f99a-4722-8de8-b51ba0119ab0","principalId":"08dab2c2-10f7-4cbd-9321-b097e3c2ca84"}}},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","monitoringSettings":{"azureMonitorAlertSettings":{"alertsForAllJobFailures":"Enabled","alertsForAllReplicationIssues":"Enabled","alertsForAllFailoverIssues":"Enabled"},"classicAlertSettings":{"alertsForCriticalOperations":"Enabled","emailNotificationsForSiteRecovery":"Enabled"}},"secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zubairRG/providers/Microsoft.RecoveryServices/vaults/ztest1005","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"eastus2euap","name":"test-crr-remove","etag":"W/\"datetime''2025-08-14T16%3A52%3A32.1932021Z''\"","tags":{"Owner":"zubairabid","Purpose":"CSI + Testing"},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg7pyzsjevhwekdbuqz553tg6kgb6slt5rnpfllucxn5hfwmjf2ajkuvi2gbdaaxgwv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity1lo6xcwqhnfjlvnrua4ltft5sexv2vwbdq":{"clientId":"da517d21-5e7b-44b8-a1d4-da442e04819f","principalId":"1a4e49c1-5ead-4089-8842-6387e7c47da9"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg7pyzsjevhwekdbuqz553tg6kgb6slt5rnpfllucxn5hfwmjf2ajkuvi2gbdaaxgwv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity2rirallpzdiewl22mxvqokxo33nnpipxka":{"clientId":"4f600a01-5528-4de0-a35a-b50eae847d9c","principalId":"b9ced4e4-c763-4812-a0f5-c0ecb4badecf"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgdzpzsaihvvk3ol7ruhv26iuemblmnbqkpfy4wnc3nlfqvyeb35exxm4ysury32tyd/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity137pbjy65i54ed7o3i2qo7c2wzk6ygda2h":{"clientId":"c126e597-db35-4f69-8a05-d3090fb49e2e","principalId":"f0d76384-52d5-4702-a329-4ce942b74b9e"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgdzpzsaihvvk3ol7ruhv26iuemblmnbqkpfy4wnc3nlfqvyeb35exxm4ysury32tyd/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity2nv45p6srizmxurnkwwa4lgmqil4vo7p57":{"clientId":"62b3a5f2-8bbe-4316-a0fd-ae363fb14e9d","principalId":"0a35a6cc-9b72-46cf-ae32-24bf27872442"}}},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/snitestingrgecy/providers/Microsoft.RecoveryServices/vaults/snirsvault-user","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"testhanatarget","etag":"W/\"datetime''2025-08-14T16%3A43%3A56.5095161Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testbcdrhana/providers/Microsoft.RecoveryServices/vaults/testhanatarget","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"vepothir-eastus2euap","etag":"W/\"datetime''2026-03-05T05%3A57%3A26.8100307Z''\"","identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"829318ca-d52b-423a-bf44-09303cfd8345","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","costManagementSettings":{"granularityLevel":"ProtectedItemWithParentTag"},"secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vepothir-rg-ram-sub/providers/Microsoft.RecoveryServices/vaults/vepothir-eastus2euap","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"vepothir-softdelete-2","etag":"W/\"datetime''2025-08-14T16%3A52%3A02.2833801Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vepothir-rg-ram-sub/providers/Microsoft.RecoveryServices/vaults/vepothir-softdelete-2","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"vepothir-test-sof-create-vault","etag":"W/\"datetime''2025-08-14T16%3A52%3A26.4517321Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vepothir-rg-ram-sub/providers/Microsoft.RecoveryServices/vaults/vepothir-test-sof-create-vault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"vepothir-vault-eastus2euap","etag":"W/\"datetime''2026-03-05T05%3A52%3A57.6882696Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","costManagementSettings":{"granularityLevel":"ProtectedItemWithParentTag"},"secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vepothir-rg-ram-sub/providers/Microsoft.RecoveryServices/vaults/vepothir-vault-eastus2euap","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"vepothir-vault-gaurd","etag":"W/\"datetime''2025-08-14T16%3A52%3A26.776589Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vepothir-rg-ram-sub/providers/Microsoft.RecoveryServices/vaults/vepothir-vault-gaurd","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"ABCTestDUPIVault","etag":"W/\"datetime''2026-06-01T10%3A10%3A22.5416135Z''\"","identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dimunj-eus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/test-uami-wus2-1":{"clientId":"3cbdfe2c-4c86-49e9-a9f1-75065b32bf36","principalId":"84506a41-2c01-49fb-bdc5-a0d100f6b193"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagaCZR-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/hiagaUserIdentity2":{"clientId":"6059a064-efa4-4f21-a52a-df467ddd1e60","principalId":"a399daa0-490c-4e1c-b7ca-2f4c8175ad9b"}}},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vtAG8abcc-EASTUS2EUAP/providers/Microsoft.RecoveryServices/vaults/ABCTestDUPIVault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"ClusterDUPITestABCC","etag":"W/\"datetime''2025-08-14T16%3A52%3A27.9200852Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vtAG9abcc-EASTUS2EUAP/providers/Microsoft.RecoveryServices/vaults/ClusterDUPITestABCC","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"risraj-resourcemovetest","etag":"W/\"datetime''2026-03-05T06%3A12%3A37.6624328Z''\"","properties":{"provisioningState":"Succeeded","moveDetails":{"operationId":"0cd27352-bb58-44e5-a48d-d6a4c22abb37","startTimeUtc":"2026-01-20T09:44:47.2096239Z","completionTimeUtc":"2026-01-20T09:46:44.6481567Z","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/risraj-rsvtesting/providers/Microsoft.RecoveryServices/vaults/risraj-resourcemovetest","targetResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zubairRG/providers/Microsoft.RecoveryServices/vaults/risraj-resourcemovetest"},"moveState":"MoveSucceeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zubairRG/providers/Microsoft.RecoveryServices/vaults/risraj-resourcemovetest","type":"microsoft.recoveryservices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"risraj-rmove1","etag":"W/\"datetime''2026-01-19T15%3A32%3A40.8780162Z''\"","properties":{"provisioningState":"Succeeded","moveDetails":{"operationId":"54abd589-e11c-49cc-8c24-0a88d42692f0","startTimeUtc":"2026-01-19T15:30:52.785272Z","completionTimeUtc":"2026-01-19T15:32:40.8480876Z","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/risraj-rg/providers/Microsoft.RecoveryServices/vaults/risraj-rmove1","targetResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zubairRG/providers/Microsoft.RecoveryServices/vaults/risraj-rmove1"},"moveState":"MoveSucceeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zubairRG/providers/Microsoft.RecoveryServices/vaults/risraj-rmove1","type":"microsoft.recoveryservices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"zcmktest","etag":"W/\"datetime''2025-08-14T16%3A52%3A28.549809Z''\"","identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zubairRGecy/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zubairuamiecy":{"clientId":"e5f5dcca-f99a-4722-8de8-b51ba0119ab0","principalId":"08dab2c2-10f7-4cbd-9321-b097e3c2ca84"}}},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","encryption":{"keyVaultProperties":{"keyUri":"https://zubairkv.vault.azure.net/keys/cmktest1"},"kekIdentity":{"useSystemAssignedIdentity":false,"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zubairRGecy/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zubairuamiecy"},"infrastructureEncryption":"Disabled"},"secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zubairRG/providers/Microsoft.RecoveryServices/vaults/zcmktest","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"zecysdtestvault0","etag":"W/\"datetime''2025-08-14T16%3A52%3A29.3004767Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","monitoringSettings":{"azureMonitorAlertSettings":{"alertsForAllJobFailures":"Enabled","alertsForAllReplicationIssues":"Enabled","alertsForAllFailoverIssues":"Enabled"},"classicAlertSettings":{"alertsForCriticalOperations":"Enabled","emailNotificationsForSiteRecovery":"Enabled"}},"secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zubairRG/providers/Microsoft.RecoveryServices/vaults/zecysdtestvault0","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"eastus2euap","name":"zecysdtestvault1","etag":"W/\"datetime''2025-08-14T16%3A52%3A29.613339Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","monitoringSettings":{"azureMonitorAlertSettings":{"alertsForAllJobFailures":"Enabled","alertsForAllReplicationIssues":"Enabled","alertsForAllFailoverIssues":"Enabled"},"classicAlertSettings":{"alertsForCriticalOperations":"Enabled","emailNotificationsForSiteRecovery":"Enabled"}},"secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zubairRG/providers/Microsoft.RecoveryServices/vaults/zecysdtestvault1","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"eastus2euap","name":"zecysdtestvault2","etag":"W/\"datetime''2025-08-14T16%3A52%3A30.3070333Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","monitoringSettings":{"azureMonitorAlertSettings":{"alertsForAllJobFailures":"Enabled","alertsForAllReplicationIssues":"Enabled","alertsForAllFailoverIssues":"Enabled"},"classicAlertSettings":{"alertsForCriticalOperations":"Enabled","emailNotificationsForSiteRecovery":"Enabled"}},"secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zubairRG/providers/Microsoft.RecoveryServices/vaults/zecysdtestvault2","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"eastus2euap","name":"zimmut-ecy-1","etag":"W/\"datetime''2025-08-14T16%3A52%3A30.7138541Z''\"","tags":{"Owner":"zubairabid"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zubairRG/providers/Microsoft.RecoveryServices/vaults/zimmut-ecy-1","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"ztest1005","etag":"W/\"datetime''2025-08-14T16%3A52%3A31.2496178Z''\"","identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zubairRGecy/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zubairuamiecy":{"clientId":"e5f5dcca-f99a-4722-8de8-b51ba0119ab0","principalId":"08dab2c2-10f7-4cbd-9321-b097e3c2ca84"}}},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","monitoringSettings":{"azureMonitorAlertSettings":{"alertsForAllJobFailures":"Enabled","alertsForAllReplicationIssues":"Enabled","alertsForAllFailoverIssues":"Enabled"},"classicAlertSettings":{"alertsForCriticalOperations":"Enabled","emailNotificationsForSiteRecovery":"Enabled"}},"secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zubairRG/providers/Microsoft.RecoveryServices/vaults/ztest1005","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"eastus2euap","name":"test-crr-remove","etag":"W/\"datetime''2025-08-14T16%3A52%3A32.1932021Z''\"","tags":{"Owner":"zubairabid","Purpose":"CSI Testing"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zubairRGecy/providers/Microsoft.RecoveryServices/vaults/test-crr-remove","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"test245","etag":"W/\"datetime''2025-08-14T16%3A52%3A31.7513967Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zubairRGecy/providers/Microsoft.RecoveryServices/vaults/test245","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}}]}' headers: cache-control: - no-cache content-length: - - '67285' + - '52784' content-type: - application/json; charset=utf-8 date: - - Mon, 27 Oct 2025 13:44:22 GMT + - Tue, 21 Jul 2026 05:04:29 GMT expires: - '-1' pragma: @@ -1334,11 +1385,11 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - f6dd408e-6f1e-41a0-805d-a3816e03ac38 - x-ms-throttling-version: - - v2 + - 5e2b4868-e0eb-4a2d-a253-51bc1a53735a + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: E398E74A4C854912B2514F084C998A3A Ref B: MAA201060513049 Ref C: 2025-10-27T13:44:21Z' + - 'Ref A: 644CEFA212CE430A9FE8FDA64883AF22 Ref B: PNQ231110908062 Ref C: 2026-07-21T05:04:28Z' status: code: 200 message: OK @@ -1356,21 +1407,21 @@ interactions: ParameterSetName: - -g User-Agent: - - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.11.9 (Windows-10-10.0.26200-SP0) + - AZURECLI/2.88.0 azsdk-python-core/1.39.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults?api-version=2025-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults?api-version=2026-05-01 response: body: - string: '{"value":[{"location":"eastus2euap","name":"clitest-vault000004","etag":"W/\"datetime''2025-10-27T13%3A42%3A03.3640265Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","monitoringSettings":{"azureMonitorAlertSettings":{"alertsForAllJobFailures":"Enabled","alertsForAllReplicationIssues":"Enabled","alertsForAllFailoverIssues":"Enabled"},"classicAlertSettings":{"alertsForCriticalOperations":"Enabled","emailNotificationsForSiteRecovery":"Enabled"}},"secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000004","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"eastus2euap","name":"clitest-vault000005","etag":"W/\"datetime''2025-10-27T13%3A44%3A14.953657Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","monitoringSettings":{"azureMonitorAlertSettings":{"alertsForAllJobFailures":"Enabled","alertsForAllReplicationIssues":"Enabled","alertsForAllFailoverIssues":"Enabled"},"classicAlertSettings":{"alertsForCriticalOperations":"Enabled","emailNotificationsForSiteRecovery":"Enabled"}},"secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Disabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"eastus2euap","name":"clitest-vault000002","etag":"W/\"datetime''2025-10-27T13%3A40%3A49.6290441Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","monitoringSettings":{"azureMonitorAlertSettings":{"alertsForAllJobFailures":"Enabled","alertsForAllReplicationIssues":"Enabled","alertsForAllFailoverIssues":"Enabled"},"classicAlertSettings":{"alertsForCriticalOperations":"Enabled","emailNotificationsForSiteRecovery":"Enabled"}},"secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"eastus2euap","name":"clitest-vault000003","etag":"W/\"datetime''2025-10-27T13%3A41%3A57.1007886Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","monitoringSettings":{"azureMonitorAlertSettings":{"alertsForAllJobFailures":"Enabled","alertsForAllReplicationIssues":"Enabled","alertsForAllFailoverIssues":"Enabled"},"classicAlertSettings":{"alertsForCriticalOperations":"Enabled","emailNotificationsForSiteRecovery":"Enabled"}},"secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}]}' + string: '{"value":[{"location":"eastus2euap","name":"clitest-vault000003","etag":"W/\"datetime''2026-07-21T05%3A02%3A07.0287516Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","monitoringSettings":{"azureMonitorAlertSettings":{"alertsForAllJobFailures":"Enabled","alertsForAllReplicationIssues":"Enabled","alertsForAllFailoverIssues":"Enabled"},"classicAlertSettings":{"alertsForCriticalOperations":"Enabled","emailNotificationsForSiteRecovery":"Enabled"}},"costManagementSettings":{"granularityLevel":"VaultLevel"},"secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"eastus2euap","name":"clitest-vault000004","etag":"W/\"datetime''2026-07-21T05%3A02%3A12.4980463Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","monitoringSettings":{"azureMonitorAlertSettings":{"alertsForAllJobFailures":"Enabled","alertsForAllReplicationIssues":"Enabled","alertsForAllFailoverIssues":"Enabled"},"classicAlertSettings":{"alertsForCriticalOperations":"Enabled","emailNotificationsForSiteRecovery":"Enabled"}},"costManagementSettings":{"granularityLevel":"VaultLevel"},"secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000004","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"eastus2euap","name":"clitest-vault000005","etag":"W/\"datetime''2026-07-21T05%3A04%3A20.8823489Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","monitoringSettings":{"azureMonitorAlertSettings":{"alertsForAllJobFailures":"Enabled","alertsForAllReplicationIssues":"Enabled","alertsForAllFailoverIssues":"Enabled"},"classicAlertSettings":{"alertsForCriticalOperations":"Enabled","emailNotificationsForSiteRecovery":"Enabled"}},"costManagementSettings":{"granularityLevel":"VaultLevel"},"secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Disabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"eastus2euap","name":"clitest-vault000002","etag":"W/\"datetime''2026-07-21T05%3A01%3A00.2552071Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","monitoringSettings":{"azureMonitorAlertSettings":{"alertsForAllJobFailures":"Enabled","alertsForAllReplicationIssues":"Enabled","alertsForAllFailoverIssues":"Enabled"},"classicAlertSettings":{"alertsForCriticalOperations":"Enabled","emailNotificationsForSiteRecovery":"Enabled"}},"costManagementSettings":{"granularityLevel":"VaultLevel"},"secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}]}' headers: cache-control: - no-cache content-length: - - '3775' + - '4012' content-type: - application/json; charset=utf-8 date: - - Mon, 27 Oct 2025 13:44:24 GMT + - Tue, 21 Jul 2026 05:04:31 GMT expires: - '-1' pragma: @@ -1382,11 +1433,11 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - d3c97978-2a30-4807-b405-a5c4ee81fd92 + - 86efd471-005f-4b71-8940-72a33905eac8 x-ms-throttling-version: - v2 x-msedge-ref: - - 'Ref A: 6E378C08565D447A83AE0E0BD916B263 Ref B: MAA201060513019 Ref C: 2025-10-27T13:44:24Z' + - 'Ref A: 07ACCBA4833241D1A57A4D215F7A7B45 Ref B: PNQ231110909054 Ref C: 2026-07-21T05:04:31Z' status: code: 200 message: OK @@ -1404,21 +1455,21 @@ interactions: ParameterSetName: - -n -g --query User-Agent: - - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.11.9 (Windows-10-10.0.26200-SP0) + - AZURECLI/2.88.0 azsdk-python-core/1.39.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2025-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2026-05-01 response: body: - string: '{"location":"eastus2euap","name":"clitest-vault000002","etag":"W/\"datetime''2025-10-27T13%3A40%3A49.6290441Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","monitoringSettings":{"azureMonitorAlertSettings":{"alertsForAllJobFailures":"Enabled","alertsForAllReplicationIssues":"Enabled","alertsForAllFailoverIssues":"Enabled"},"classicAlertSettings":{"alertsForCriticalOperations":"Enabled","emailNotificationsForSiteRecovery":"Enabled"}},"backupStorageVersion":"Unassigned","securitySettings":{"softDeleteSettings":{"softDeleteRetentionPeriodInDays":14,"softDeleteState":"AlwaysON","enhancedSecurityState":"AlwaysON"},"multiUserAuthorization":"Disabled","sourceScanConfiguration":{"state":"Disabled"}},"redundancySettings":{"standardTierStorageRedundancy":"GeoRedundant","crossRegionRestore":"Disabled"},"secureScore":"Adequate","bcdrSecurityLevel":"Good","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' + string: '{"location":"eastus2euap","name":"clitest-vault000002","etag":"W/\"datetime''2026-07-21T05%3A01%3A00.2552071Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","monitoringSettings":{"azureMonitorAlertSettings":{"alertsForAllJobFailures":"Enabled","alertsForAllReplicationIssues":"Enabled","alertsForAllFailoverIssues":"Enabled"},"classicAlertSettings":{"alertsForCriticalOperations":"Enabled","emailNotificationsForSiteRecovery":"Enabled"}},"costManagementSettings":{"granularityLevel":"VaultLevel"},"backupStorageVersion":"Unassigned","securitySettings":{"softDeleteSettings":{"softDeleteRetentionPeriodInDays":14,"softDeleteState":"AlwaysON","enhancedSecurityState":"AlwaysON"},"multiUserAuthorization":"Disabled","sourceScanConfiguration":{"state":"Disabled"}},"redundancySettings":{"standardTierStorageRedundancy":"GeoRedundant","crossRegionRestore":"Disabled"},"secureScore":"Adequate","bcdrSecurityLevel":"Good","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' headers: cache-control: - no-cache content-length: - - '1310' + - '1369' content-type: - application/json; charset=utf-8 date: - - Mon, 27 Oct 2025 13:44:25 GMT + - Tue, 21 Jul 2026 05:04:32 GMT expires: - '-1' pragma: @@ -1432,7 +1483,7 @@ interactions: x-ms-throttling-version: - v2 x-msedge-ref: - - 'Ref A: 419A0346F4A346F4BE851102A4CBC083 Ref B: MAA201060516037 Ref C: 2025-10-27T13:44:25Z' + - 'Ref A: 03360E5188CC452BA63FB0407BD63135 Ref B: PNQ231110906023 Ref C: 2026-07-21T05:04:32Z' status: code: 200 message: OK @@ -1450,21 +1501,21 @@ interactions: ParameterSetName: - -n -g --backup-storage-redundancy User-Agent: - - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.11.9 (Windows-10-10.0.26200-SP0) + - AZURECLI/2.88.0 azsdk-python-core/1.39.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2025-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2026-05-01 response: body: - string: '{"location":"eastus2euap","name":"clitest-vault000002","etag":"W/\"datetime''2025-10-27T13%3A40%3A49.6290441Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","monitoringSettings":{"azureMonitorAlertSettings":{"alertsForAllJobFailures":"Enabled","alertsForAllReplicationIssues":"Enabled","alertsForAllFailoverIssues":"Enabled"},"classicAlertSettings":{"alertsForCriticalOperations":"Enabled","emailNotificationsForSiteRecovery":"Enabled"}},"backupStorageVersion":"Unassigned","securitySettings":{"softDeleteSettings":{"softDeleteRetentionPeriodInDays":14,"softDeleteState":"AlwaysON","enhancedSecurityState":"AlwaysON"},"multiUserAuthorization":"Disabled","sourceScanConfiguration":{"state":"Disabled"}},"redundancySettings":{"standardTierStorageRedundancy":"GeoRedundant","crossRegionRestore":"Disabled"},"secureScore":"Adequate","bcdrSecurityLevel":"Good","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' + string: '{"location":"eastus2euap","name":"clitest-vault000002","etag":"W/\"datetime''2026-07-21T05%3A01%3A00.2552071Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","monitoringSettings":{"azureMonitorAlertSettings":{"alertsForAllJobFailures":"Enabled","alertsForAllReplicationIssues":"Enabled","alertsForAllFailoverIssues":"Enabled"},"classicAlertSettings":{"alertsForCriticalOperations":"Enabled","emailNotificationsForSiteRecovery":"Enabled"}},"costManagementSettings":{"granularityLevel":"VaultLevel"},"backupStorageVersion":"Unassigned","securitySettings":{"softDeleteSettings":{"softDeleteRetentionPeriodInDays":14,"softDeleteState":"AlwaysON","enhancedSecurityState":"AlwaysON"},"multiUserAuthorization":"Disabled","sourceScanConfiguration":{"state":"Disabled"}},"redundancySettings":{"standardTierStorageRedundancy":"GeoRedundant","crossRegionRestore":"Disabled"},"secureScore":"Adequate","bcdrSecurityLevel":"Good","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' headers: cache-control: - no-cache content-length: - - '1310' + - '1369' content-type: - application/json; charset=utf-8 date: - - Mon, 27 Oct 2025 13:44:26 GMT + - Tue, 21 Jul 2026 05:04:33 GMT expires: - '-1' pragma: @@ -1478,7 +1529,7 @@ interactions: x-ms-throttling-version: - v2 x-msedge-ref: - - 'Ref A: 7E2FEBE937BD4B3EA6168BBD3CEF378E Ref B: MAA201060516045 Ref C: 2025-10-27T13:44:26Z' + - 'Ref A: 9FC9895463AD4508B1B74DF34C9146A8 Ref B: PNQ231110906034 Ref C: 2026-07-21T05:04:33Z' status: code: 200 message: OK @@ -1501,25 +1552,25 @@ interactions: ParameterSetName: - -n -g --backup-storage-redundancy User-Agent: - - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.11.9 (Windows-10-10.0.26200-SP0) + - AZURECLI/2.88.0 azsdk-python-core/1.39.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2025-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2026-05-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationStatus/NDA5NTs1ZTg4ZjQ2Mi0zYzcwLTQ4NjEtYTc1Yi01ZWYzN2ZhMDhmYjg=?api-version=2025-08-01&t=638971694710926896&c=MIIIrzCCBpegAwIBAgITUQFCmjDFW2ad-G6vagABAUKaMDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDQwHhcNMjUxMDIzMTMyODI2WhcNMjYwNDIxMTMyODI2WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOuboi1dcXBvQvebjAWnATr4x0pBiJ_9Z5p_9sMApobamRIbVqAn0bWMbxKh4ZGZXWPkD_Z0tHf3HcwDV8HAtRb94yCmlJ91FdUPwdvearZ_p7x4hhAOMY6PMSui6rVU2onWK8cZIHGUJjpGyQdnoAZqokXu-Sh7NdGtzihCGhOqtGNRif_bUqIgsF6xXbK7ihVnoU5ielifEDYvAaIckyRys6btj7aexNQMm_KsR1ERcA31AQddvA12DH2voLLuz_yS_6fdqH07yLNqyB3ZhRrYaUTOJ1ntszxcTJ4NGCYcoHxg2qEx0sVbRqSWzReTB9ttPjV7mEsR8fsiLfYrVB0CAwEAAaOCBJwwggSYMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHkBggrBgEFBQcBAQSCAdYwggHSMGgGCCsGAQUFBzAChlxodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDEuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDIuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDMuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDQuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDAdBgNVHQ4EFgQUiSQhKXhpKn7Xg7zG2N38FkGays0wDgYDVR0PAQH_BAQDAgWgMIIBNQYDVR0fBIIBLDCCASgwggEkoIIBIKCCARyGQmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DUkwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDEuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDIuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDMuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDQuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwHwYDVR0jBBgwFoAUOXFdqRUQLcTffi9ZbkBNwN_vNpowHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA0GCSqGSIb3DQEBCwUAA4ICAQBLyJ8Ui2iEMJU3hMEnAPrp5g1UE822y4j-WlOmNcv4RcPLuwaAB5ag3d4s0pXH2JflQreXuPdx_asdgqh4RVOPeQA10B2GhLH88ugNTreCho6QHshADGDfoTqoKUJobZWSZ5sRf20yLH-Huky7ZXlSr-unDGy416lIOi8sPLfezE8Nmvd8-uI6WhY037nbexRLG0ynX22sfDlaRKO3dshzC7RcMf5UeUMx7MqeryGNT5Oy-GzPhoXXotuxL6d6KENDTFpTtA8VnbEtAONH4-lhX-yqSgDlSU3PkMcsML9L8C0kdF_Yr9IlCvYMg5A9XxOT2F6W0NR6mms7ju-BNZpKt06mCjl09sAFUAwAYibeIpbXHGg9rZCCFqTjBqFJqrTcURhbOBsmOV1PUOlC4vBpyh6eqKwm9VtP9erCcQ0e20ojH0Yh5-An7Pp29KvETv7C7Va9pqX4SSqyBSCrDpc7lb_ZAKzd9PstLko-ZlIWNhyOVGr_4BzhaooprK8DZeEAgrkdGs3C69SF2OcZn9VQkbeV_tkvOxpRppWlIK5A4cllGt5uQIITli-MjzUGpaNJW-EztsIelC53QGU4hq0To6N990-6yz3P2xv7kW93lNUH-anM5KUpC1C_DCld_OTPlBL02kBshXYE5kwZJkmeXhyIUpCkTUc_YqaXuEIoTQ&s=Myk0lkDHtnp3raQCV6d5K3b_nL6cv6lfuIaCAmpYYDWrpdqu_Mv6R1yy3uOjpWtJ_MP5zTV6OIXptt7RrD-k60RvGoyWpVv5lSzzNF9bJixjPN_x2IleGG7c915sZ8zL75JGYD6Bf6SxlP_se_auHBno3o845lfkM4pol7E1RZCYAIof0ZuaXA_fsv7aTzTpzlMidfJAoIX_iy8asMD4STVatWEzJf0xLAFXEarGHcRMXiU3Wsu6iQpNDY_nIzKQqX4y9IZ5pzDMhTVobHuGVW51dEOeN3kvVahkPTVqRuyLY28V7ZVtWLN386vmIhPQJvhbQtDrlGBNbxruEmPJgw&h=Zx2J0bUW7iklqlKPKbCebgHGJXWRWmcvdPDLsSnkAW4 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationStatus/NDA5NTs0NjAxYjM2MC1mYjliLTQ1NmMtOTJmOS1mZGZmNDYyNDkzYTA=?api-version=2026-05-01&t=639202070752025830&c=MIIH9TCCBt2gAwIBAgIRAKnTo6mKeliSYj1GLETof4IwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVUyQyBDQSAwMTAeFw0yNjA3MDIxNTU4NDNaFw0yNjA5MjcyMTU4NDNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAlDQMyX5eVlNoyHQy97t41xstx7ISW3Jpt0fmktBr-SytLFjS2PEwnW3DFpc-bQgfDfHkKP0_FRLvm_mazEvS5KYzyX6nFjGqQTX3SfneJV5jo7nOwYnQHFTbkg0Dngz7AipTBy6yAiQqKMhRo_D-N4o3stwmKHeA0tAiEOx4G_PiAZBVgwqD_hS-porAKnsf-m7-vYsa-g9Cw0SQ2t7YIFgfqGifFcAH79L7QF5n4-toqH20MDZrR10dXpjNK50DvRiltXMo7xC198sVfC6ISY8hDbiFDpsKgL_lz-pJ2kyYJNyq1NUfS79AS70Bkl13eaOYbl8go_Oo41Ma5ArEgQIDAQABo4IE8jCCBO4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7Mv1WvWn7sAfft9pF9lwNBkNam0wHwYDVR0jBBgwFoAUz1EBqulDLGR2G0rwqsDykvhPw7swggHiBgNVHR8EggHZMIIB1TB1oHOgcYZvaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHegdaBzhnFodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyZXVhcC9jcmxzL2NjbWVlYXN0dXMyZXVhcHBraS9jY21lZWFzdHVzMmV1YXBpY2EwMS82NS9jdXJyZW50LmNybDBmoGSgYoZgaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHugeaB3hnVodHRwOi8vY2NtZWVhc3R1czJldWFwcGtpLmVhc3R1czJldWFwLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJldWFwaWNhMDEvNjUvY3VycmVudC5jcmwwggHnBggrBgEFBQcBAQSCAdkwggHVMHgGCCsGAQUFBzAChmxodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwegYIKwYBBQUHMAKGbmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NhY2VydHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxL2NlcnQuY2VyMGkGCCsGAQUFBzAChl1odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwcgYIKwYBBQUHMAKGZmh0dHA6Ly9jY21lZWFzdHVzMmV1YXBwa2kuZWFzdHVzMmV1YXAucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmV1YXBpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAndPCPc-CmjHOQpHPVSFI4dsJ3mAAA9L0QPDWwmXXvm66R08WToYQA9QCpkqxZEzl69AhSTR5x65hpeRv8xhwwj57QIuBD6rfMRghZH83T4x3bdOI4KmhFi_uY_52-cou5_xf0DyGAI_C77U5rC8TmVil8EsUCojV8rWkZXUBQSKZMaC1gzmzWW3pgKG9zwbD6J1M_7PW6f_zhE9KvGfBrLALoabdK0H_in5p3CyRMQee9pXSpsictb8cyfBIRU1fRSNmLnOjVSlF_Ll20gYIhnHvetGUxWU0EE9gWSJVUtwbqJjCeDouKPwe2UYUosoETTC7iluHZc0PV9EMfunH2w&s=Jm2n0RZHz7l5snXEbjxeRcmoNySCZdluDAepKPaAzyZaJm8yRt7NFKGoYEwgxSSiUBV3KB8iMS7DHYM-w4Oj6YYQSkQafPuzxAn63GrgWSBMuMGRHZfhwCiwIUtNhE8UkFdiCsL8j57dLMnzF8h2is0wPsvM3oBG4cpHvgz7cwpPKNHMrego8AKF3ugEDzBtuUHta6AhmhJV5yYpMOLGS_gq8v0GHPUQNOzIUeyrz71HGgSTF62LjV7z56ezS7zw4hJ9okX0KHr0MA-VZN4seS2g6LgvOiMm_TkNi1wV8msjYrf0waYAejZxAlBE8ElycKX_aju0DFEItCq4J-4X_Q&h=8UxdkWJ5LMYmf8aZvZ2e0SqmUGSoJwpC_ueBzeJlpmk cache-control: - no-cache content-length: - '0' date: - - Mon, 27 Oct 2025 13:44:30 GMT + - Tue, 21 Jul 2026 05:04:35 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationResults/NDA5NTs1ZTg4ZjQ2Mi0zYzcwLTQ4NjEtYTc1Yi01ZWYzN2ZhMDhmYjg=?api-version=2025-08-01&t=638971694711083067&c=MIIIrzCCBpegAwIBAgITUQFCmjDFW2ad-G6vagABAUKaMDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDQwHhcNMjUxMDIzMTMyODI2WhcNMjYwNDIxMTMyODI2WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOuboi1dcXBvQvebjAWnATr4x0pBiJ_9Z5p_9sMApobamRIbVqAn0bWMbxKh4ZGZXWPkD_Z0tHf3HcwDV8HAtRb94yCmlJ91FdUPwdvearZ_p7x4hhAOMY6PMSui6rVU2onWK8cZIHGUJjpGyQdnoAZqokXu-Sh7NdGtzihCGhOqtGNRif_bUqIgsF6xXbK7ihVnoU5ielifEDYvAaIckyRys6btj7aexNQMm_KsR1ERcA31AQddvA12DH2voLLuz_yS_6fdqH07yLNqyB3ZhRrYaUTOJ1ntszxcTJ4NGCYcoHxg2qEx0sVbRqSWzReTB9ttPjV7mEsR8fsiLfYrVB0CAwEAAaOCBJwwggSYMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHkBggrBgEFBQcBAQSCAdYwggHSMGgGCCsGAQUFBzAChlxodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDEuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDIuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDMuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDQuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDAdBgNVHQ4EFgQUiSQhKXhpKn7Xg7zG2N38FkGays0wDgYDVR0PAQH_BAQDAgWgMIIBNQYDVR0fBIIBLDCCASgwggEkoIIBIKCCARyGQmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DUkwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDEuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDIuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDMuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDQuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwHwYDVR0jBBgwFoAUOXFdqRUQLcTffi9ZbkBNwN_vNpowHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA0GCSqGSIb3DQEBCwUAA4ICAQBLyJ8Ui2iEMJU3hMEnAPrp5g1UE822y4j-WlOmNcv4RcPLuwaAB5ag3d4s0pXH2JflQreXuPdx_asdgqh4RVOPeQA10B2GhLH88ugNTreCho6QHshADGDfoTqoKUJobZWSZ5sRf20yLH-Huky7ZXlSr-unDGy416lIOi8sPLfezE8Nmvd8-uI6WhY037nbexRLG0ynX22sfDlaRKO3dshzC7RcMf5UeUMx7MqeryGNT5Oy-GzPhoXXotuxL6d6KENDTFpTtA8VnbEtAONH4-lhX-yqSgDlSU3PkMcsML9L8C0kdF_Yr9IlCvYMg5A9XxOT2F6W0NR6mms7ju-BNZpKt06mCjl09sAFUAwAYibeIpbXHGg9rZCCFqTjBqFJqrTcURhbOBsmOV1PUOlC4vBpyh6eqKwm9VtP9erCcQ0e20ojH0Yh5-An7Pp29KvETv7C7Va9pqX4SSqyBSCrDpc7lb_ZAKzd9PstLko-ZlIWNhyOVGr_4BzhaooprK8DZeEAgrkdGs3C69SF2OcZn9VQkbeV_tkvOxpRppWlIK5A4cllGt5uQIITli-MjzUGpaNJW-EztsIelC53QGU4hq0To6N990-6yz3P2xv7kW93lNUH-anM5KUpC1C_DCld_OTPlBL02kBshXYE5kwZJkmeXhyIUpCkTUc_YqaXuEIoTQ&s=a__vvMgy-D-npJcUzEm3Q82LDX28DMrbRtpacrUjar9MtUftLRGgWPoWfyq4Pcp7LSmJoxl68uteqQMVnXNOhZqDl7Ibp9qGyEiB-dNwNgxU_2xwN2yLNZCV6a0KuM3Un01BileKH7u59urNx4OjjOoQpK4rteen6RDsfWeenDUXxDvMeXVUbXTKQ_IPYfQU5Lay3TIsbCfRw7NOYES8SFkkT5GQpzmPk7qJMUcuT3h3uJkjQO760uXXYU0nLQNt6jhzAXF3GqyO7zBuws7wGPGktpr91f04WduaNqVbovrEh-Rvk8uMiVHMaoKGVrSdn3IyM5D2PqFq-3gvPBwR8w&h=Gsb52yaweo-SmrDDjZczqI7MCwhaq4hLBAvQtDijUxo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationResults/NDA5NTs0NjAxYjM2MC1mYjliLTQ1NmMtOTJmOS1mZGZmNDYyNDkzYTA=?api-version=2026-05-01&t=639202070752025830&c=MIIH9TCCBt2gAwIBAgIRAKnTo6mKeliSYj1GLETof4IwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVUyQyBDQSAwMTAeFw0yNjA3MDIxNTU4NDNaFw0yNjA5MjcyMTU4NDNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAlDQMyX5eVlNoyHQy97t41xstx7ISW3Jpt0fmktBr-SytLFjS2PEwnW3DFpc-bQgfDfHkKP0_FRLvm_mazEvS5KYzyX6nFjGqQTX3SfneJV5jo7nOwYnQHFTbkg0Dngz7AipTBy6yAiQqKMhRo_D-N4o3stwmKHeA0tAiEOx4G_PiAZBVgwqD_hS-porAKnsf-m7-vYsa-g9Cw0SQ2t7YIFgfqGifFcAH79L7QF5n4-toqH20MDZrR10dXpjNK50DvRiltXMo7xC198sVfC6ISY8hDbiFDpsKgL_lz-pJ2kyYJNyq1NUfS79AS70Bkl13eaOYbl8go_Oo41Ma5ArEgQIDAQABo4IE8jCCBO4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7Mv1WvWn7sAfft9pF9lwNBkNam0wHwYDVR0jBBgwFoAUz1EBqulDLGR2G0rwqsDykvhPw7swggHiBgNVHR8EggHZMIIB1TB1oHOgcYZvaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHegdaBzhnFodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyZXVhcC9jcmxzL2NjbWVlYXN0dXMyZXVhcHBraS9jY21lZWFzdHVzMmV1YXBpY2EwMS82NS9jdXJyZW50LmNybDBmoGSgYoZgaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHugeaB3hnVodHRwOi8vY2NtZWVhc3R1czJldWFwcGtpLmVhc3R1czJldWFwLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJldWFwaWNhMDEvNjUvY3VycmVudC5jcmwwggHnBggrBgEFBQcBAQSCAdkwggHVMHgGCCsGAQUFBzAChmxodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwegYIKwYBBQUHMAKGbmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NhY2VydHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxL2NlcnQuY2VyMGkGCCsGAQUFBzAChl1odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwcgYIKwYBBQUHMAKGZmh0dHA6Ly9jY21lZWFzdHVzMmV1YXBwa2kuZWFzdHVzMmV1YXAucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmV1YXBpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAndPCPc-CmjHOQpHPVSFI4dsJ3mAAA9L0QPDWwmXXvm66R08WToYQA9QCpkqxZEzl69AhSTR5x65hpeRv8xhwwj57QIuBD6rfMRghZH83T4x3bdOI4KmhFi_uY_52-cou5_xf0DyGAI_C77U5rC8TmVil8EsUCojV8rWkZXUBQSKZMaC1gzmzWW3pgKG9zwbD6J1M_7PW6f_zhE9KvGfBrLALoabdK0H_in5p3CyRMQee9pXSpsictb8cyfBIRU1fRSNmLnOjVSlF_Ll20gYIhnHvetGUxWU0EE9gWSJVUtwbqJjCeDouKPwe2UYUosoETTC7iluHZc0PV9EMfunH2w&s=PuSMImpLpYmYiMit26oGwQzP49HPn2x0c-Erb-YGLVuHJrZdiKr91JhbPUZon7jER3vm8hVLgHOOgWTccXbjA0nWZTEbkB1fDkOonaj_Xl1KMkmlfPPuAYr3TkrhGXd8MTkbbV7q9iqBkf-6b_cFqRibRGkZhrCjbCnLNP09TAF8xReDJwEUKPfHwCt1y0tcpAhV1QftyWOR3z47QYB0HDKowy5AyHPLoYXK9S2aRFjARxRCgpUTmxaCt_UxaVYYMuc4DAzkQ1OQGfd_813agXN_SX_e9MzUktBjvt4elUPxSaPdi9wn4AYQi4aKfiwst9_sg4K6sdisn4D4i_LCow&h=DXUja1uoihw5bCdHT3uufCy9WFOAh8K-KS7x6qk_a-Q pragma: - no-cache strict-transport-security: @@ -1529,11 +1580,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=12f8ea5c-1212-449e-b31c-0a574f43076e/westindia/98656e33-22fc-4652-acfd-47d51eec664c + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=352782de-cadf-4f14-ad97-08cd2617ef55/eastus2euap/81160d05-cdf6-4656-8ee9-4aceedde19c4 x-ms-ratelimit-remaining-subscription-resource-requests: - '799' + x-ms-throttling-version: + - v1 x-msedge-ref: - - 'Ref A: EF666CB83E5E408C897E65DA703D30E9 Ref B: MAA201060513017 Ref C: 2025-10-27T13:44:27Z' + - 'Ref A: 3781DCD7737F45CCB706DF95FC09FE68 Ref B: PNQ231110909036 Ref C: 2026-07-21T05:04:34Z' status: code: 202 message: Accepted @@ -1551,17 +1604,17 @@ interactions: ParameterSetName: - -n -g --backup-storage-redundancy User-Agent: - - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.11.9 (Windows-10-10.0.26200-SP0) + - AZURECLI/2.88.0 azsdk-python-core/1.39.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationStatus/NDA5NTs1ZTg4ZjQ2Mi0zYzcwLTQ4NjEtYTc1Yi01ZWYzN2ZhMDhmYjg=?api-version=2025-08-01&t=638971694710926896&c=MIIIrzCCBpegAwIBAgITUQFCmjDFW2ad-G6vagABAUKaMDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDQwHhcNMjUxMDIzMTMyODI2WhcNMjYwNDIxMTMyODI2WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOuboi1dcXBvQvebjAWnATr4x0pBiJ_9Z5p_9sMApobamRIbVqAn0bWMbxKh4ZGZXWPkD_Z0tHf3HcwDV8HAtRb94yCmlJ91FdUPwdvearZ_p7x4hhAOMY6PMSui6rVU2onWK8cZIHGUJjpGyQdnoAZqokXu-Sh7NdGtzihCGhOqtGNRif_bUqIgsF6xXbK7ihVnoU5ielifEDYvAaIckyRys6btj7aexNQMm_KsR1ERcA31AQddvA12DH2voLLuz_yS_6fdqH07yLNqyB3ZhRrYaUTOJ1ntszxcTJ4NGCYcoHxg2qEx0sVbRqSWzReTB9ttPjV7mEsR8fsiLfYrVB0CAwEAAaOCBJwwggSYMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHkBggrBgEFBQcBAQSCAdYwggHSMGgGCCsGAQUFBzAChlxodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDEuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDIuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDMuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDQuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDAdBgNVHQ4EFgQUiSQhKXhpKn7Xg7zG2N38FkGays0wDgYDVR0PAQH_BAQDAgWgMIIBNQYDVR0fBIIBLDCCASgwggEkoIIBIKCCARyGQmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DUkwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDEuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDIuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDMuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDQuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwHwYDVR0jBBgwFoAUOXFdqRUQLcTffi9ZbkBNwN_vNpowHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA0GCSqGSIb3DQEBCwUAA4ICAQBLyJ8Ui2iEMJU3hMEnAPrp5g1UE822y4j-WlOmNcv4RcPLuwaAB5ag3d4s0pXH2JflQreXuPdx_asdgqh4RVOPeQA10B2GhLH88ugNTreCho6QHshADGDfoTqoKUJobZWSZ5sRf20yLH-Huky7ZXlSr-unDGy416lIOi8sPLfezE8Nmvd8-uI6WhY037nbexRLG0ynX22sfDlaRKO3dshzC7RcMf5UeUMx7MqeryGNT5Oy-GzPhoXXotuxL6d6KENDTFpTtA8VnbEtAONH4-lhX-yqSgDlSU3PkMcsML9L8C0kdF_Yr9IlCvYMg5A9XxOT2F6W0NR6mms7ju-BNZpKt06mCjl09sAFUAwAYibeIpbXHGg9rZCCFqTjBqFJqrTcURhbOBsmOV1PUOlC4vBpyh6eqKwm9VtP9erCcQ0e20ojH0Yh5-An7Pp29KvETv7C7Va9pqX4SSqyBSCrDpc7lb_ZAKzd9PstLko-ZlIWNhyOVGr_4BzhaooprK8DZeEAgrkdGs3C69SF2OcZn9VQkbeV_tkvOxpRppWlIK5A4cllGt5uQIITli-MjzUGpaNJW-EztsIelC53QGU4hq0To6N990-6yz3P2xv7kW93lNUH-anM5KUpC1C_DCld_OTPlBL02kBshXYE5kwZJkmeXhyIUpCkTUc_YqaXuEIoTQ&s=Myk0lkDHtnp3raQCV6d5K3b_nL6cv6lfuIaCAmpYYDWrpdqu_Mv6R1yy3uOjpWtJ_MP5zTV6OIXptt7RrD-k60RvGoyWpVv5lSzzNF9bJixjPN_x2IleGG7c915sZ8zL75JGYD6Bf6SxlP_se_auHBno3o845lfkM4pol7E1RZCYAIof0ZuaXA_fsv7aTzTpzlMidfJAoIX_iy8asMD4STVatWEzJf0xLAFXEarGHcRMXiU3Wsu6iQpNDY_nIzKQqX4y9IZ5pzDMhTVobHuGVW51dEOeN3kvVahkPTVqRuyLY28V7ZVtWLN386vmIhPQJvhbQtDrlGBNbxruEmPJgw&h=Zx2J0bUW7iklqlKPKbCebgHGJXWRWmcvdPDLsSnkAW4 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationStatus/NDA5NTs0NjAxYjM2MC1mYjliLTQ1NmMtOTJmOS1mZGZmNDYyNDkzYTA=?api-version=2026-05-01&t=639202070752025830&c=MIIH9TCCBt2gAwIBAgIRAKnTo6mKeliSYj1GLETof4IwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVUyQyBDQSAwMTAeFw0yNjA3MDIxNTU4NDNaFw0yNjA5MjcyMTU4NDNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAlDQMyX5eVlNoyHQy97t41xstx7ISW3Jpt0fmktBr-SytLFjS2PEwnW3DFpc-bQgfDfHkKP0_FRLvm_mazEvS5KYzyX6nFjGqQTX3SfneJV5jo7nOwYnQHFTbkg0Dngz7AipTBy6yAiQqKMhRo_D-N4o3stwmKHeA0tAiEOx4G_PiAZBVgwqD_hS-porAKnsf-m7-vYsa-g9Cw0SQ2t7YIFgfqGifFcAH79L7QF5n4-toqH20MDZrR10dXpjNK50DvRiltXMo7xC198sVfC6ISY8hDbiFDpsKgL_lz-pJ2kyYJNyq1NUfS79AS70Bkl13eaOYbl8go_Oo41Ma5ArEgQIDAQABo4IE8jCCBO4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7Mv1WvWn7sAfft9pF9lwNBkNam0wHwYDVR0jBBgwFoAUz1EBqulDLGR2G0rwqsDykvhPw7swggHiBgNVHR8EggHZMIIB1TB1oHOgcYZvaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHegdaBzhnFodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyZXVhcC9jcmxzL2NjbWVlYXN0dXMyZXVhcHBraS9jY21lZWFzdHVzMmV1YXBpY2EwMS82NS9jdXJyZW50LmNybDBmoGSgYoZgaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHugeaB3hnVodHRwOi8vY2NtZWVhc3R1czJldWFwcGtpLmVhc3R1czJldWFwLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJldWFwaWNhMDEvNjUvY3VycmVudC5jcmwwggHnBggrBgEFBQcBAQSCAdkwggHVMHgGCCsGAQUFBzAChmxodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwegYIKwYBBQUHMAKGbmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NhY2VydHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxL2NlcnQuY2VyMGkGCCsGAQUFBzAChl1odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwcgYIKwYBBQUHMAKGZmh0dHA6Ly9jY21lZWFzdHVzMmV1YXBwa2kuZWFzdHVzMmV1YXAucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmV1YXBpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAndPCPc-CmjHOQpHPVSFI4dsJ3mAAA9L0QPDWwmXXvm66R08WToYQA9QCpkqxZEzl69AhSTR5x65hpeRv8xhwwj57QIuBD6rfMRghZH83T4x3bdOI4KmhFi_uY_52-cou5_xf0DyGAI_C77U5rC8TmVil8EsUCojV8rWkZXUBQSKZMaC1gzmzWW3pgKG9zwbD6J1M_7PW6f_zhE9KvGfBrLALoabdK0H_in5p3CyRMQee9pXSpsictb8cyfBIRU1fRSNmLnOjVSlF_Ll20gYIhnHvetGUxWU0EE9gWSJVUtwbqJjCeDouKPwe2UYUosoETTC7iluHZc0PV9EMfunH2w&s=Jm2n0RZHz7l5snXEbjxeRcmoNySCZdluDAepKPaAzyZaJm8yRt7NFKGoYEwgxSSiUBV3KB8iMS7DHYM-w4Oj6YYQSkQafPuzxAn63GrgWSBMuMGRHZfhwCiwIUtNhE8UkFdiCsL8j57dLMnzF8h2is0wPsvM3oBG4cpHvgz7cwpPKNHMrego8AKF3ugEDzBtuUHta6AhmhJV5yYpMOLGS_gq8v0GHPUQNOzIUeyrz71HGgSTF62LjV7z56ezS7zw4hJ9okX0KHr0MA-VZN4seS2g6LgvOiMm_TkNi1wV8msjYrf0waYAejZxAlBE8ElycKX_aju0DFEItCq4J-4X_Q&h=8UxdkWJ5LMYmf8aZvZ2e0SqmUGSoJwpC_ueBzeJlpmk response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationStatus/NDA5NTs1ZTg4ZjQ2Mi0zYzcwLTQ4NjEtYTc1Yi01ZWYzN2ZhMDhmYjg=\",\r\n - \ \"name\": \"NDA5NTs1ZTg4ZjQ2Mi0zYzcwLTQ4NjEtYTc1Yi01ZWYzN2ZhMDhmYjg=\",\r\n + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationStatus/NDA5NTs0NjAxYjM2MC1mYjliLTQ1NmMtOTJmOS1mZGZmNDYyNDkzYTA=\",\r\n + \ \"name\": \"NDA5NTs0NjAxYjM2MC1mYjliLTQ1NmMtOTJmOS1mZGZmNDYyNDkzYTA=\",\r\n \ \"status\": \"InProgress\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationStatus/NDA5NTs1ZTg4ZjQ2Mi0zYzcwLTQ4NjEtYTc1Yi01ZWYzN2ZhMDhmYjg=?api-version=2025-08-01&t=638971694721065200&c=MIIIpDCCBoygAwIBAgITFgIdx-8P5Q2flkVe0wABAh3H7zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUxMDIwMTM0ODIxWhcNMjYwMTE4MTM0ODIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALJsx40wbBQQVymBKxEYB3QsXs7DWrmkLk1cvGC9Oh6ZUsiS6z4fZ9KUiL7u4Cb1R-5gfYTplSDkCfn9Y776fzY9tgxKTFF2KMooWQSUUNfMYuwrWFbbHGDx79k-SN6J44MhkxgVnvirjK5cOgtR1YwGjnk0x5Ea3-szYPplTQi12yBEDft-JR3YCKn54jq1stV1W2hRp_2g1BQImqyuswXZKY2DD-s3bQClN3clms4KDqdtTyXsWYLLd1wyrriHRsQnNbYpC1EqjwDyNGLTXHMVXKbeUefj5AwkYLnb77HgLc0IW7nFQwaOLB01n0OsHuhWZeUiilCDsiV76B_8MF0CAwEAAaOCBJEwggSNMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAdoGCCsGAQUFBwEBBIIBzDCCAcgwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDEuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDQuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwHQYDVR0OBBYEFBIs_XIgrlYGjVV6tC88QEhsK39fMA4GA1UdDwEB_wQEAwIFoDCCATUGA1UdHwSCASwwggEoMIIBJKCCASCgggEchkJodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMB8GA1UdIwQYMBaAFEijrWB1am_sYPNpVdEAsTJX_GzkMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAgEAoWGeh2L-xOp4WFwNcK7-42nE8XWzyiVfNq-en8umv6B7FIlZBqRTSHucIlGoZqT7uEkuOIkyfwKUKMHeX3kte0w5f4gSgSX-JsexZj509BqurtDEgPbEjh9zUpbDAM7sODNvfiZ0HVF6sREKDyDIRGhYl_C7qO6FPNUH0wiEMRNI92WewkvN5kxHFBO56OS26He5ElMpeDPNifRXSj2RrthZNiLhtVNqOXCXV8HvAO-8PBPQGpetO260pqROBjblZfst9LCba3YKdZ8o2ojOeG5_ANB5mSX3bsBsY2ULkbRKgNBi5AXJ7q0-n01yM6-uiSvZ8wrkHLfDJ6KlzSDTLJpoVa8AUeZoPEhJgyQInNCPK5nFOD-F1QNRwQj-B-s7y16iUVZiLZ3hkxODdrbMjfPRL2P3DYn1cg-jZVq0xDX1aSlRyQq6qi9xZ9RfBPeOrsZ3SHGm0XIJdlqtaYt0Evo6fWKiFXuJ-H6nf5Qy8sLTk2q160CH2IgsW5_tA0n0ySGt5n-9j610wwPdH6ImEQ1jli9U8Ur82WjB7qQhpmYPuHOyytAGttfk1271zkw5TOpkzJfGWvT5zYv436XCj6pouSk2GJmG1iR-9pO4kPK1LWp3ujV-IXZjP_-xg0wwwsvc0BDJJZZk4tElY91ySFzLXlN8QfTH67VHl7D8ILg&s=Lbp_RqnrMJB1qq76JgHsmaSEMT09Kt9hlbrQCSzTa2pIWi1f0z7EYchdTUvNULDrGtQ3t9cTlSLHJIboCOvIkflU2_qccg8iJyH9OcM-wLyJ65H26Wv-HAqBwwBXGDmYweo9jbkL8w_Bjo6fYZMSaXHG8buEBmimbfrvLT5FRrCZZw_WCvKD3ByxVE2coocur9ZbK0nzQeTLec3CLpGDCNDpiXzsNgVpt2TNME2C-tCuAsRiD3PmrdzEdE8fgS7dN8BnxsA_k9o2yRcbASVHtYNlhpKrVSXxaiN2RKk9OM46N1dbAm8m7Fa0LuVnodb-otAB5BszjZkKS4schOKjjg&h=2N1CB2Z-yOYcMJnahA9SFJ412RfEK3j9wT-jT1dFKFw + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationStatus/NDA5NTs0NjAxYjM2MC1mYjliLTQ1NmMtOTJmOS1mZGZmNDYyNDkzYTA=?api-version=2026-05-01&t=639202070760541973&c=MIIH9TCCBt2gAwIBAgIRAKnTo6mKeliSYj1GLETof4IwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVUyQyBDQSAwMTAeFw0yNjA3MDIxNTU4NDNaFw0yNjA5MjcyMTU4NDNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAlDQMyX5eVlNoyHQy97t41xstx7ISW3Jpt0fmktBr-SytLFjS2PEwnW3DFpc-bQgfDfHkKP0_FRLvm_mazEvS5KYzyX6nFjGqQTX3SfneJV5jo7nOwYnQHFTbkg0Dngz7AipTBy6yAiQqKMhRo_D-N4o3stwmKHeA0tAiEOx4G_PiAZBVgwqD_hS-porAKnsf-m7-vYsa-g9Cw0SQ2t7YIFgfqGifFcAH79L7QF5n4-toqH20MDZrR10dXpjNK50DvRiltXMo7xC198sVfC6ISY8hDbiFDpsKgL_lz-pJ2kyYJNyq1NUfS79AS70Bkl13eaOYbl8go_Oo41Ma5ArEgQIDAQABo4IE8jCCBO4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7Mv1WvWn7sAfft9pF9lwNBkNam0wHwYDVR0jBBgwFoAUz1EBqulDLGR2G0rwqsDykvhPw7swggHiBgNVHR8EggHZMIIB1TB1oHOgcYZvaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHegdaBzhnFodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyZXVhcC9jcmxzL2NjbWVlYXN0dXMyZXVhcHBraS9jY21lZWFzdHVzMmV1YXBpY2EwMS82NS9jdXJyZW50LmNybDBmoGSgYoZgaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHugeaB3hnVodHRwOi8vY2NtZWVhc3R1czJldWFwcGtpLmVhc3R1czJldWFwLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJldWFwaWNhMDEvNjUvY3VycmVudC5jcmwwggHnBggrBgEFBQcBAQSCAdkwggHVMHgGCCsGAQUFBzAChmxodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwegYIKwYBBQUHMAKGbmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NhY2VydHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxL2NlcnQuY2VyMGkGCCsGAQUFBzAChl1odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwcgYIKwYBBQUHMAKGZmh0dHA6Ly9jY21lZWFzdHVzMmV1YXBwa2kuZWFzdHVzMmV1YXAucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmV1YXBpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAndPCPc-CmjHOQpHPVSFI4dsJ3mAAA9L0QPDWwmXXvm66R08WToYQA9QCpkqxZEzl69AhSTR5x65hpeRv8xhwwj57QIuBD6rfMRghZH83T4x3bdOI4KmhFi_uY_52-cou5_xf0DyGAI_C77U5rC8TmVil8EsUCojV8rWkZXUBQSKZMaC1gzmzWW3pgKG9zwbD6J1M_7PW6f_zhE9KvGfBrLALoabdK0H_in5p3CyRMQee9pXSpsictb8cyfBIRU1fRSNmLnOjVSlF_Ll20gYIhnHvetGUxWU0EE9gWSJVUtwbqJjCeDouKPwe2UYUosoETTC7iluHZc0PV9EMfunH2w&s=AzUS5_kUN_REQQ6gbZPVVWKcMEdIqOHV76-I1SGrF7fYoOsbSUeWWxNzd7ZyCR2R6Qc_xvm6wz1Kr0fKdQcd4wk0KEwtxNLxytOg5Yr5523rWHTexXbZAwT2-ha4-J4xYc9bFp58xGSADSxM3WdaXCs1jxkhG9FMjteWd8eDeALtK9RNyXj_pM5EMtsuDirE-hHmbo78jw8QQovj-FpwGwQfyjDgM2PXk0CtrciZHnkLfAAD6jBc_g5Nwmug82AbfYuMOLWjenhAnKp8VmZivoVslBJ2zDQCcau0QCeIX0DkitmJfAVel4-UT80YODZ2qS1_dN6f-35y9xeBKeTfRQ&h=Z_Idt-uZSmjRAinU611Aq5RQfJMuQSE7VFundjQBmPQ cache-control: - no-cache content-length: @@ -1569,11 +1622,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 27 Oct 2025 13:44:32 GMT + - Tue, 21 Jul 2026 05:04:35 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationResults/NDA5NTs1ZTg4ZjQ2Mi0zYzcwLTQ4NjEtYTc1Yi01ZWYzN2ZhMDhmYjg=?api-version=2025-08-01&t=638971694721221155&c=MIIIpDCCBoygAwIBAgITFgIdx-8P5Q2flkVe0wABAh3H7zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUxMDIwMTM0ODIxWhcNMjYwMTE4MTM0ODIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALJsx40wbBQQVymBKxEYB3QsXs7DWrmkLk1cvGC9Oh6ZUsiS6z4fZ9KUiL7u4Cb1R-5gfYTplSDkCfn9Y776fzY9tgxKTFF2KMooWQSUUNfMYuwrWFbbHGDx79k-SN6J44MhkxgVnvirjK5cOgtR1YwGjnk0x5Ea3-szYPplTQi12yBEDft-JR3YCKn54jq1stV1W2hRp_2g1BQImqyuswXZKY2DD-s3bQClN3clms4KDqdtTyXsWYLLd1wyrriHRsQnNbYpC1EqjwDyNGLTXHMVXKbeUefj5AwkYLnb77HgLc0IW7nFQwaOLB01n0OsHuhWZeUiilCDsiV76B_8MF0CAwEAAaOCBJEwggSNMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAdoGCCsGAQUFBwEBBIIBzDCCAcgwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDEuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDQuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwHQYDVR0OBBYEFBIs_XIgrlYGjVV6tC88QEhsK39fMA4GA1UdDwEB_wQEAwIFoDCCATUGA1UdHwSCASwwggEoMIIBJKCCASCgggEchkJodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMB8GA1UdIwQYMBaAFEijrWB1am_sYPNpVdEAsTJX_GzkMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAgEAoWGeh2L-xOp4WFwNcK7-42nE8XWzyiVfNq-en8umv6B7FIlZBqRTSHucIlGoZqT7uEkuOIkyfwKUKMHeX3kte0w5f4gSgSX-JsexZj509BqurtDEgPbEjh9zUpbDAM7sODNvfiZ0HVF6sREKDyDIRGhYl_C7qO6FPNUH0wiEMRNI92WewkvN5kxHFBO56OS26He5ElMpeDPNifRXSj2RrthZNiLhtVNqOXCXV8HvAO-8PBPQGpetO260pqROBjblZfst9LCba3YKdZ8o2ojOeG5_ANB5mSX3bsBsY2ULkbRKgNBi5AXJ7q0-n01yM6-uiSvZ8wrkHLfDJ6KlzSDTLJpoVa8AUeZoPEhJgyQInNCPK5nFOD-F1QNRwQj-B-s7y16iUVZiLZ3hkxODdrbMjfPRL2P3DYn1cg-jZVq0xDX1aSlRyQq6qi9xZ9RfBPeOrsZ3SHGm0XIJdlqtaYt0Evo6fWKiFXuJ-H6nf5Qy8sLTk2q160CH2IgsW5_tA0n0ySGt5n-9j610wwPdH6ImEQ1jli9U8Ur82WjB7qQhpmYPuHOyytAGttfk1271zkw5TOpkzJfGWvT5zYv436XCj6pouSk2GJmG1iR-9pO4kPK1LWp3ujV-IXZjP_-xg0wwwsvc0BDJJZZk4tElY91ySFzLXlN8QfTH67VHl7D8ILg&s=j0swHV8-tSr2aMIF4BkUpsvufR7x_8awNpK_TW0llL_501Li1C7vJ93vEo4M9omXxSE3jFeqA-FTzuXP8s84JpjRXk3BIGsmD0ds9olurPMFSU3pfU1vASD_uMBgKhAzoeNDbSEBh8Yb_mayKQdHU8_DKiKLne8BVRFe7pCfb9q2f-vbxbZGepQcgErqP_Lp8CTKDVVg_1s_QCLPawqMalxHTmDYHcC4_xbaOwYyh0uX8idymzhCfe5ish-s4mxkZf4q3SpcGiekbZ7c0xsFe-sU6lNFoaEdEZeT4T9VL8fHQCVPxDMlbWlavo557a69lZgEcpTbLvr7vkTmO6OgoQ&h=7j2NzoQQgiDHrj9i1tSyt--zmhEJbbfuebUndYRmsrs + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationResults/NDA5NTs0NjAxYjM2MC1mYjliLTQ1NmMtOTJmOS1mZGZmNDYyNDkzYTA=?api-version=2026-05-01&t=639202070760698157&c=MIIH9TCCBt2gAwIBAgIRAKnTo6mKeliSYj1GLETof4IwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVUyQyBDQSAwMTAeFw0yNjA3MDIxNTU4NDNaFw0yNjA5MjcyMTU4NDNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAlDQMyX5eVlNoyHQy97t41xstx7ISW3Jpt0fmktBr-SytLFjS2PEwnW3DFpc-bQgfDfHkKP0_FRLvm_mazEvS5KYzyX6nFjGqQTX3SfneJV5jo7nOwYnQHFTbkg0Dngz7AipTBy6yAiQqKMhRo_D-N4o3stwmKHeA0tAiEOx4G_PiAZBVgwqD_hS-porAKnsf-m7-vYsa-g9Cw0SQ2t7YIFgfqGifFcAH79L7QF5n4-toqH20MDZrR10dXpjNK50DvRiltXMo7xC198sVfC6ISY8hDbiFDpsKgL_lz-pJ2kyYJNyq1NUfS79AS70Bkl13eaOYbl8go_Oo41Ma5ArEgQIDAQABo4IE8jCCBO4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7Mv1WvWn7sAfft9pF9lwNBkNam0wHwYDVR0jBBgwFoAUz1EBqulDLGR2G0rwqsDykvhPw7swggHiBgNVHR8EggHZMIIB1TB1oHOgcYZvaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHegdaBzhnFodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyZXVhcC9jcmxzL2NjbWVlYXN0dXMyZXVhcHBraS9jY21lZWFzdHVzMmV1YXBpY2EwMS82NS9jdXJyZW50LmNybDBmoGSgYoZgaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHugeaB3hnVodHRwOi8vY2NtZWVhc3R1czJldWFwcGtpLmVhc3R1czJldWFwLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJldWFwaWNhMDEvNjUvY3VycmVudC5jcmwwggHnBggrBgEFBQcBAQSCAdkwggHVMHgGCCsGAQUFBzAChmxodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwegYIKwYBBQUHMAKGbmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NhY2VydHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxL2NlcnQuY2VyMGkGCCsGAQUFBzAChl1odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwcgYIKwYBBQUHMAKGZmh0dHA6Ly9jY21lZWFzdHVzMmV1YXBwa2kuZWFzdHVzMmV1YXAucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmV1YXBpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAndPCPc-CmjHOQpHPVSFI4dsJ3mAAA9L0QPDWwmXXvm66R08WToYQA9QCpkqxZEzl69AhSTR5x65hpeRv8xhwwj57QIuBD6rfMRghZH83T4x3bdOI4KmhFi_uY_52-cou5_xf0DyGAI_C77U5rC8TmVil8EsUCojV8rWkZXUBQSKZMaC1gzmzWW3pgKG9zwbD6J1M_7PW6f_zhE9KvGfBrLALoabdK0H_in5p3CyRMQee9pXSpsictb8cyfBIRU1fRSNmLnOjVSlF_Ll20gYIhnHvetGUxWU0EE9gWSJVUtwbqJjCeDouKPwe2UYUosoETTC7iluHZc0PV9EMfunH2w&s=a9QQv3h-g7ND4YC9ZvLANy7IEkjzbLil7RPT6q08gUQpNHBVUu992NR7px2TG-oBuI8GKh8y_cTcO_6knU8OfbeWvRcPxPWkVxx7RroQmdH1bFYAX3N9mh4kLX8pO3hSEm2vWhAF-ckxKb6wPH1uzRBZgnTyGhbo9AdTR32a6WDBnEPflg58xFUUX5FUWDz5MGPDvl6irIVTgwQerCWzMh4J2jOwWEgoQ8Wu8uyjKpusc0NgaVN8P_siHhQ8FuYPct2-pE6d3amIsC-785Y5b7SIWFDGkNDOvEkReaYKhzoCcR5itL-kX9Ay719eTSgJN7noOHZ-zshahHdKkSpLeg&h=71uMzdTEXup5wWLUyAnq2o86rJWrjt4bhRWyd0CZbW8 pragma: - no-cache strict-transport-security: @@ -1583,11 +1636,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=12f8ea5c-1212-449e-b31c-0a574f43076e/eastus2euap/3b37e436-7e7b-4fe9-a096-9b774d94bf17 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=352782de-cadf-4f14-ad97-08cd2617ef55/eastus2euap/6bfd64b2-e41c-4d9f-9ea1-ca68171d0516 x-ms-throttling-version: - v2 x-msedge-ref: - - 'Ref A: 13C3911DEBA747E99E768FDD98F069D9 Ref B: MAA201060514051 Ref C: 2025-10-27T13:44:31Z' + - 'Ref A: 6281EF2E97594400B005D851F642F3E0 Ref B: PNQ231110909023 Ref C: 2026-07-21T05:04:35Z' status: code: 200 message: OK @@ -1605,13 +1658,13 @@ interactions: ParameterSetName: - -n -g --backup-storage-redundancy User-Agent: - - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.11.9 (Windows-10-10.0.26200-SP0) + - AZURECLI/2.88.0 azsdk-python-core/1.39.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationStatus/NDA5NTs1ZTg4ZjQ2Mi0zYzcwLTQ4NjEtYTc1Yi01ZWYzN2ZhMDhmYjg=?api-version=2025-08-01&t=638971694710926896&c=MIIIrzCCBpegAwIBAgITUQFCmjDFW2ad-G6vagABAUKaMDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDQwHhcNMjUxMDIzMTMyODI2WhcNMjYwNDIxMTMyODI2WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOuboi1dcXBvQvebjAWnATr4x0pBiJ_9Z5p_9sMApobamRIbVqAn0bWMbxKh4ZGZXWPkD_Z0tHf3HcwDV8HAtRb94yCmlJ91FdUPwdvearZ_p7x4hhAOMY6PMSui6rVU2onWK8cZIHGUJjpGyQdnoAZqokXu-Sh7NdGtzihCGhOqtGNRif_bUqIgsF6xXbK7ihVnoU5ielifEDYvAaIckyRys6btj7aexNQMm_KsR1ERcA31AQddvA12DH2voLLuz_yS_6fdqH07yLNqyB3ZhRrYaUTOJ1ntszxcTJ4NGCYcoHxg2qEx0sVbRqSWzReTB9ttPjV7mEsR8fsiLfYrVB0CAwEAAaOCBJwwggSYMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHkBggrBgEFBQcBAQSCAdYwggHSMGgGCCsGAQUFBzAChlxodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDEuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDIuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDMuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDQuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDAdBgNVHQ4EFgQUiSQhKXhpKn7Xg7zG2N38FkGays0wDgYDVR0PAQH_BAQDAgWgMIIBNQYDVR0fBIIBLDCCASgwggEkoIIBIKCCARyGQmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DUkwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDEuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDIuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDMuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDQuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwHwYDVR0jBBgwFoAUOXFdqRUQLcTffi9ZbkBNwN_vNpowHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA0GCSqGSIb3DQEBCwUAA4ICAQBLyJ8Ui2iEMJU3hMEnAPrp5g1UE822y4j-WlOmNcv4RcPLuwaAB5ag3d4s0pXH2JflQreXuPdx_asdgqh4RVOPeQA10B2GhLH88ugNTreCho6QHshADGDfoTqoKUJobZWSZ5sRf20yLH-Huky7ZXlSr-unDGy416lIOi8sPLfezE8Nmvd8-uI6WhY037nbexRLG0ynX22sfDlaRKO3dshzC7RcMf5UeUMx7MqeryGNT5Oy-GzPhoXXotuxL6d6KENDTFpTtA8VnbEtAONH4-lhX-yqSgDlSU3PkMcsML9L8C0kdF_Yr9IlCvYMg5A9XxOT2F6W0NR6mms7ju-BNZpKt06mCjl09sAFUAwAYibeIpbXHGg9rZCCFqTjBqFJqrTcURhbOBsmOV1PUOlC4vBpyh6eqKwm9VtP9erCcQ0e20ojH0Yh5-An7Pp29KvETv7C7Va9pqX4SSqyBSCrDpc7lb_ZAKzd9PstLko-ZlIWNhyOVGr_4BzhaooprK8DZeEAgrkdGs3C69SF2OcZn9VQkbeV_tkvOxpRppWlIK5A4cllGt5uQIITli-MjzUGpaNJW-EztsIelC53QGU4hq0To6N990-6yz3P2xv7kW93lNUH-anM5KUpC1C_DCld_OTPlBL02kBshXYE5kwZJkmeXhyIUpCkTUc_YqaXuEIoTQ&s=Myk0lkDHtnp3raQCV6d5K3b_nL6cv6lfuIaCAmpYYDWrpdqu_Mv6R1yy3uOjpWtJ_MP5zTV6OIXptt7RrD-k60RvGoyWpVv5lSzzNF9bJixjPN_x2IleGG7c915sZ8zL75JGYD6Bf6SxlP_se_auHBno3o845lfkM4pol7E1RZCYAIof0ZuaXA_fsv7aTzTpzlMidfJAoIX_iy8asMD4STVatWEzJf0xLAFXEarGHcRMXiU3Wsu6iQpNDY_nIzKQqX4y9IZ5pzDMhTVobHuGVW51dEOeN3kvVahkPTVqRuyLY28V7ZVtWLN386vmIhPQJvhbQtDrlGBNbxruEmPJgw&h=Zx2J0bUW7iklqlKPKbCebgHGJXWRWmcvdPDLsSnkAW4 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationStatus/NDA5NTs0NjAxYjM2MC1mYjliLTQ1NmMtOTJmOS1mZGZmNDYyNDkzYTA=?api-version=2026-05-01&t=639202070752025830&c=MIIH9TCCBt2gAwIBAgIRAKnTo6mKeliSYj1GLETof4IwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVUyQyBDQSAwMTAeFw0yNjA3MDIxNTU4NDNaFw0yNjA5MjcyMTU4NDNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAlDQMyX5eVlNoyHQy97t41xstx7ISW3Jpt0fmktBr-SytLFjS2PEwnW3DFpc-bQgfDfHkKP0_FRLvm_mazEvS5KYzyX6nFjGqQTX3SfneJV5jo7nOwYnQHFTbkg0Dngz7AipTBy6yAiQqKMhRo_D-N4o3stwmKHeA0tAiEOx4G_PiAZBVgwqD_hS-porAKnsf-m7-vYsa-g9Cw0SQ2t7YIFgfqGifFcAH79L7QF5n4-toqH20MDZrR10dXpjNK50DvRiltXMo7xC198sVfC6ISY8hDbiFDpsKgL_lz-pJ2kyYJNyq1NUfS79AS70Bkl13eaOYbl8go_Oo41Ma5ArEgQIDAQABo4IE8jCCBO4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7Mv1WvWn7sAfft9pF9lwNBkNam0wHwYDVR0jBBgwFoAUz1EBqulDLGR2G0rwqsDykvhPw7swggHiBgNVHR8EggHZMIIB1TB1oHOgcYZvaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHegdaBzhnFodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyZXVhcC9jcmxzL2NjbWVlYXN0dXMyZXVhcHBraS9jY21lZWFzdHVzMmV1YXBpY2EwMS82NS9jdXJyZW50LmNybDBmoGSgYoZgaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHugeaB3hnVodHRwOi8vY2NtZWVhc3R1czJldWFwcGtpLmVhc3R1czJldWFwLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJldWFwaWNhMDEvNjUvY3VycmVudC5jcmwwggHnBggrBgEFBQcBAQSCAdkwggHVMHgGCCsGAQUFBzAChmxodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwegYIKwYBBQUHMAKGbmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NhY2VydHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxL2NlcnQuY2VyMGkGCCsGAQUFBzAChl1odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwcgYIKwYBBQUHMAKGZmh0dHA6Ly9jY21lZWFzdHVzMmV1YXBwa2kuZWFzdHVzMmV1YXAucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmV1YXBpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAndPCPc-CmjHOQpHPVSFI4dsJ3mAAA9L0QPDWwmXXvm66R08WToYQA9QCpkqxZEzl69AhSTR5x65hpeRv8xhwwj57QIuBD6rfMRghZH83T4x3bdOI4KmhFi_uY_52-cou5_xf0DyGAI_C77U5rC8TmVil8EsUCojV8rWkZXUBQSKZMaC1gzmzWW3pgKG9zwbD6J1M_7PW6f_zhE9KvGfBrLALoabdK0H_in5p3CyRMQee9pXSpsictb8cyfBIRU1fRSNmLnOjVSlF_Ll20gYIhnHvetGUxWU0EE9gWSJVUtwbqJjCeDouKPwe2UYUosoETTC7iluHZc0PV9EMfunH2w&s=Jm2n0RZHz7l5snXEbjxeRcmoNySCZdluDAepKPaAzyZaJm8yRt7NFKGoYEwgxSSiUBV3KB8iMS7DHYM-w4Oj6YYQSkQafPuzxAn63GrgWSBMuMGRHZfhwCiwIUtNhE8UkFdiCsL8j57dLMnzF8h2is0wPsvM3oBG4cpHvgz7cwpPKNHMrego8AKF3ugEDzBtuUHta6AhmhJV5yYpMOLGS_gq8v0GHPUQNOzIUeyrz71HGgSTF62LjV7z56ezS7zw4hJ9okX0KHr0MA-VZN4seS2g6LgvOiMm_TkNi1wV8msjYrf0waYAejZxAlBE8ElycKX_aju0DFEItCq4J-4X_Q&h=8UxdkWJ5LMYmf8aZvZ2e0SqmUGSoJwpC_ueBzeJlpmk response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationStatus/NDA5NTs1ZTg4ZjQ2Mi0zYzcwLTQ4NjEtYTc1Yi01ZWYzN2ZhMDhmYjg=\",\r\n - \ \"name\": \"NDA5NTs1ZTg4ZjQ2Mi0zYzcwLTQ4NjEtYTc1Yi01ZWYzN2ZhMDhmYjg=\",\r\n + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationStatus/NDA5NTs0NjAxYjM2MC1mYjliLTQ1NmMtOTJmOS1mZGZmNDYyNDkzYTA=\",\r\n + \ \"name\": \"NDA5NTs0NjAxYjM2MC1mYjliLTQ1NmMtOTJmOS1mZGZmNDYyNDkzYTA=\",\r\n \ \"status\": \"Succeeded\"\r\n}" headers: cache-control: @@ -1621,7 +1674,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 27 Oct 2025 13:45:33 GMT + - Tue, 21 Jul 2026 05:05:36 GMT expires: - '-1' pragma: @@ -1633,11 +1686,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=12f8ea5c-1212-449e-b31c-0a574f43076e/eastus2euap/4c163b4e-4213-4fb8-920b-2b7eb95f48e0 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=352782de-cadf-4f14-ad97-08cd2617ef55/eastus2euap/231d85af-cec5-4014-8714-7b071b9ed814 x-ms-throttling-version: - v2 x-msedge-ref: - - 'Ref A: 7DE36A60FB9A423F99541FC77B9C1BC1 Ref B: MAA201060514037 Ref C: 2025-10-27T13:45:33Z' + - 'Ref A: BFAB0BDD7A4E4397B05523F301F355F9 Ref B: PNQ231110906023 Ref C: 2026-07-21T05:05:36Z' status: code: 200 message: OK @@ -1655,21 +1708,21 @@ interactions: ParameterSetName: - -n -g --backup-storage-redundancy User-Agent: - - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.11.9 (Windows-10-10.0.26200-SP0) + - AZURECLI/2.88.0 azsdk-python-core/1.39.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2025-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2026-05-01 response: body: - string: '{"location":"eastus2euap","name":"clitest-vault000002","etag":"W/\"datetime''2025-10-27T13%3A44%3A32.305006Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","monitoringSettings":{"azureMonitorAlertSettings":{"alertsForAllJobFailures":"Enabled","alertsForAllReplicationIssues":"Enabled","alertsForAllFailoverIssues":"Enabled"},"classicAlertSettings":{"alertsForCriticalOperations":"Enabled","emailNotificationsForSiteRecovery":"Enabled"}},"backupStorageVersion":"Unassigned","securitySettings":{"softDeleteSettings":{"softDeleteRetentionPeriodInDays":14,"softDeleteState":"AlwaysON","enhancedSecurityState":"AlwaysON"},"multiUserAuthorization":"Disabled","sourceScanConfiguration":{"state":"Disabled"}},"redundancySettings":{"standardTierStorageRedundancy":"LocallyRedundant","crossRegionRestore":"Disabled"},"secureScore":"Adequate","bcdrSecurityLevel":"Good","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' + string: '{"location":"eastus2euap","name":"clitest-vault000002","etag":"W/\"datetime''2026-07-21T05%3A05%3A36.7280505Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","monitoringSettings":{"azureMonitorAlertSettings":{"alertsForAllJobFailures":"Enabled","alertsForAllReplicationIssues":"Enabled","alertsForAllFailoverIssues":"Enabled"},"classicAlertSettings":{"alertsForCriticalOperations":"Enabled","emailNotificationsForSiteRecovery":"Enabled"}},"costManagementSettings":{"granularityLevel":"VaultLevel"},"backupStorageVersion":"Unassigned","securitySettings":{"softDeleteSettings":{"softDeleteRetentionPeriodInDays":14,"softDeleteState":"AlwaysON","enhancedSecurityState":"AlwaysON"},"multiUserAuthorization":"Disabled","sourceScanConfiguration":{"state":"Disabled"}},"redundancySettings":{"standardTierStorageRedundancy":"LocallyRedundant","crossRegionRestore":"Disabled"},"secureScore":"Adequate","bcdrSecurityLevel":"Good","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' headers: cache-control: - no-cache content-length: - - '1313' + - '1373' content-type: - application/json; charset=utf-8 date: - - Mon, 27 Oct 2025 13:45:34 GMT + - Tue, 21 Jul 2026 05:05:37 GMT expires: - '-1' pragma: @@ -1683,7 +1736,7 @@ interactions: x-ms-throttling-version: - v2 x-msedge-ref: - - 'Ref A: 05D14F7D0ADA4652AD9B5C51367C7B59 Ref B: MAA201060514023 Ref C: 2025-10-27T13:45:34Z' + - 'Ref A: 09D6C346C70A4B21A130F4D0CA9CE8B8 Ref B: PNQ231110908040 Ref C: 2026-07-21T05:05:37Z' status: code: 200 message: OK @@ -1701,21 +1754,21 @@ interactions: ParameterSetName: - -n -g --query User-Agent: - - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.11.9 (Windows-10-10.0.26200-SP0) + - AZURECLI/2.88.0 azsdk-python-core/1.39.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2025-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2026-05-01 response: body: - string: '{"location":"eastus2euap","name":"clitest-vault000002","etag":"W/\"datetime''2025-10-27T13%3A44%3A32.305006Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","monitoringSettings":{"azureMonitorAlertSettings":{"alertsForAllJobFailures":"Enabled","alertsForAllReplicationIssues":"Enabled","alertsForAllFailoverIssues":"Enabled"},"classicAlertSettings":{"alertsForCriticalOperations":"Enabled","emailNotificationsForSiteRecovery":"Enabled"}},"backupStorageVersion":"Unassigned","securitySettings":{"softDeleteSettings":{"softDeleteRetentionPeriodInDays":14,"softDeleteState":"AlwaysON","enhancedSecurityState":"AlwaysON"},"multiUserAuthorization":"Disabled","sourceScanConfiguration":{"state":"Disabled"}},"redundancySettings":{"standardTierStorageRedundancy":"LocallyRedundant","crossRegionRestore":"Disabled"},"secureScore":"Adequate","bcdrSecurityLevel":"Good","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' + string: '{"location":"eastus2euap","name":"clitest-vault000002","etag":"W/\"datetime''2026-07-21T05%3A05%3A36.7280505Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","monitoringSettings":{"azureMonitorAlertSettings":{"alertsForAllJobFailures":"Enabled","alertsForAllReplicationIssues":"Enabled","alertsForAllFailoverIssues":"Enabled"},"classicAlertSettings":{"alertsForCriticalOperations":"Enabled","emailNotificationsForSiteRecovery":"Enabled"}},"costManagementSettings":{"granularityLevel":"VaultLevel"},"backupStorageVersion":"Unassigned","securitySettings":{"softDeleteSettings":{"softDeleteRetentionPeriodInDays":14,"softDeleteState":"AlwaysON","enhancedSecurityState":"AlwaysON"},"multiUserAuthorization":"Disabled","sourceScanConfiguration":{"state":"Disabled"}},"redundancySettings":{"standardTierStorageRedundancy":"LocallyRedundant","crossRegionRestore":"Disabled"},"secureScore":"Adequate","bcdrSecurityLevel":"Good","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' headers: cache-control: - no-cache content-length: - - '1313' + - '1373' content-type: - application/json; charset=utf-8 date: - - Mon, 27 Oct 2025 13:50:36 GMT + - Tue, 21 Jul 2026 05:10:38 GMT expires: - '-1' pragma: @@ -1726,10 +1779,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: 71AE026213304540B5F10A3F6F5A009F Ref B: JKT201051406062 Ref C: 2025-10-27T13:50:35Z' + - 'Ref A: B679DCEFCB124F288FAEB32581E85C24 Ref B: PNQ231110907054 Ref C: 2026-07-21T05:10:38Z' status: code: 200 message: OK @@ -1747,21 +1800,21 @@ interactions: ParameterSetName: - -n -g --backup-storage-redundancy User-Agent: - - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.11.9 (Windows-10-10.0.26200-SP0) + - AZURECLI/2.88.0 azsdk-python-core/1.39.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2025-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2026-05-01 response: body: - string: '{"location":"eastus2euap","name":"clitest-vault000002","etag":"W/\"datetime''2025-10-27T13%3A44%3A32.305006Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","monitoringSettings":{"azureMonitorAlertSettings":{"alertsForAllJobFailures":"Enabled","alertsForAllReplicationIssues":"Enabled","alertsForAllFailoverIssues":"Enabled"},"classicAlertSettings":{"alertsForCriticalOperations":"Enabled","emailNotificationsForSiteRecovery":"Enabled"}},"backupStorageVersion":"Unassigned","securitySettings":{"softDeleteSettings":{"softDeleteRetentionPeriodInDays":14,"softDeleteState":"AlwaysON","enhancedSecurityState":"AlwaysON"},"multiUserAuthorization":"Disabled","sourceScanConfiguration":{"state":"Disabled"}},"redundancySettings":{"standardTierStorageRedundancy":"LocallyRedundant","crossRegionRestore":"Disabled"},"secureScore":"Adequate","bcdrSecurityLevel":"Good","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' + string: '{"location":"eastus2euap","name":"clitest-vault000002","etag":"W/\"datetime''2026-07-21T05%3A05%3A36.7280505Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","monitoringSettings":{"azureMonitorAlertSettings":{"alertsForAllJobFailures":"Enabled","alertsForAllReplicationIssues":"Enabled","alertsForAllFailoverIssues":"Enabled"},"classicAlertSettings":{"alertsForCriticalOperations":"Enabled","emailNotificationsForSiteRecovery":"Enabled"}},"costManagementSettings":{"granularityLevel":"VaultLevel"},"backupStorageVersion":"Unassigned","securitySettings":{"softDeleteSettings":{"softDeleteRetentionPeriodInDays":14,"softDeleteState":"AlwaysON","enhancedSecurityState":"AlwaysON"},"multiUserAuthorization":"Disabled","sourceScanConfiguration":{"state":"Disabled"}},"redundancySettings":{"standardTierStorageRedundancy":"LocallyRedundant","crossRegionRestore":"Disabled"},"secureScore":"Adequate","bcdrSecurityLevel":"Good","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' headers: cache-control: - no-cache content-length: - - '1313' + - '1373' content-type: - application/json; charset=utf-8 date: - - Mon, 27 Oct 2025 13:50:38 GMT + - Tue, 21 Jul 2026 05:10:39 GMT expires: - '-1' pragma: @@ -1775,7 +1828,7 @@ interactions: x-ms-throttling-version: - v2 x-msedge-ref: - - 'Ref A: 3B89EEC25C3B4453833D5DCEAB6474A9 Ref B: JKT201051407054 Ref C: 2025-10-27T13:50:38Z' + - 'Ref A: 4D7B7FCD7B1E43F7A01E26621E1AB24E Ref B: PNQ231110909062 Ref C: 2026-07-21T05:10:39Z' status: code: 200 message: OK @@ -1798,25 +1851,25 @@ interactions: ParameterSetName: - -n -g --backup-storage-redundancy User-Agent: - - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.11.9 (Windows-10-10.0.26200-SP0) + - AZURECLI/2.88.0 azsdk-python-core/1.39.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2025-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2026-05-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationStatus/NDA5NTszMGEyNDY2Zi03MmE4LTRiYmQtODVjNi1hYjBhYjVjMmYzODA=?api-version=2025-08-01&t=638971698398679980&c=MIIIpDCCBoygAwIBAgITFgIdx-8P5Q2flkVe0wABAh3H7zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUxMDIwMTM0ODIxWhcNMjYwMTE4MTM0ODIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALJsx40wbBQQVymBKxEYB3QsXs7DWrmkLk1cvGC9Oh6ZUsiS6z4fZ9KUiL7u4Cb1R-5gfYTplSDkCfn9Y776fzY9tgxKTFF2KMooWQSUUNfMYuwrWFbbHGDx79k-SN6J44MhkxgVnvirjK5cOgtR1YwGjnk0x5Ea3-szYPplTQi12yBEDft-JR3YCKn54jq1stV1W2hRp_2g1BQImqyuswXZKY2DD-s3bQClN3clms4KDqdtTyXsWYLLd1wyrriHRsQnNbYpC1EqjwDyNGLTXHMVXKbeUefj5AwkYLnb77HgLc0IW7nFQwaOLB01n0OsHuhWZeUiilCDsiV76B_8MF0CAwEAAaOCBJEwggSNMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAdoGCCsGAQUFBwEBBIIBzDCCAcgwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDEuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDQuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwHQYDVR0OBBYEFBIs_XIgrlYGjVV6tC88QEhsK39fMA4GA1UdDwEB_wQEAwIFoDCCATUGA1UdHwSCASwwggEoMIIBJKCCASCgggEchkJodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMB8GA1UdIwQYMBaAFEijrWB1am_sYPNpVdEAsTJX_GzkMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAgEAoWGeh2L-xOp4WFwNcK7-42nE8XWzyiVfNq-en8umv6B7FIlZBqRTSHucIlGoZqT7uEkuOIkyfwKUKMHeX3kte0w5f4gSgSX-JsexZj509BqurtDEgPbEjh9zUpbDAM7sODNvfiZ0HVF6sREKDyDIRGhYl_C7qO6FPNUH0wiEMRNI92WewkvN5kxHFBO56OS26He5ElMpeDPNifRXSj2RrthZNiLhtVNqOXCXV8HvAO-8PBPQGpetO260pqROBjblZfst9LCba3YKdZ8o2ojOeG5_ANB5mSX3bsBsY2ULkbRKgNBi5AXJ7q0-n01yM6-uiSvZ8wrkHLfDJ6KlzSDTLJpoVa8AUeZoPEhJgyQInNCPK5nFOD-F1QNRwQj-B-s7y16iUVZiLZ3hkxODdrbMjfPRL2P3DYn1cg-jZVq0xDX1aSlRyQq6qi9xZ9RfBPeOrsZ3SHGm0XIJdlqtaYt0Evo6fWKiFXuJ-H6nf5Qy8sLTk2q160CH2IgsW5_tA0n0ySGt5n-9j610wwPdH6ImEQ1jli9U8Ur82WjB7qQhpmYPuHOyytAGttfk1271zkw5TOpkzJfGWvT5zYv436XCj6pouSk2GJmG1iR-9pO4kPK1LWp3ujV-IXZjP_-xg0wwwsvc0BDJJZZk4tElY91ySFzLXlN8QfTH67VHl7D8ILg&s=ofzYFxpBXEjm6-169D_i3i4wOsUSgfSlw7RMebV4WqvMIqpUAUL9S48s02IVYh5jxlZPgre5ipd3ZJXrrQ2Bq2ifz0EQ-rXi3HMYxFn0ujfqB9rxc4LtM1ipLVR67_LTP0N_yDTaqcMo18hFnEzLuYbnKjGTg3r-4awzXTi03L2uazUAm6A1mnIUSZHxo4JUYDh8Bw-z3U6N0se7QVHyTJWBd1H57_8XVGQSD9vRMIFE_mLpClTJmMLBe-oSTkmUKn1tJzKZnl_sdiPMaV-wvm9In8Jl2l9z9vzsZ60ZaRglKZL6aML-TR9CuIqKlXdUD2adbhi_imA3QefzRdX1Gw&h=tFH1BNxCcSgPensEVpos_WaN_6qwdZRCEyTySe10NEU + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationStatus/NDA5NTs5NDIwMDgyYy0yY2Y0LTQ2MTEtOGNiMS0xMjY2NTYwZDdmMjQ=?api-version=2026-05-01&t=639202074412382116&c=MIIH9TCCBt2gAwIBAgIRAKnTo6mKeliSYj1GLETof4IwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVUyQyBDQSAwMTAeFw0yNjA3MDIxNTU4NDNaFw0yNjA5MjcyMTU4NDNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAlDQMyX5eVlNoyHQy97t41xstx7ISW3Jpt0fmktBr-SytLFjS2PEwnW3DFpc-bQgfDfHkKP0_FRLvm_mazEvS5KYzyX6nFjGqQTX3SfneJV5jo7nOwYnQHFTbkg0Dngz7AipTBy6yAiQqKMhRo_D-N4o3stwmKHeA0tAiEOx4G_PiAZBVgwqD_hS-porAKnsf-m7-vYsa-g9Cw0SQ2t7YIFgfqGifFcAH79L7QF5n4-toqH20MDZrR10dXpjNK50DvRiltXMo7xC198sVfC6ISY8hDbiFDpsKgL_lz-pJ2kyYJNyq1NUfS79AS70Bkl13eaOYbl8go_Oo41Ma5ArEgQIDAQABo4IE8jCCBO4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7Mv1WvWn7sAfft9pF9lwNBkNam0wHwYDVR0jBBgwFoAUz1EBqulDLGR2G0rwqsDykvhPw7swggHiBgNVHR8EggHZMIIB1TB1oHOgcYZvaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHegdaBzhnFodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyZXVhcC9jcmxzL2NjbWVlYXN0dXMyZXVhcHBraS9jY21lZWFzdHVzMmV1YXBpY2EwMS82NS9jdXJyZW50LmNybDBmoGSgYoZgaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHugeaB3hnVodHRwOi8vY2NtZWVhc3R1czJldWFwcGtpLmVhc3R1czJldWFwLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJldWFwaWNhMDEvNjUvY3VycmVudC5jcmwwggHnBggrBgEFBQcBAQSCAdkwggHVMHgGCCsGAQUFBzAChmxodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwegYIKwYBBQUHMAKGbmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NhY2VydHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxL2NlcnQuY2VyMGkGCCsGAQUFBzAChl1odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwcgYIKwYBBQUHMAKGZmh0dHA6Ly9jY21lZWFzdHVzMmV1YXBwa2kuZWFzdHVzMmV1YXAucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmV1YXBpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAndPCPc-CmjHOQpHPVSFI4dsJ3mAAA9L0QPDWwmXXvm66R08WToYQA9QCpkqxZEzl69AhSTR5x65hpeRv8xhwwj57QIuBD6rfMRghZH83T4x3bdOI4KmhFi_uY_52-cou5_xf0DyGAI_C77U5rC8TmVil8EsUCojV8rWkZXUBQSKZMaC1gzmzWW3pgKG9zwbD6J1M_7PW6f_zhE9KvGfBrLALoabdK0H_in5p3CyRMQee9pXSpsictb8cyfBIRU1fRSNmLnOjVSlF_Ll20gYIhnHvetGUxWU0EE9gWSJVUtwbqJjCeDouKPwe2UYUosoETTC7iluHZc0PV9EMfunH2w&s=enfCwEqstjHbQ1GuS939urpqrtqhYIl6A5vDpp2N_4kfLtE1Q0Ih-lJpubQEYZ6FBNtxHBiZ7-TNyFhlP1YnXfuiCNprKThi03DUVnhvlT4hz6P7mF1AHaMAwVNr2JQc6TA3mduaHKieGtn0RUONQiYSVE0FIlSe_fspgIIYXWkL_ovmaFQ3Ex_3kM0h81P-NjgtdCnVi6WJ0AXrn4gOtBWbHkC-h7ul1cI7nbf4z_H9obeTlxxzCxs4m9IKvikPnmpqex9GNycr6oo5ZD87JzAC57EzgGKwsxTNASsY9CybrlApEPx2Ef2-jgGWWiOKe80AMr4j00fOr2E-JeOl4w&h=vr945MYd2DoJl6TzdEvLVqxcX3oKJ5ZAa04GlKxq6i0 cache-control: - no-cache content-length: - '0' date: - - Mon, 27 Oct 2025 13:50:39 GMT + - Tue, 21 Jul 2026 05:10:40 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationResults/NDA5NTszMGEyNDY2Zi03MmE4LTRiYmQtODVjNi1hYjBhYjVjMmYzODA=?api-version=2025-08-01&t=638971698398679980&c=MIIIpDCCBoygAwIBAgITFgIdx-8P5Q2flkVe0wABAh3H7zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUxMDIwMTM0ODIxWhcNMjYwMTE4MTM0ODIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALJsx40wbBQQVymBKxEYB3QsXs7DWrmkLk1cvGC9Oh6ZUsiS6z4fZ9KUiL7u4Cb1R-5gfYTplSDkCfn9Y776fzY9tgxKTFF2KMooWQSUUNfMYuwrWFbbHGDx79k-SN6J44MhkxgVnvirjK5cOgtR1YwGjnk0x5Ea3-szYPplTQi12yBEDft-JR3YCKn54jq1stV1W2hRp_2g1BQImqyuswXZKY2DD-s3bQClN3clms4KDqdtTyXsWYLLd1wyrriHRsQnNbYpC1EqjwDyNGLTXHMVXKbeUefj5AwkYLnb77HgLc0IW7nFQwaOLB01n0OsHuhWZeUiilCDsiV76B_8MF0CAwEAAaOCBJEwggSNMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAdoGCCsGAQUFBwEBBIIBzDCCAcgwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDEuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDQuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwHQYDVR0OBBYEFBIs_XIgrlYGjVV6tC88QEhsK39fMA4GA1UdDwEB_wQEAwIFoDCCATUGA1UdHwSCASwwggEoMIIBJKCCASCgggEchkJodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMB8GA1UdIwQYMBaAFEijrWB1am_sYPNpVdEAsTJX_GzkMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAgEAoWGeh2L-xOp4WFwNcK7-42nE8XWzyiVfNq-en8umv6B7FIlZBqRTSHucIlGoZqT7uEkuOIkyfwKUKMHeX3kte0w5f4gSgSX-JsexZj509BqurtDEgPbEjh9zUpbDAM7sODNvfiZ0HVF6sREKDyDIRGhYl_C7qO6FPNUH0wiEMRNI92WewkvN5kxHFBO56OS26He5ElMpeDPNifRXSj2RrthZNiLhtVNqOXCXV8HvAO-8PBPQGpetO260pqROBjblZfst9LCba3YKdZ8o2ojOeG5_ANB5mSX3bsBsY2ULkbRKgNBi5AXJ7q0-n01yM6-uiSvZ8wrkHLfDJ6KlzSDTLJpoVa8AUeZoPEhJgyQInNCPK5nFOD-F1QNRwQj-B-s7y16iUVZiLZ3hkxODdrbMjfPRL2P3DYn1cg-jZVq0xDX1aSlRyQq6qi9xZ9RfBPeOrsZ3SHGm0XIJdlqtaYt0Evo6fWKiFXuJ-H6nf5Qy8sLTk2q160CH2IgsW5_tA0n0ySGt5n-9j610wwPdH6ImEQ1jli9U8Ur82WjB7qQhpmYPuHOyytAGttfk1271zkw5TOpkzJfGWvT5zYv436XCj6pouSk2GJmG1iR-9pO4kPK1LWp3ujV-IXZjP_-xg0wwwsvc0BDJJZZk4tElY91ySFzLXlN8QfTH67VHl7D8ILg&s=cqyw2E-UAQTtd9T0sZo2Ujp2gD3nqzdTenpMClrTv3VgzgxyY0X0VD1c84Hsxw4KMnDfdmb9VOQLyeqk75rSlUctezJBJRa6o6qjrQUfaRGL06eDLo4XycKKcNRDBka3K0dHPVScK9oTXDFWyHj3gNe2lojx8395V76-JJWFvrxVUfZ-ujm4VNxhtajBN2KdwQ1ODj5b1GJrcaMcKx__p3vDxhyabp5We1cu7t-XkT0EoLm5-7IVF4lDwW0-DOyatBJOtzSX2--T0Y5vp00XThC28kAcuRqjws-69vxCdeaoL4aV1qmUUTknyqmQRxy07XPXZXDSiMxvgoofMqEzjw&h=sE9Ao8gYetOYn5KJbXpD5xZqH6lRzttOMPTTn0FTRGs + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationResults/NDA5NTs5NDIwMDgyYy0yY2Y0LTQ2MTEtOGNiMS0xMjY2NTYwZDdmMjQ=?api-version=2026-05-01&t=639202074412382116&c=MIIH9TCCBt2gAwIBAgIRAKnTo6mKeliSYj1GLETof4IwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVUyQyBDQSAwMTAeFw0yNjA3MDIxNTU4NDNaFw0yNjA5MjcyMTU4NDNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAlDQMyX5eVlNoyHQy97t41xstx7ISW3Jpt0fmktBr-SytLFjS2PEwnW3DFpc-bQgfDfHkKP0_FRLvm_mazEvS5KYzyX6nFjGqQTX3SfneJV5jo7nOwYnQHFTbkg0Dngz7AipTBy6yAiQqKMhRo_D-N4o3stwmKHeA0tAiEOx4G_PiAZBVgwqD_hS-porAKnsf-m7-vYsa-g9Cw0SQ2t7YIFgfqGifFcAH79L7QF5n4-toqH20MDZrR10dXpjNK50DvRiltXMo7xC198sVfC6ISY8hDbiFDpsKgL_lz-pJ2kyYJNyq1NUfS79AS70Bkl13eaOYbl8go_Oo41Ma5ArEgQIDAQABo4IE8jCCBO4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7Mv1WvWn7sAfft9pF9lwNBkNam0wHwYDVR0jBBgwFoAUz1EBqulDLGR2G0rwqsDykvhPw7swggHiBgNVHR8EggHZMIIB1TB1oHOgcYZvaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHegdaBzhnFodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyZXVhcC9jcmxzL2NjbWVlYXN0dXMyZXVhcHBraS9jY21lZWFzdHVzMmV1YXBpY2EwMS82NS9jdXJyZW50LmNybDBmoGSgYoZgaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHugeaB3hnVodHRwOi8vY2NtZWVhc3R1czJldWFwcGtpLmVhc3R1czJldWFwLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJldWFwaWNhMDEvNjUvY3VycmVudC5jcmwwggHnBggrBgEFBQcBAQSCAdkwggHVMHgGCCsGAQUFBzAChmxodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwegYIKwYBBQUHMAKGbmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NhY2VydHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxL2NlcnQuY2VyMGkGCCsGAQUFBzAChl1odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwcgYIKwYBBQUHMAKGZmh0dHA6Ly9jY21lZWFzdHVzMmV1YXBwa2kuZWFzdHVzMmV1YXAucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmV1YXBpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAndPCPc-CmjHOQpHPVSFI4dsJ3mAAA9L0QPDWwmXXvm66R08WToYQA9QCpkqxZEzl69AhSTR5x65hpeRv8xhwwj57QIuBD6rfMRghZH83T4x3bdOI4KmhFi_uY_52-cou5_xf0DyGAI_C77U5rC8TmVil8EsUCojV8rWkZXUBQSKZMaC1gzmzWW3pgKG9zwbD6J1M_7PW6f_zhE9KvGfBrLALoabdK0H_in5p3CyRMQee9pXSpsictb8cyfBIRU1fRSNmLnOjVSlF_Ll20gYIhnHvetGUxWU0EE9gWSJVUtwbqJjCeDouKPwe2UYUosoETTC7iluHZc0PV9EMfunH2w&s=TrhWq4kHiHm4voVYQ5_Q4Uq0-kQRf-qhbrCwfx7L8jdHqwnBTCdM6uLwlut2p1XEQeNqniWeRNxQP6YsIy_1VokRoDrHfGXWWzWM0Y5nCoVOica1oFYDjt4V9MUKsNzrPIkIZojalsiJN0zS274d6RAyLB2rjHDp-KHUn-Qv_cNAoRy_aalnqHJb3vTL6o1fxpfbhZPSmgJqoE8Zwe_0WMZ5LLckxe9K8vRa_tUaqHMae5ZI2K0Wtuk1UBDDyF4BeqiJEGFhDFeU0CUfDTA1VuqQKp2jCoqQIylGWuBdo0umYql8htTXIiQOFxUT2796q2a8fIw6TXivpqjsTiWmJA&h=hwj0KhuQUPmO56yr6gbpvRKWUv7vzO9YbvnNzXINeQo pragma: - no-cache strict-transport-security: @@ -1826,13 +1879,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=12f8ea5c-1212-449e-b31c-0a574f43076e/eastus2euap/cefc5682-7168-4c98-a6af-1c3beec08289 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=352782de-cadf-4f14-ad97-08cd2617ef55/eastus2euap/4ff0431f-4dea-4c2b-b16c-2a68aceaf32a x-ms-ratelimit-remaining-subscription-resource-requests: - '799' x-ms-throttling-version: - v1 x-msedge-ref: - - 'Ref A: 396A7D1992B3410BBA6F1CE2F07CE52C Ref B: JKT201051406031 Ref C: 2025-10-27T13:50:39Z' + - 'Ref A: 9A18D59096724735AA97A3EE0330CFA9 Ref B: PNQ231110906025 Ref C: 2026-07-21T05:10:40Z' status: code: 202 message: Accepted @@ -1850,13 +1903,67 @@ interactions: ParameterSetName: - -n -g --backup-storage-redundancy User-Agent: - - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.11.9 (Windows-10-10.0.26200-SP0) + - AZURECLI/2.88.0 azsdk-python-core/1.39.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationStatus/NDA5NTs5NDIwMDgyYy0yY2Y0LTQ2MTEtOGNiMS0xMjY2NTYwZDdmMjQ=?api-version=2026-05-01&t=639202074412382116&c=MIIH9TCCBt2gAwIBAgIRAKnTo6mKeliSYj1GLETof4IwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVUyQyBDQSAwMTAeFw0yNjA3MDIxNTU4NDNaFw0yNjA5MjcyMTU4NDNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAlDQMyX5eVlNoyHQy97t41xstx7ISW3Jpt0fmktBr-SytLFjS2PEwnW3DFpc-bQgfDfHkKP0_FRLvm_mazEvS5KYzyX6nFjGqQTX3SfneJV5jo7nOwYnQHFTbkg0Dngz7AipTBy6yAiQqKMhRo_D-N4o3stwmKHeA0tAiEOx4G_PiAZBVgwqD_hS-porAKnsf-m7-vYsa-g9Cw0SQ2t7YIFgfqGifFcAH79L7QF5n4-toqH20MDZrR10dXpjNK50DvRiltXMo7xC198sVfC6ISY8hDbiFDpsKgL_lz-pJ2kyYJNyq1NUfS79AS70Bkl13eaOYbl8go_Oo41Ma5ArEgQIDAQABo4IE8jCCBO4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7Mv1WvWn7sAfft9pF9lwNBkNam0wHwYDVR0jBBgwFoAUz1EBqulDLGR2G0rwqsDykvhPw7swggHiBgNVHR8EggHZMIIB1TB1oHOgcYZvaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHegdaBzhnFodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyZXVhcC9jcmxzL2NjbWVlYXN0dXMyZXVhcHBraS9jY21lZWFzdHVzMmV1YXBpY2EwMS82NS9jdXJyZW50LmNybDBmoGSgYoZgaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHugeaB3hnVodHRwOi8vY2NtZWVhc3R1czJldWFwcGtpLmVhc3R1czJldWFwLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJldWFwaWNhMDEvNjUvY3VycmVudC5jcmwwggHnBggrBgEFBQcBAQSCAdkwggHVMHgGCCsGAQUFBzAChmxodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwegYIKwYBBQUHMAKGbmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NhY2VydHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxL2NlcnQuY2VyMGkGCCsGAQUFBzAChl1odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwcgYIKwYBBQUHMAKGZmh0dHA6Ly9jY21lZWFzdHVzMmV1YXBwa2kuZWFzdHVzMmV1YXAucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmV1YXBpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAndPCPc-CmjHOQpHPVSFI4dsJ3mAAA9L0QPDWwmXXvm66R08WToYQA9QCpkqxZEzl69AhSTR5x65hpeRv8xhwwj57QIuBD6rfMRghZH83T4x3bdOI4KmhFi_uY_52-cou5_xf0DyGAI_C77U5rC8TmVil8EsUCojV8rWkZXUBQSKZMaC1gzmzWW3pgKG9zwbD6J1M_7PW6f_zhE9KvGfBrLALoabdK0H_in5p3CyRMQee9pXSpsictb8cyfBIRU1fRSNmLnOjVSlF_Ll20gYIhnHvetGUxWU0EE9gWSJVUtwbqJjCeDouKPwe2UYUosoETTC7iluHZc0PV9EMfunH2w&s=enfCwEqstjHbQ1GuS939urpqrtqhYIl6A5vDpp2N_4kfLtE1Q0Ih-lJpubQEYZ6FBNtxHBiZ7-TNyFhlP1YnXfuiCNprKThi03DUVnhvlT4hz6P7mF1AHaMAwVNr2JQc6TA3mduaHKieGtn0RUONQiYSVE0FIlSe_fspgIIYXWkL_ovmaFQ3Ex_3kM0h81P-NjgtdCnVi6WJ0AXrn4gOtBWbHkC-h7ul1cI7nbf4z_H9obeTlxxzCxs4m9IKvikPnmpqex9GNycr6oo5ZD87JzAC57EzgGKwsxTNASsY9CybrlApEPx2Ef2-jgGWWiOKe80AMr4j00fOr2E-JeOl4w&h=vr945MYd2DoJl6TzdEvLVqxcX3oKJ5ZAa04GlKxq6i0 + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationStatus/NDA5NTs5NDIwMDgyYy0yY2Y0LTQ2MTEtOGNiMS0xMjY2NTYwZDdmMjQ=\",\r\n + \ \"name\": \"NDA5NTs5NDIwMDgyYy0yY2Y0LTQ2MTEtOGNiMS0xMjY2NTYwZDdmMjQ=\",\r\n + \ \"status\": \"InProgress\"\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationStatus/NDA5NTs5NDIwMDgyYy0yY2Y0LTQ2MTEtOGNiMS0xMjY2NTYwZDdmMjQ=?api-version=2026-05-01&t=639202074420386210&c=MIIH9TCCBt2gAwIBAgIRAKnTo6mKeliSYj1GLETof4IwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVUyQyBDQSAwMTAeFw0yNjA3MDIxNTU4NDNaFw0yNjA5MjcyMTU4NDNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAlDQMyX5eVlNoyHQy97t41xstx7ISW3Jpt0fmktBr-SytLFjS2PEwnW3DFpc-bQgfDfHkKP0_FRLvm_mazEvS5KYzyX6nFjGqQTX3SfneJV5jo7nOwYnQHFTbkg0Dngz7AipTBy6yAiQqKMhRo_D-N4o3stwmKHeA0tAiEOx4G_PiAZBVgwqD_hS-porAKnsf-m7-vYsa-g9Cw0SQ2t7YIFgfqGifFcAH79L7QF5n4-toqH20MDZrR10dXpjNK50DvRiltXMo7xC198sVfC6ISY8hDbiFDpsKgL_lz-pJ2kyYJNyq1NUfS79AS70Bkl13eaOYbl8go_Oo41Ma5ArEgQIDAQABo4IE8jCCBO4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7Mv1WvWn7sAfft9pF9lwNBkNam0wHwYDVR0jBBgwFoAUz1EBqulDLGR2G0rwqsDykvhPw7swggHiBgNVHR8EggHZMIIB1TB1oHOgcYZvaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHegdaBzhnFodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyZXVhcC9jcmxzL2NjbWVlYXN0dXMyZXVhcHBraS9jY21lZWFzdHVzMmV1YXBpY2EwMS82NS9jdXJyZW50LmNybDBmoGSgYoZgaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHugeaB3hnVodHRwOi8vY2NtZWVhc3R1czJldWFwcGtpLmVhc3R1czJldWFwLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJldWFwaWNhMDEvNjUvY3VycmVudC5jcmwwggHnBggrBgEFBQcBAQSCAdkwggHVMHgGCCsGAQUFBzAChmxodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwegYIKwYBBQUHMAKGbmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NhY2VydHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxL2NlcnQuY2VyMGkGCCsGAQUFBzAChl1odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwcgYIKwYBBQUHMAKGZmh0dHA6Ly9jY21lZWFzdHVzMmV1YXBwa2kuZWFzdHVzMmV1YXAucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmV1YXBpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAndPCPc-CmjHOQpHPVSFI4dsJ3mAAA9L0QPDWwmXXvm66R08WToYQA9QCpkqxZEzl69AhSTR5x65hpeRv8xhwwj57QIuBD6rfMRghZH83T4x3bdOI4KmhFi_uY_52-cou5_xf0DyGAI_C77U5rC8TmVil8EsUCojV8rWkZXUBQSKZMaC1gzmzWW3pgKG9zwbD6J1M_7PW6f_zhE9KvGfBrLALoabdK0H_in5p3CyRMQee9pXSpsictb8cyfBIRU1fRSNmLnOjVSlF_Ll20gYIhnHvetGUxWU0EE9gWSJVUtwbqJjCeDouKPwe2UYUosoETTC7iluHZc0PV9EMfunH2w&s=Mi2vWofE8mYcDnoeGOOUcOUvDs-ZNgvmBZ0ZjuwRPWkZMAQmdAa3aUaauu5h-4w2YGIb1JHa8_Yq_EwssEICKcK1n6X_OfWGfkajo0at8HzciGeVSMiM9JpMUPF4SL3CDvrAJIv8y4oELGC1nBlz1BcJuwGRT6bU_b0nYiSd5Gmf7-83PZRfSMQ9O1oSdkX3OOmw0D75sNBftaOEckuPZOJleVB_BEAKZqZ8hFiAo87vBI262L4Fvftzif7gbe2DgMnPnBvV_zsPPTmDA0fQneBYcMdtQyDajUXtofgOo0NJCa2wlQRoQ9-MTnhiyjtr2c7yGNHWy8qCkDXjDJrPQA&h=8d19ra_lGKoGVC3XcCKSBDjPD63ejpSkvgtIESaulB0 + cache-control: + - no-cache + content-length: + - '346' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 21 Jul 2026 05:10:41 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationResults/NDA5NTs5NDIwMDgyYy0yY2Y0LTQ2MTEtOGNiMS0xMjY2NTYwZDdmMjQ=?api-version=2026-05-01&t=639202074420542464&c=MIIH9TCCBt2gAwIBAgIRAKnTo6mKeliSYj1GLETof4IwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVUyQyBDQSAwMTAeFw0yNjA3MDIxNTU4NDNaFw0yNjA5MjcyMTU4NDNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAlDQMyX5eVlNoyHQy97t41xstx7ISW3Jpt0fmktBr-SytLFjS2PEwnW3DFpc-bQgfDfHkKP0_FRLvm_mazEvS5KYzyX6nFjGqQTX3SfneJV5jo7nOwYnQHFTbkg0Dngz7AipTBy6yAiQqKMhRo_D-N4o3stwmKHeA0tAiEOx4G_PiAZBVgwqD_hS-porAKnsf-m7-vYsa-g9Cw0SQ2t7YIFgfqGifFcAH79L7QF5n4-toqH20MDZrR10dXpjNK50DvRiltXMo7xC198sVfC6ISY8hDbiFDpsKgL_lz-pJ2kyYJNyq1NUfS79AS70Bkl13eaOYbl8go_Oo41Ma5ArEgQIDAQABo4IE8jCCBO4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7Mv1WvWn7sAfft9pF9lwNBkNam0wHwYDVR0jBBgwFoAUz1EBqulDLGR2G0rwqsDykvhPw7swggHiBgNVHR8EggHZMIIB1TB1oHOgcYZvaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHegdaBzhnFodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyZXVhcC9jcmxzL2NjbWVlYXN0dXMyZXVhcHBraS9jY21lZWFzdHVzMmV1YXBpY2EwMS82NS9jdXJyZW50LmNybDBmoGSgYoZgaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHugeaB3hnVodHRwOi8vY2NtZWVhc3R1czJldWFwcGtpLmVhc3R1czJldWFwLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJldWFwaWNhMDEvNjUvY3VycmVudC5jcmwwggHnBggrBgEFBQcBAQSCAdkwggHVMHgGCCsGAQUFBzAChmxodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwegYIKwYBBQUHMAKGbmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NhY2VydHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxL2NlcnQuY2VyMGkGCCsGAQUFBzAChl1odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwcgYIKwYBBQUHMAKGZmh0dHA6Ly9jY21lZWFzdHVzMmV1YXBwa2kuZWFzdHVzMmV1YXAucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmV1YXBpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAndPCPc-CmjHOQpHPVSFI4dsJ3mAAA9L0QPDWwmXXvm66R08WToYQA9QCpkqxZEzl69AhSTR5x65hpeRv8xhwwj57QIuBD6rfMRghZH83T4x3bdOI4KmhFi_uY_52-cou5_xf0DyGAI_C77U5rC8TmVil8EsUCojV8rWkZXUBQSKZMaC1gzmzWW3pgKG9zwbD6J1M_7PW6f_zhE9KvGfBrLALoabdK0H_in5p3CyRMQee9pXSpsictb8cyfBIRU1fRSNmLnOjVSlF_Ll20gYIhnHvetGUxWU0EE9gWSJVUtwbqJjCeDouKPwe2UYUosoETTC7iluHZc0PV9EMfunH2w&s=Gd_hoZpJPY83hC2edQwNMxym5LkoJGMvGzmcgR6g6sT2ZuOWGHg7T6kY4_G3WFR_rrcbp1IbW5NLlWEN2y9MAwubIRDenmFcREudvvKe-ucgyqdc_fhoqAXWoKXvpn8Q0m_XypCjzjrMRdatVPfibXJ0-kctpTn4Ouh13o6YC__CE_n4Td87EyX8l4lRQw8KG8sQA6Dp3SXmr2mMlH80mJfmAkIyr5fwJ75oxLavq2LGH5TS4W5gxqTbMpXkvOwUVDMD2Ql7bo4qmH1dcQ3KLRQ0R-qTc9DUFk39wok2ZsfoqxA2QO1ooPjlzvg7MlCswiiBGbbexLBLH_xkmPVVRA&h=pmo5PedHwuuEsIOz1w6RTDZ2cywLknAlZcodzsWjMsY + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=352782de-cadf-4f14-ad97-08cd2617ef55/eastus2euap/1b35e161-97e2-4051-b257-aa0080b561da + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: C50F1EA5896F4FCD9607993CF48055E8 Ref B: PNQ231110906031 Ref C: 2026-07-21T05:10:41Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - backup vault update + Connection: + - keep-alive + ParameterSetName: + - -n -g --backup-storage-redundancy + User-Agent: + - AZURECLI/2.88.0 azsdk-python-core/1.39.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationStatus/NDA5NTszMGEyNDY2Zi03MmE4LTRiYmQtODVjNi1hYjBhYjVjMmYzODA=?api-version=2025-08-01&t=638971698398679980&c=MIIIpDCCBoygAwIBAgITFgIdx-8P5Q2flkVe0wABAh3H7zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUxMDIwMTM0ODIxWhcNMjYwMTE4MTM0ODIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALJsx40wbBQQVymBKxEYB3QsXs7DWrmkLk1cvGC9Oh6ZUsiS6z4fZ9KUiL7u4Cb1R-5gfYTplSDkCfn9Y776fzY9tgxKTFF2KMooWQSUUNfMYuwrWFbbHGDx79k-SN6J44MhkxgVnvirjK5cOgtR1YwGjnk0x5Ea3-szYPplTQi12yBEDft-JR3YCKn54jq1stV1W2hRp_2g1BQImqyuswXZKY2DD-s3bQClN3clms4KDqdtTyXsWYLLd1wyrriHRsQnNbYpC1EqjwDyNGLTXHMVXKbeUefj5AwkYLnb77HgLc0IW7nFQwaOLB01n0OsHuhWZeUiilCDsiV76B_8MF0CAwEAAaOCBJEwggSNMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAdoGCCsGAQUFBwEBBIIBzDCCAcgwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDEuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDQuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwHQYDVR0OBBYEFBIs_XIgrlYGjVV6tC88QEhsK39fMA4GA1UdDwEB_wQEAwIFoDCCATUGA1UdHwSCASwwggEoMIIBJKCCASCgggEchkJodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMB8GA1UdIwQYMBaAFEijrWB1am_sYPNpVdEAsTJX_GzkMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAgEAoWGeh2L-xOp4WFwNcK7-42nE8XWzyiVfNq-en8umv6B7FIlZBqRTSHucIlGoZqT7uEkuOIkyfwKUKMHeX3kte0w5f4gSgSX-JsexZj509BqurtDEgPbEjh9zUpbDAM7sODNvfiZ0HVF6sREKDyDIRGhYl_C7qO6FPNUH0wiEMRNI92WewkvN5kxHFBO56OS26He5ElMpeDPNifRXSj2RrthZNiLhtVNqOXCXV8HvAO-8PBPQGpetO260pqROBjblZfst9LCba3YKdZ8o2ojOeG5_ANB5mSX3bsBsY2ULkbRKgNBi5AXJ7q0-n01yM6-uiSvZ8wrkHLfDJ6KlzSDTLJpoVa8AUeZoPEhJgyQInNCPK5nFOD-F1QNRwQj-B-s7y16iUVZiLZ3hkxODdrbMjfPRL2P3DYn1cg-jZVq0xDX1aSlRyQq6qi9xZ9RfBPeOrsZ3SHGm0XIJdlqtaYt0Evo6fWKiFXuJ-H6nf5Qy8sLTk2q160CH2IgsW5_tA0n0ySGt5n-9j610wwPdH6ImEQ1jli9U8Ur82WjB7qQhpmYPuHOyytAGttfk1271zkw5TOpkzJfGWvT5zYv436XCj6pouSk2GJmG1iR-9pO4kPK1LWp3ujV-IXZjP_-xg0wwwsvc0BDJJZZk4tElY91ySFzLXlN8QfTH67VHl7D8ILg&s=ofzYFxpBXEjm6-169D_i3i4wOsUSgfSlw7RMebV4WqvMIqpUAUL9S48s02IVYh5jxlZPgre5ipd3ZJXrrQ2Bq2ifz0EQ-rXi3HMYxFn0ujfqB9rxc4LtM1ipLVR67_LTP0N_yDTaqcMo18hFnEzLuYbnKjGTg3r-4awzXTi03L2uazUAm6A1mnIUSZHxo4JUYDh8Bw-z3U6N0se7QVHyTJWBd1H57_8XVGQSD9vRMIFE_mLpClTJmMLBe-oSTkmUKn1tJzKZnl_sdiPMaV-wvm9In8Jl2l9z9vzsZ60ZaRglKZL6aML-TR9CuIqKlXdUD2adbhi_imA3QefzRdX1Gw&h=tFH1BNxCcSgPensEVpos_WaN_6qwdZRCEyTySe10NEU + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationStatus/NDA5NTs5NDIwMDgyYy0yY2Y0LTQ2MTEtOGNiMS0xMjY2NTYwZDdmMjQ=?api-version=2026-05-01&t=639202074412382116&c=MIIH9TCCBt2gAwIBAgIRAKnTo6mKeliSYj1GLETof4IwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVUyQyBDQSAwMTAeFw0yNjA3MDIxNTU4NDNaFw0yNjA5MjcyMTU4NDNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAlDQMyX5eVlNoyHQy97t41xstx7ISW3Jpt0fmktBr-SytLFjS2PEwnW3DFpc-bQgfDfHkKP0_FRLvm_mazEvS5KYzyX6nFjGqQTX3SfneJV5jo7nOwYnQHFTbkg0Dngz7AipTBy6yAiQqKMhRo_D-N4o3stwmKHeA0tAiEOx4G_PiAZBVgwqD_hS-porAKnsf-m7-vYsa-g9Cw0SQ2t7YIFgfqGifFcAH79L7QF5n4-toqH20MDZrR10dXpjNK50DvRiltXMo7xC198sVfC6ISY8hDbiFDpsKgL_lz-pJ2kyYJNyq1NUfS79AS70Bkl13eaOYbl8go_Oo41Ma5ArEgQIDAQABo4IE8jCCBO4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7Mv1WvWn7sAfft9pF9lwNBkNam0wHwYDVR0jBBgwFoAUz1EBqulDLGR2G0rwqsDykvhPw7swggHiBgNVHR8EggHZMIIB1TB1oHOgcYZvaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHegdaBzhnFodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyZXVhcC9jcmxzL2NjbWVlYXN0dXMyZXVhcHBraS9jY21lZWFzdHVzMmV1YXBpY2EwMS82NS9jdXJyZW50LmNybDBmoGSgYoZgaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHugeaB3hnVodHRwOi8vY2NtZWVhc3R1czJldWFwcGtpLmVhc3R1czJldWFwLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJldWFwaWNhMDEvNjUvY3VycmVudC5jcmwwggHnBggrBgEFBQcBAQSCAdkwggHVMHgGCCsGAQUFBzAChmxodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwegYIKwYBBQUHMAKGbmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NhY2VydHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxL2NlcnQuY2VyMGkGCCsGAQUFBzAChl1odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwcgYIKwYBBQUHMAKGZmh0dHA6Ly9jY21lZWFzdHVzMmV1YXBwa2kuZWFzdHVzMmV1YXAucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmV1YXBpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAndPCPc-CmjHOQpHPVSFI4dsJ3mAAA9L0QPDWwmXXvm66R08WToYQA9QCpkqxZEzl69AhSTR5x65hpeRv8xhwwj57QIuBD6rfMRghZH83T4x3bdOI4KmhFi_uY_52-cou5_xf0DyGAI_C77U5rC8TmVil8EsUCojV8rWkZXUBQSKZMaC1gzmzWW3pgKG9zwbD6J1M_7PW6f_zhE9KvGfBrLALoabdK0H_in5p3CyRMQee9pXSpsictb8cyfBIRU1fRSNmLnOjVSlF_Ll20gYIhnHvetGUxWU0EE9gWSJVUtwbqJjCeDouKPwe2UYUosoETTC7iluHZc0PV9EMfunH2w&s=enfCwEqstjHbQ1GuS939urpqrtqhYIl6A5vDpp2N_4kfLtE1Q0Ih-lJpubQEYZ6FBNtxHBiZ7-TNyFhlP1YnXfuiCNprKThi03DUVnhvlT4hz6P7mF1AHaMAwVNr2JQc6TA3mduaHKieGtn0RUONQiYSVE0FIlSe_fspgIIYXWkL_ovmaFQ3Ex_3kM0h81P-NjgtdCnVi6WJ0AXrn4gOtBWbHkC-h7ul1cI7nbf4z_H9obeTlxxzCxs4m9IKvikPnmpqex9GNycr6oo5ZD87JzAC57EzgGKwsxTNASsY9CybrlApEPx2Ef2-jgGWWiOKe80AMr4j00fOr2E-JeOl4w&h=vr945MYd2DoJl6TzdEvLVqxcX3oKJ5ZAa04GlKxq6i0 response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationStatus/NDA5NTszMGEyNDY2Zi03MmE4LTRiYmQtODVjNi1hYjBhYjVjMmYzODA=\",\r\n - \ \"name\": \"NDA5NTszMGEyNDY2Zi03MmE4LTRiYmQtODVjNi1hYjBhYjVjMmYzODA=\",\r\n + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationStatus/NDA5NTs5NDIwMDgyYy0yY2Y0LTQ2MTEtOGNiMS0xMjY2NTYwZDdmMjQ=\",\r\n + \ \"name\": \"NDA5NTs5NDIwMDgyYy0yY2Y0LTQ2MTEtOGNiMS0xMjY2NTYwZDdmMjQ=\",\r\n \ \"status\": \"Succeeded\"\r\n}" headers: cache-control: @@ -1866,7 +1973,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 27 Oct 2025 13:50:41 GMT + - Tue, 21 Jul 2026 05:11:43 GMT expires: - '-1' pragma: @@ -1878,11 +1985,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=12f8ea5c-1212-449e-b31c-0a574f43076e/eastus2euap/02b76904-8df3-4762-bd53-b05fc2de8fe2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=352782de-cadf-4f14-ad97-08cd2617ef55/eastus2euap/87332fa3-085b-4b52-9ff3-0141c988a3d7 x-ms-throttling-version: - v2 x-msedge-ref: - - 'Ref A: 15C4AF66B356423E913C02D1523F8B31 Ref B: JKT201051407054 Ref C: 2025-10-27T13:50:41Z' + - 'Ref A: 30E797129C3447FB986EC2A85BCEFC26 Ref B: PNQ231110909052 Ref C: 2026-07-21T05:11:42Z' status: code: 200 message: OK @@ -1900,21 +2007,21 @@ interactions: ParameterSetName: - -n -g --backup-storage-redundancy User-Agent: - - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.11.9 (Windows-10-10.0.26200-SP0) + - AZURECLI/2.88.0 azsdk-python-core/1.39.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2025-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2026-05-01 response: body: - string: '{"location":"eastus2euap","name":"clitest-vault000002","etag":"W/\"datetime''2025-10-27T13%3A50%3A40.4461815Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","monitoringSettings":{"azureMonitorAlertSettings":{"alertsForAllJobFailures":"Enabled","alertsForAllReplicationIssues":"Enabled","alertsForAllFailoverIssues":"Enabled"},"classicAlertSettings":{"alertsForCriticalOperations":"Enabled","emailNotificationsForSiteRecovery":"Enabled"}},"backupStorageVersion":"Unassigned","securitySettings":{"softDeleteSettings":{"softDeleteRetentionPeriodInDays":14,"softDeleteState":"AlwaysON","enhancedSecurityState":"AlwaysON"},"multiUserAuthorization":"Disabled","sourceScanConfiguration":{"state":"Disabled"}},"redundancySettings":{"standardTierStorageRedundancy":"ZoneRedundant","crossRegionRestore":"Disabled"},"secureScore":"Adequate","bcdrSecurityLevel":"Good","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' + string: '{"location":"eastus2euap","name":"clitest-vault000002","etag":"W/\"datetime''2026-07-21T05%3A10%3A43.0101359Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","monitoringSettings":{"azureMonitorAlertSettings":{"alertsForAllJobFailures":"Enabled","alertsForAllReplicationIssues":"Enabled","alertsForAllFailoverIssues":"Enabled"},"classicAlertSettings":{"alertsForCriticalOperations":"Enabled","emailNotificationsForSiteRecovery":"Enabled"}},"costManagementSettings":{"granularityLevel":"VaultLevel"},"backupStorageVersion":"Unassigned","securitySettings":{"softDeleteSettings":{"softDeleteRetentionPeriodInDays":14,"softDeleteState":"AlwaysON","enhancedSecurityState":"AlwaysON"},"multiUserAuthorization":"Disabled","sourceScanConfiguration":{"state":"Disabled"}},"redundancySettings":{"standardTierStorageRedundancy":"ZoneRedundant","crossRegionRestore":"Disabled"},"secureScore":"Adequate","bcdrSecurityLevel":"Good","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' headers: cache-control: - no-cache content-length: - - '1311' + - '1370' content-type: - application/json; charset=utf-8 date: - - Mon, 27 Oct 2025 13:50:42 GMT + - Tue, 21 Jul 2026 05:11:43 GMT expires: - '-1' pragma: @@ -1928,7 +2035,7 @@ interactions: x-ms-throttling-version: - v2 x-msedge-ref: - - 'Ref A: 701F8121B0654F0FACF7DB8B1C0CC523 Ref B: JKT201051406029 Ref C: 2025-10-27T13:50:42Z' + - 'Ref A: AC67D3A5AB8041CA8EB746496A647159 Ref B: PNQ231110908023 Ref C: 2026-07-21T05:11:43Z' status: code: 200 message: OK @@ -1946,21 +2053,21 @@ interactions: ParameterSetName: - -n -g --query User-Agent: - - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.11.9 (Windows-10-10.0.26200-SP0) + - AZURECLI/2.88.0 azsdk-python-core/1.39.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2025-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2026-05-01 response: body: - string: '{"location":"eastus2euap","name":"clitest-vault000002","etag":"W/\"datetime''2025-10-27T13%3A50%3A40.4461815Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","monitoringSettings":{"azureMonitorAlertSettings":{"alertsForAllJobFailures":"Enabled","alertsForAllReplicationIssues":"Enabled","alertsForAllFailoverIssues":"Enabled"},"classicAlertSettings":{"alertsForCriticalOperations":"Enabled","emailNotificationsForSiteRecovery":"Enabled"}},"backupStorageVersion":"Unassigned","securitySettings":{"softDeleteSettings":{"softDeleteRetentionPeriodInDays":14,"softDeleteState":"AlwaysON","enhancedSecurityState":"AlwaysON"},"multiUserAuthorization":"Disabled","sourceScanConfiguration":{"state":"Disabled"}},"redundancySettings":{"standardTierStorageRedundancy":"ZoneRedundant","crossRegionRestore":"Disabled"},"secureScore":"Adequate","bcdrSecurityLevel":"Good","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' + string: '{"location":"eastus2euap","name":"clitest-vault000002","etag":"W/\"datetime''2026-07-21T05%3A10%3A43.0101359Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","monitoringSettings":{"azureMonitorAlertSettings":{"alertsForAllJobFailures":"Enabled","alertsForAllReplicationIssues":"Enabled","alertsForAllFailoverIssues":"Enabled"},"classicAlertSettings":{"alertsForCriticalOperations":"Enabled","emailNotificationsForSiteRecovery":"Enabled"}},"costManagementSettings":{"granularityLevel":"VaultLevel"},"backupStorageVersion":"Unassigned","securitySettings":{"softDeleteSettings":{"softDeleteRetentionPeriodInDays":14,"softDeleteState":"AlwaysON","enhancedSecurityState":"AlwaysON"},"multiUserAuthorization":"Disabled","sourceScanConfiguration":{"state":"Disabled"}},"redundancySettings":{"standardTierStorageRedundancy":"ZoneRedundant","crossRegionRestore":"Disabled"},"secureScore":"Adequate","bcdrSecurityLevel":"Good","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' headers: cache-control: - no-cache content-length: - - '1311' + - '1370' content-type: - application/json; charset=utf-8 date: - - Mon, 27 Oct 2025 13:55:45 GMT + - Tue, 21 Jul 2026 05:16:44 GMT expires: - '-1' pragma: @@ -1974,7 +2081,7 @@ interactions: x-ms-throttling-version: - v2 x-msedge-ref: - - 'Ref A: 0937CCF112044533900825DFAB6EB136 Ref B: JKT201051406062 Ref C: 2025-10-27T13:55:44Z' + - 'Ref A: 5F8C475C890E4C84A75138B8FC198CA0 Ref B: PNQ231110906060 Ref C: 2026-07-21T05:16:44Z' status: code: 200 message: OK @@ -1992,21 +2099,21 @@ interactions: ParameterSetName: - -g -n --classic-alerts --job-failure-alerts User-Agent: - - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.11.9 (Windows-10-10.0.26200-SP0) + - AZURECLI/2.88.0 azsdk-python-core/1.39.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2025-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2026-05-01 response: body: - string: '{"location":"eastus2euap","name":"clitest-vault000002","etag":"W/\"datetime''2025-10-27T13%3A50%3A40.4461815Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","monitoringSettings":{"azureMonitorAlertSettings":{"alertsForAllJobFailures":"Enabled","alertsForAllReplicationIssues":"Enabled","alertsForAllFailoverIssues":"Enabled"},"classicAlertSettings":{"alertsForCriticalOperations":"Enabled","emailNotificationsForSiteRecovery":"Enabled"}},"backupStorageVersion":"Unassigned","securitySettings":{"softDeleteSettings":{"softDeleteRetentionPeriodInDays":14,"softDeleteState":"AlwaysON","enhancedSecurityState":"AlwaysON"},"multiUserAuthorization":"Disabled","sourceScanConfiguration":{"state":"Disabled"}},"redundancySettings":{"standardTierStorageRedundancy":"ZoneRedundant","crossRegionRestore":"Disabled"},"secureScore":"Adequate","bcdrSecurityLevel":"Good","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' + string: '{"location":"eastus2euap","name":"clitest-vault000002","etag":"W/\"datetime''2026-07-21T05%3A10%3A43.0101359Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","monitoringSettings":{"azureMonitorAlertSettings":{"alertsForAllJobFailures":"Enabled","alertsForAllReplicationIssues":"Enabled","alertsForAllFailoverIssues":"Enabled"},"classicAlertSettings":{"alertsForCriticalOperations":"Enabled","emailNotificationsForSiteRecovery":"Enabled"}},"costManagementSettings":{"granularityLevel":"VaultLevel"},"backupStorageVersion":"Unassigned","securitySettings":{"softDeleteSettings":{"softDeleteRetentionPeriodInDays":14,"softDeleteState":"AlwaysON","enhancedSecurityState":"AlwaysON"},"multiUserAuthorization":"Disabled","sourceScanConfiguration":{"state":"Disabled"}},"redundancySettings":{"standardTierStorageRedundancy":"ZoneRedundant","crossRegionRestore":"Disabled"},"secureScore":"Adequate","bcdrSecurityLevel":"Good","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' headers: cache-control: - no-cache content-length: - - '1311' + - '1370' content-type: - application/json; charset=utf-8 date: - - Mon, 27 Oct 2025 13:55:46 GMT + - Tue, 21 Jul 2026 05:16:45 GMT expires: - '-1' pragma: @@ -2020,7 +2127,7 @@ interactions: x-ms-throttling-version: - v2 x-msedge-ref: - - 'Ref A: 72544800B43B40D8B773A8B3AFBA533E Ref B: JKT201051407062 Ref C: 2025-10-27T13:55:46Z' + - 'Ref A: 3B8A94E31C7E41E2ADAEC3737184045F Ref B: PNQ231110908034 Ref C: 2026-07-21T05:16:45Z' status: code: 200 message: OK @@ -2045,25 +2152,25 @@ interactions: ParameterSetName: - -g -n --classic-alerts --job-failure-alerts User-Agent: - - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.11.9 (Windows-10-10.0.26200-SP0) + - AZURECLI/2.88.0 azsdk-python-core/1.39.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2025-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2026-05-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationStatus/NDA5NTswYWIwYzhlMi1iMmNhLTQ4ZTAtYmNiMi01MmNjZWI2ODY0NzM=?api-version=2025-08-01&t=638971701483430776&c=MIIIpDCCBoygAwIBAgITFgIdx-8P5Q2flkVe0wABAh3H7zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUxMDIwMTM0ODIxWhcNMjYwMTE4MTM0ODIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALJsx40wbBQQVymBKxEYB3QsXs7DWrmkLk1cvGC9Oh6ZUsiS6z4fZ9KUiL7u4Cb1R-5gfYTplSDkCfn9Y776fzY9tgxKTFF2KMooWQSUUNfMYuwrWFbbHGDx79k-SN6J44MhkxgVnvirjK5cOgtR1YwGjnk0x5Ea3-szYPplTQi12yBEDft-JR3YCKn54jq1stV1W2hRp_2g1BQImqyuswXZKY2DD-s3bQClN3clms4KDqdtTyXsWYLLd1wyrriHRsQnNbYpC1EqjwDyNGLTXHMVXKbeUefj5AwkYLnb77HgLc0IW7nFQwaOLB01n0OsHuhWZeUiilCDsiV76B_8MF0CAwEAAaOCBJEwggSNMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAdoGCCsGAQUFBwEBBIIBzDCCAcgwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDEuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDQuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwHQYDVR0OBBYEFBIs_XIgrlYGjVV6tC88QEhsK39fMA4GA1UdDwEB_wQEAwIFoDCCATUGA1UdHwSCASwwggEoMIIBJKCCASCgggEchkJodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMB8GA1UdIwQYMBaAFEijrWB1am_sYPNpVdEAsTJX_GzkMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAgEAoWGeh2L-xOp4WFwNcK7-42nE8XWzyiVfNq-en8umv6B7FIlZBqRTSHucIlGoZqT7uEkuOIkyfwKUKMHeX3kte0w5f4gSgSX-JsexZj509BqurtDEgPbEjh9zUpbDAM7sODNvfiZ0HVF6sREKDyDIRGhYl_C7qO6FPNUH0wiEMRNI92WewkvN5kxHFBO56OS26He5ElMpeDPNifRXSj2RrthZNiLhtVNqOXCXV8HvAO-8PBPQGpetO260pqROBjblZfst9LCba3YKdZ8o2ojOeG5_ANB5mSX3bsBsY2ULkbRKgNBi5AXJ7q0-n01yM6-uiSvZ8wrkHLfDJ6KlzSDTLJpoVa8AUeZoPEhJgyQInNCPK5nFOD-F1QNRwQj-B-s7y16iUVZiLZ3hkxODdrbMjfPRL2P3DYn1cg-jZVq0xDX1aSlRyQq6qi9xZ9RfBPeOrsZ3SHGm0XIJdlqtaYt0Evo6fWKiFXuJ-H6nf5Qy8sLTk2q160CH2IgsW5_tA0n0ySGt5n-9j610wwPdH6ImEQ1jli9U8Ur82WjB7qQhpmYPuHOyytAGttfk1271zkw5TOpkzJfGWvT5zYv436XCj6pouSk2GJmG1iR-9pO4kPK1LWp3ujV-IXZjP_-xg0wwwsvc0BDJJZZk4tElY91ySFzLXlN8QfTH67VHl7D8ILg&s=Ew-gSFJm8yuSUDBLbFJ0XG1WJzPvuD59SCZRrNlv5VUoP3KVy4PRzmgtNDN0DCzJONrwepUz_RKvQWn0HPjPkT6RasqqJvpWrE9gttHF6QAZA9tKQoubZBlwEqlNN8-038wlIlYeea4xy3Zgol8E9VLgoqTl7VcUY4cmkATXA8aIOZfJ6jkhCxWe12n3mwDO42lvQQrFWDtJfEwLL4l5ZySY8tBR1zfGA3su9AbnPuNUSv-LG3hhzdi8jKFtzQwjXsWIJLPOokq48e6XC6zIpKEM8aH1D5H7IJJbPdCxBgiNIwr7U9BQ_az2qzaMsKypugXHJ8FJcAkJ925GoGit5A&h=lpsk9eB3vtZKOmbjoqdlglSfQQJj8Ky56R6-_Hz8FjU + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationStatus/NDA5NTs5YTZhYTg4NS02ZmNmLTQ5NWItYjI2OC0yMDc2YjU5ZWU4ZjM=?api-version=2026-05-01&t=639202078072189060&c=MIIH9TCCBt2gAwIBAgIRAKnTo6mKeliSYj1GLETof4IwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVUyQyBDQSAwMTAeFw0yNjA3MDIxNTU4NDNaFw0yNjA5MjcyMTU4NDNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAlDQMyX5eVlNoyHQy97t41xstx7ISW3Jpt0fmktBr-SytLFjS2PEwnW3DFpc-bQgfDfHkKP0_FRLvm_mazEvS5KYzyX6nFjGqQTX3SfneJV5jo7nOwYnQHFTbkg0Dngz7AipTBy6yAiQqKMhRo_D-N4o3stwmKHeA0tAiEOx4G_PiAZBVgwqD_hS-porAKnsf-m7-vYsa-g9Cw0SQ2t7YIFgfqGifFcAH79L7QF5n4-toqH20MDZrR10dXpjNK50DvRiltXMo7xC198sVfC6ISY8hDbiFDpsKgL_lz-pJ2kyYJNyq1NUfS79AS70Bkl13eaOYbl8go_Oo41Ma5ArEgQIDAQABo4IE8jCCBO4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7Mv1WvWn7sAfft9pF9lwNBkNam0wHwYDVR0jBBgwFoAUz1EBqulDLGR2G0rwqsDykvhPw7swggHiBgNVHR8EggHZMIIB1TB1oHOgcYZvaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHegdaBzhnFodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyZXVhcC9jcmxzL2NjbWVlYXN0dXMyZXVhcHBraS9jY21lZWFzdHVzMmV1YXBpY2EwMS82NS9jdXJyZW50LmNybDBmoGSgYoZgaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHugeaB3hnVodHRwOi8vY2NtZWVhc3R1czJldWFwcGtpLmVhc3R1czJldWFwLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJldWFwaWNhMDEvNjUvY3VycmVudC5jcmwwggHnBggrBgEFBQcBAQSCAdkwggHVMHgGCCsGAQUFBzAChmxodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwegYIKwYBBQUHMAKGbmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NhY2VydHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxL2NlcnQuY2VyMGkGCCsGAQUFBzAChl1odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwcgYIKwYBBQUHMAKGZmh0dHA6Ly9jY21lZWFzdHVzMmV1YXBwa2kuZWFzdHVzMmV1YXAucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmV1YXBpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAndPCPc-CmjHOQpHPVSFI4dsJ3mAAA9L0QPDWwmXXvm66R08WToYQA9QCpkqxZEzl69AhSTR5x65hpeRv8xhwwj57QIuBD6rfMRghZH83T4x3bdOI4KmhFi_uY_52-cou5_xf0DyGAI_C77U5rC8TmVil8EsUCojV8rWkZXUBQSKZMaC1gzmzWW3pgKG9zwbD6J1M_7PW6f_zhE9KvGfBrLALoabdK0H_in5p3CyRMQee9pXSpsictb8cyfBIRU1fRSNmLnOjVSlF_Ll20gYIhnHvetGUxWU0EE9gWSJVUtwbqJjCeDouKPwe2UYUosoETTC7iluHZc0PV9EMfunH2w&s=IaS1XXaWQCeQHQUEenpXFassHiVIb1s473qqRP1qsEsfBapbGVxaDMYexGy5gl6d7GT58Lrr4BDuC75nsWwlv-ng0b60ZtGShbwYnttuwH1NgUax3WUvhnc5c0_PYpMy5IyXYLLgduCqS7Rm0mNDQC0nZfV2sSace1rAFX1QE7dwBUDi5QHA76DJcu1NSHKbbsPeP8h_OXvKcoSXmQyHibXjmrhb_3LRTaqDC3aC7UvptAqfbdGsUElvTkzZVlfkemYvjGpwFnfMU0STqn4wzKUeFt8T9vSSyJ8SoiWw_zLsucmhzoZ-mcCHRH4J0fpN29suYawOtJzcN1zxllh1uA&h=ccEndPZtRUIXrICb42yN0OOcwq8Q5af85EgSwk19aVY cache-control: - no-cache content-length: - '0' date: - - Mon, 27 Oct 2025 13:55:48 GMT + - Tue, 21 Jul 2026 05:16:46 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationResults/NDA5NTswYWIwYzhlMi1iMmNhLTQ4ZTAtYmNiMi01MmNjZWI2ODY0NzM=?api-version=2025-08-01&t=638971701483430776&c=MIIIpDCCBoygAwIBAgITFgIdx-8P5Q2flkVe0wABAh3H7zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUxMDIwMTM0ODIxWhcNMjYwMTE4MTM0ODIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALJsx40wbBQQVymBKxEYB3QsXs7DWrmkLk1cvGC9Oh6ZUsiS6z4fZ9KUiL7u4Cb1R-5gfYTplSDkCfn9Y776fzY9tgxKTFF2KMooWQSUUNfMYuwrWFbbHGDx79k-SN6J44MhkxgVnvirjK5cOgtR1YwGjnk0x5Ea3-szYPplTQi12yBEDft-JR3YCKn54jq1stV1W2hRp_2g1BQImqyuswXZKY2DD-s3bQClN3clms4KDqdtTyXsWYLLd1wyrriHRsQnNbYpC1EqjwDyNGLTXHMVXKbeUefj5AwkYLnb77HgLc0IW7nFQwaOLB01n0OsHuhWZeUiilCDsiV76B_8MF0CAwEAAaOCBJEwggSNMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAdoGCCsGAQUFBwEBBIIBzDCCAcgwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDEuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDQuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwHQYDVR0OBBYEFBIs_XIgrlYGjVV6tC88QEhsK39fMA4GA1UdDwEB_wQEAwIFoDCCATUGA1UdHwSCASwwggEoMIIBJKCCASCgggEchkJodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMB8GA1UdIwQYMBaAFEijrWB1am_sYPNpVdEAsTJX_GzkMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAgEAoWGeh2L-xOp4WFwNcK7-42nE8XWzyiVfNq-en8umv6B7FIlZBqRTSHucIlGoZqT7uEkuOIkyfwKUKMHeX3kte0w5f4gSgSX-JsexZj509BqurtDEgPbEjh9zUpbDAM7sODNvfiZ0HVF6sREKDyDIRGhYl_C7qO6FPNUH0wiEMRNI92WewkvN5kxHFBO56OS26He5ElMpeDPNifRXSj2RrthZNiLhtVNqOXCXV8HvAO-8PBPQGpetO260pqROBjblZfst9LCba3YKdZ8o2ojOeG5_ANB5mSX3bsBsY2ULkbRKgNBi5AXJ7q0-n01yM6-uiSvZ8wrkHLfDJ6KlzSDTLJpoVa8AUeZoPEhJgyQInNCPK5nFOD-F1QNRwQj-B-s7y16iUVZiLZ3hkxODdrbMjfPRL2P3DYn1cg-jZVq0xDX1aSlRyQq6qi9xZ9RfBPeOrsZ3SHGm0XIJdlqtaYt0Evo6fWKiFXuJ-H6nf5Qy8sLTk2q160CH2IgsW5_tA0n0ySGt5n-9j610wwPdH6ImEQ1jli9U8Ur82WjB7qQhpmYPuHOyytAGttfk1271zkw5TOpkzJfGWvT5zYv436XCj6pouSk2GJmG1iR-9pO4kPK1LWp3ujV-IXZjP_-xg0wwwsvc0BDJJZZk4tElY91ySFzLXlN8QfTH67VHl7D8ILg&s=fmHMxp0KyplJ2Xv5ccpu903zVO4j9bwPSGynG0rqYqGyrCK7YX9OeijwyraRkLh2WgF5dV6D4Y9G50DsVYqUhcXbflCRvqIzY-8_EzOgrEL1tNDW5vB7mCbrHyLL0MLg6Iq-p_NDOT4CkFFaQXpQdRQw4zVBxelsM7JYLtAHcGz9w86_m2Z3Ob_1ADG9GMzJIMb93r8LSfb7jkOhsBh_-fJ0AnWjicWGl7R9_0O-G9V7TaD8lMmSt6VaoVaGfz0Te0euOQKZdurld_YaUfxg31d4PjMSS9xT0MCOI35tUWZfdm9daS3JLerjdcEVG0DRy9hEEP18kRqNcW69dHmgxg&h=ZbOmZRIQBz0vLGVjLyXJR3sHgRMDC0OBHYf4yoHKe0M + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationResults/NDA5NTs5YTZhYTg4NS02ZmNmLTQ5NWItYjI2OC0yMDc2YjU5ZWU4ZjM=?api-version=2026-05-01&t=639202078072344241&c=MIIH9TCCBt2gAwIBAgIRAKnTo6mKeliSYj1GLETof4IwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVUyQyBDQSAwMTAeFw0yNjA3MDIxNTU4NDNaFw0yNjA5MjcyMTU4NDNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAlDQMyX5eVlNoyHQy97t41xstx7ISW3Jpt0fmktBr-SytLFjS2PEwnW3DFpc-bQgfDfHkKP0_FRLvm_mazEvS5KYzyX6nFjGqQTX3SfneJV5jo7nOwYnQHFTbkg0Dngz7AipTBy6yAiQqKMhRo_D-N4o3stwmKHeA0tAiEOx4G_PiAZBVgwqD_hS-porAKnsf-m7-vYsa-g9Cw0SQ2t7YIFgfqGifFcAH79L7QF5n4-toqH20MDZrR10dXpjNK50DvRiltXMo7xC198sVfC6ISY8hDbiFDpsKgL_lz-pJ2kyYJNyq1NUfS79AS70Bkl13eaOYbl8go_Oo41Ma5ArEgQIDAQABo4IE8jCCBO4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7Mv1WvWn7sAfft9pF9lwNBkNam0wHwYDVR0jBBgwFoAUz1EBqulDLGR2G0rwqsDykvhPw7swggHiBgNVHR8EggHZMIIB1TB1oHOgcYZvaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHegdaBzhnFodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyZXVhcC9jcmxzL2NjbWVlYXN0dXMyZXVhcHBraS9jY21lZWFzdHVzMmV1YXBpY2EwMS82NS9jdXJyZW50LmNybDBmoGSgYoZgaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHugeaB3hnVodHRwOi8vY2NtZWVhc3R1czJldWFwcGtpLmVhc3R1czJldWFwLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJldWFwaWNhMDEvNjUvY3VycmVudC5jcmwwggHnBggrBgEFBQcBAQSCAdkwggHVMHgGCCsGAQUFBzAChmxodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwegYIKwYBBQUHMAKGbmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NhY2VydHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxL2NlcnQuY2VyMGkGCCsGAQUFBzAChl1odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwcgYIKwYBBQUHMAKGZmh0dHA6Ly9jY21lZWFzdHVzMmV1YXBwa2kuZWFzdHVzMmV1YXAucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmV1YXBpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAndPCPc-CmjHOQpHPVSFI4dsJ3mAAA9L0QPDWwmXXvm66R08WToYQA9QCpkqxZEzl69AhSTR5x65hpeRv8xhwwj57QIuBD6rfMRghZH83T4x3bdOI4KmhFi_uY_52-cou5_xf0DyGAI_C77U5rC8TmVil8EsUCojV8rWkZXUBQSKZMaC1gzmzWW3pgKG9zwbD6J1M_7PW6f_zhE9KvGfBrLALoabdK0H_in5p3CyRMQee9pXSpsictb8cyfBIRU1fRSNmLnOjVSlF_Ll20gYIhnHvetGUxWU0EE9gWSJVUtwbqJjCeDouKPwe2UYUosoETTC7iluHZc0PV9EMfunH2w&s=k3OY1aUP4nGVg1VF0nUxwOQPWIA24WA31bT2_QyicgwD204LQiv8h_0DRBeQFiQPH3Co5oHJI_i219Girsf8yqE4KD1EThKCoQIR8fnW5J56V-5Lv1200mX5jPNINbb_xpLVv_uu1dbPz1IvLIWmvSG_24iJLOqvvE17nas7O5bmukpgm0tnoBjzk2YZXbGLv9S86cpXLTqOQyFfruImxbqsQOyMjakz01NyO8bEhAsVN0owCxISvJY4BEmIFMFOEQUihyrSN11SYxaKM-3eaLHOKwO6G0cE1XetuARIEN2ybY5bfRC9D4kgToST8WR4gwps_3wkhHgzfn9_XLv0ng&h=qPMVPx6SUTnX8E3mWCJKAY35w7rtBZqwAMO6_OLanVo pragma: - no-cache strict-transport-security: @@ -2073,13 +2180,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=12f8ea5c-1212-449e-b31c-0a574f43076e/eastus2euap/f1a3071f-4285-4b61-917a-4a13c92006a4 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=352782de-cadf-4f14-ad97-08cd2617ef55/eastus2euap/1d606326-ea60-4df5-bce9-c29f79c18cd2 x-ms-ratelimit-remaining-subscription-resource-requests: - '799' x-ms-throttling-version: - v1 x-msedge-ref: - - 'Ref A: C10477F91D2C4EDE83EEC983F736E006 Ref B: JKT201051407036 Ref C: 2025-10-27T13:55:47Z' + - 'Ref A: 02333054AD3A4F23ABA72EE8EFA04446 Ref B: PNQ231110908060 Ref C: 2026-07-21T05:16:46Z' status: code: 202 message: Accepted @@ -2097,13 +2204,13 @@ interactions: ParameterSetName: - -g -n --classic-alerts --job-failure-alerts User-Agent: - - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.11.9 (Windows-10-10.0.26200-SP0) + - AZURECLI/2.88.0 azsdk-python-core/1.39.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationStatus/NDA5NTswYWIwYzhlMi1iMmNhLTQ4ZTAtYmNiMi01MmNjZWI2ODY0NzM=?api-version=2025-08-01&t=638971701483430776&c=MIIIpDCCBoygAwIBAgITFgIdx-8P5Q2flkVe0wABAh3H7zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUxMDIwMTM0ODIxWhcNMjYwMTE4MTM0ODIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALJsx40wbBQQVymBKxEYB3QsXs7DWrmkLk1cvGC9Oh6ZUsiS6z4fZ9KUiL7u4Cb1R-5gfYTplSDkCfn9Y776fzY9tgxKTFF2KMooWQSUUNfMYuwrWFbbHGDx79k-SN6J44MhkxgVnvirjK5cOgtR1YwGjnk0x5Ea3-szYPplTQi12yBEDft-JR3YCKn54jq1stV1W2hRp_2g1BQImqyuswXZKY2DD-s3bQClN3clms4KDqdtTyXsWYLLd1wyrriHRsQnNbYpC1EqjwDyNGLTXHMVXKbeUefj5AwkYLnb77HgLc0IW7nFQwaOLB01n0OsHuhWZeUiilCDsiV76B_8MF0CAwEAAaOCBJEwggSNMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAdoGCCsGAQUFBwEBBIIBzDCCAcgwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDEuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDQuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwHQYDVR0OBBYEFBIs_XIgrlYGjVV6tC88QEhsK39fMA4GA1UdDwEB_wQEAwIFoDCCATUGA1UdHwSCASwwggEoMIIBJKCCASCgggEchkJodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMB8GA1UdIwQYMBaAFEijrWB1am_sYPNpVdEAsTJX_GzkMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAgEAoWGeh2L-xOp4WFwNcK7-42nE8XWzyiVfNq-en8umv6B7FIlZBqRTSHucIlGoZqT7uEkuOIkyfwKUKMHeX3kte0w5f4gSgSX-JsexZj509BqurtDEgPbEjh9zUpbDAM7sODNvfiZ0HVF6sREKDyDIRGhYl_C7qO6FPNUH0wiEMRNI92WewkvN5kxHFBO56OS26He5ElMpeDPNifRXSj2RrthZNiLhtVNqOXCXV8HvAO-8PBPQGpetO260pqROBjblZfst9LCba3YKdZ8o2ojOeG5_ANB5mSX3bsBsY2ULkbRKgNBi5AXJ7q0-n01yM6-uiSvZ8wrkHLfDJ6KlzSDTLJpoVa8AUeZoPEhJgyQInNCPK5nFOD-F1QNRwQj-B-s7y16iUVZiLZ3hkxODdrbMjfPRL2P3DYn1cg-jZVq0xDX1aSlRyQq6qi9xZ9RfBPeOrsZ3SHGm0XIJdlqtaYt0Evo6fWKiFXuJ-H6nf5Qy8sLTk2q160CH2IgsW5_tA0n0ySGt5n-9j610wwPdH6ImEQ1jli9U8Ur82WjB7qQhpmYPuHOyytAGttfk1271zkw5TOpkzJfGWvT5zYv436XCj6pouSk2GJmG1iR-9pO4kPK1LWp3ujV-IXZjP_-xg0wwwsvc0BDJJZZk4tElY91ySFzLXlN8QfTH67VHl7D8ILg&s=Ew-gSFJm8yuSUDBLbFJ0XG1WJzPvuD59SCZRrNlv5VUoP3KVy4PRzmgtNDN0DCzJONrwepUz_RKvQWn0HPjPkT6RasqqJvpWrE9gttHF6QAZA9tKQoubZBlwEqlNN8-038wlIlYeea4xy3Zgol8E9VLgoqTl7VcUY4cmkATXA8aIOZfJ6jkhCxWe12n3mwDO42lvQQrFWDtJfEwLL4l5ZySY8tBR1zfGA3su9AbnPuNUSv-LG3hhzdi8jKFtzQwjXsWIJLPOokq48e6XC6zIpKEM8aH1D5H7IJJbPdCxBgiNIwr7U9BQ_az2qzaMsKypugXHJ8FJcAkJ925GoGit5A&h=lpsk9eB3vtZKOmbjoqdlglSfQQJj8Ky56R6-_Hz8FjU + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationStatus/NDA5NTs5YTZhYTg4NS02ZmNmLTQ5NWItYjI2OC0yMDc2YjU5ZWU4ZjM=?api-version=2026-05-01&t=639202078072189060&c=MIIH9TCCBt2gAwIBAgIRAKnTo6mKeliSYj1GLETof4IwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVUyQyBDQSAwMTAeFw0yNjA3MDIxNTU4NDNaFw0yNjA5MjcyMTU4NDNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAlDQMyX5eVlNoyHQy97t41xstx7ISW3Jpt0fmktBr-SytLFjS2PEwnW3DFpc-bQgfDfHkKP0_FRLvm_mazEvS5KYzyX6nFjGqQTX3SfneJV5jo7nOwYnQHFTbkg0Dngz7AipTBy6yAiQqKMhRo_D-N4o3stwmKHeA0tAiEOx4G_PiAZBVgwqD_hS-porAKnsf-m7-vYsa-g9Cw0SQ2t7YIFgfqGifFcAH79L7QF5n4-toqH20MDZrR10dXpjNK50DvRiltXMo7xC198sVfC6ISY8hDbiFDpsKgL_lz-pJ2kyYJNyq1NUfS79AS70Bkl13eaOYbl8go_Oo41Ma5ArEgQIDAQABo4IE8jCCBO4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7Mv1WvWn7sAfft9pF9lwNBkNam0wHwYDVR0jBBgwFoAUz1EBqulDLGR2G0rwqsDykvhPw7swggHiBgNVHR8EggHZMIIB1TB1oHOgcYZvaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHegdaBzhnFodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyZXVhcC9jcmxzL2NjbWVlYXN0dXMyZXVhcHBraS9jY21lZWFzdHVzMmV1YXBpY2EwMS82NS9jdXJyZW50LmNybDBmoGSgYoZgaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHugeaB3hnVodHRwOi8vY2NtZWVhc3R1czJldWFwcGtpLmVhc3R1czJldWFwLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJldWFwaWNhMDEvNjUvY3VycmVudC5jcmwwggHnBggrBgEFBQcBAQSCAdkwggHVMHgGCCsGAQUFBzAChmxodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwegYIKwYBBQUHMAKGbmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NhY2VydHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxL2NlcnQuY2VyMGkGCCsGAQUFBzAChl1odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwcgYIKwYBBQUHMAKGZmh0dHA6Ly9jY21lZWFzdHVzMmV1YXBwa2kuZWFzdHVzMmV1YXAucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmV1YXBpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAndPCPc-CmjHOQpHPVSFI4dsJ3mAAA9L0QPDWwmXXvm66R08WToYQA9QCpkqxZEzl69AhSTR5x65hpeRv8xhwwj57QIuBD6rfMRghZH83T4x3bdOI4KmhFi_uY_52-cou5_xf0DyGAI_C77U5rC8TmVil8EsUCojV8rWkZXUBQSKZMaC1gzmzWW3pgKG9zwbD6J1M_7PW6f_zhE9KvGfBrLALoabdK0H_in5p3CyRMQee9pXSpsictb8cyfBIRU1fRSNmLnOjVSlF_Ll20gYIhnHvetGUxWU0EE9gWSJVUtwbqJjCeDouKPwe2UYUosoETTC7iluHZc0PV9EMfunH2w&s=IaS1XXaWQCeQHQUEenpXFassHiVIb1s473qqRP1qsEsfBapbGVxaDMYexGy5gl6d7GT58Lrr4BDuC75nsWwlv-ng0b60ZtGShbwYnttuwH1NgUax3WUvhnc5c0_PYpMy5IyXYLLgduCqS7Rm0mNDQC0nZfV2sSace1rAFX1QE7dwBUDi5QHA76DJcu1NSHKbbsPeP8h_OXvKcoSXmQyHibXjmrhb_3LRTaqDC3aC7UvptAqfbdGsUElvTkzZVlfkemYvjGpwFnfMU0STqn4wzKUeFt8T9vSSyJ8SoiWw_zLsucmhzoZ-mcCHRH4J0fpN29suYawOtJzcN1zxllh1uA&h=ccEndPZtRUIXrICb42yN0OOcwq8Q5af85EgSwk19aVY response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationStatus/NDA5NTswYWIwYzhlMi1iMmNhLTQ4ZTAtYmNiMi01MmNjZWI2ODY0NzM=\",\r\n - \ \"name\": \"NDA5NTswYWIwYzhlMi1iMmNhLTQ4ZTAtYmNiMi01MmNjZWI2ODY0NzM=\",\r\n + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationStatus/NDA5NTs5YTZhYTg4NS02ZmNmLTQ5NWItYjI2OC0yMDc2YjU5ZWU4ZjM=\",\r\n + \ \"name\": \"NDA5NTs5YTZhYTg4NS02ZmNmLTQ5NWItYjI2OC0yMDc2YjU5ZWU4ZjM=\",\r\n \ \"status\": \"Succeeded\"\r\n}" headers: cache-control: @@ -2113,7 +2220,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 27 Oct 2025 13:55:49 GMT + - Tue, 21 Jul 2026 05:16:47 GMT expires: - '-1' pragma: @@ -2125,11 +2232,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=12f8ea5c-1212-449e-b31c-0a574f43076e/eastus2euap/c78ee93d-7b29-4aa3-aeed-3e261916c3fa + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=352782de-cadf-4f14-ad97-08cd2617ef55/eastus2euap/cfbfaa6b-e361-4fe3-91a8-3ec02cc5b3e4 x-ms-throttling-version: - v2 x-msedge-ref: - - 'Ref A: 49C63804DCCE44EB911AF40A65FECDAA Ref B: JKT201051407052 Ref C: 2025-10-27T13:55:49Z' + - 'Ref A: 2BD594A1199E421FA89D1D073C0319F8 Ref B: PNQ231110908052 Ref C: 2026-07-21T05:16:47Z' status: code: 200 message: OK @@ -2147,21 +2254,21 @@ interactions: ParameterSetName: - -g -n --classic-alerts --job-failure-alerts User-Agent: - - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.11.9 (Windows-10-10.0.26200-SP0) + - AZURECLI/2.88.0 azsdk-python-core/1.39.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2025-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2026-05-01 response: body: - string: '{"location":"eastus2euap","name":"clitest-vault000002","etag":"W/\"datetime''2025-10-27T13%3A55%3A48.8804889Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","monitoringSettings":{"azureMonitorAlertSettings":{"alertsForAllJobFailures":"Disabled","alertsForAllReplicationIssues":"Enabled","alertsForAllFailoverIssues":"Enabled"},"classicAlertSettings":{"alertsForCriticalOperations":"Disabled","emailNotificationsForSiteRecovery":"Enabled"}},"backupStorageVersion":"Unassigned","securitySettings":{"softDeleteSettings":{"softDeleteRetentionPeriodInDays":14,"softDeleteState":"AlwaysON","enhancedSecurityState":"AlwaysON"},"multiUserAuthorization":"Disabled","sourceScanConfiguration":{"state":"Disabled"}},"redundancySettings":{"standardTierStorageRedundancy":"ZoneRedundant","crossRegionRestore":"Disabled"},"secureScore":"Adequate","bcdrSecurityLevel":"Good","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' + string: '{"location":"eastus2euap","name":"clitest-vault000002","etag":"W/\"datetime''2026-07-21T05%3A16%3A47.8658154Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","monitoringSettings":{"azureMonitorAlertSettings":{"alertsForAllJobFailures":"Disabled","alertsForAllReplicationIssues":"Enabled","alertsForAllFailoverIssues":"Enabled"},"classicAlertSettings":{"alertsForCriticalOperations":"Disabled","emailNotificationsForSiteRecovery":"Enabled"}},"costManagementSettings":{"granularityLevel":"VaultLevel"},"backupStorageVersion":"Unassigned","securitySettings":{"softDeleteSettings":{"softDeleteRetentionPeriodInDays":14,"softDeleteState":"AlwaysON","enhancedSecurityState":"AlwaysON"},"multiUserAuthorization":"Disabled","sourceScanConfiguration":{"state":"Disabled"}},"redundancySettings":{"standardTierStorageRedundancy":"ZoneRedundant","crossRegionRestore":"Disabled"},"secureScore":"Adequate","bcdrSecurityLevel":"Good","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' headers: cache-control: - no-cache content-length: - - '1313' + - '1372' content-type: - application/json; charset=utf-8 date: - - Mon, 27 Oct 2025 13:55:50 GMT + - Tue, 21 Jul 2026 05:16:48 GMT expires: - '-1' pragma: @@ -2175,7 +2282,7 @@ interactions: x-ms-throttling-version: - v2 x-msedge-ref: - - 'Ref A: BA99D0C7C7B14853A6E3177D7C8EFBEF Ref B: JKT201051407034 Ref C: 2025-10-27T13:55:51Z' + - 'Ref A: 03DAB5BF3BD94F218CF5423A4BFEE677 Ref B: PNQ231110908052 Ref C: 2026-07-21T05:16:48Z' status: code: 200 message: OK @@ -2193,21 +2300,21 @@ interactions: ParameterSetName: - -n -g --immutability-state --cross-subscription-restore-state User-Agent: - - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.11.9 (Windows-10-10.0.26200-SP0) + - AZURECLI/2.88.0 azsdk-python-core/1.39.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005?api-version=2025-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005?api-version=2026-05-01 response: body: - string: '{"location":"eastus2euap","name":"clitest-vault000005","etag":"W/\"datetime''2025-10-27T13%3A44%3A14.953657Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","monitoringSettings":{"azureMonitorAlertSettings":{"alertsForAllJobFailures":"Enabled","alertsForAllReplicationIssues":"Enabled","alertsForAllFailoverIssues":"Enabled"},"classicAlertSettings":{"alertsForCriticalOperations":"Enabled","emailNotificationsForSiteRecovery":"Enabled"}},"backupStorageVersion":"Unassigned","securitySettings":{"immutabilitySettings":{"state":"Unlocked"},"softDeleteSettings":{"softDeleteRetentionPeriodInDays":14,"softDeleteState":"AlwaysON","enhancedSecurityState":"AlwaysON"},"multiUserAuthorization":"Disabled","sourceScanConfiguration":{"state":"Disabled"}},"redundancySettings":{"standardTierStorageRedundancy":"GeoRedundant","crossRegionRestore":"Disabled"},"secureScore":"Adequate","bcdrSecurityLevel":"Good","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Disabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' + string: '{"location":"eastus2euap","name":"clitest-vault000005","etag":"W/\"datetime''2026-07-21T05%3A04%3A20.8823489Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","monitoringSettings":{"azureMonitorAlertSettings":{"alertsForAllJobFailures":"Enabled","alertsForAllReplicationIssues":"Enabled","alertsForAllFailoverIssues":"Enabled"},"classicAlertSettings":{"alertsForCriticalOperations":"Enabled","emailNotificationsForSiteRecovery":"Enabled"}},"costManagementSettings":{"granularityLevel":"VaultLevel"},"backupStorageVersion":"Unassigned","securitySettings":{"immutabilitySettings":{"state":"Unlocked","configuration":{"type":"AsPerPolicy"}},"softDeleteSettings":{"softDeleteRetentionPeriodInDays":14,"softDeleteState":"AlwaysON","enhancedSecurityState":"AlwaysON"},"multiUserAuthorization":"Disabled","sourceScanConfiguration":{"state":"Disabled"}},"redundancySettings":{"standardTierStorageRedundancy":"GeoRedundant","crossRegionRestore":"Disabled"},"secureScore":"Adequate","bcdrSecurityLevel":"Good","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Disabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' headers: cache-control: - no-cache content-length: - - '1354' + - '1453' content-type: - application/json; charset=utf-8 date: - - Mon, 27 Oct 2025 13:55:52 GMT + - Tue, 21 Jul 2026 05:16:49 GMT expires: - '-1' pragma: @@ -2221,7 +2328,7 @@ interactions: x-ms-throttling-version: - v2 x-msedge-ref: - - 'Ref A: 340EEDC116874C6EA383146CCA364889 Ref B: JKT201051407040 Ref C: 2025-10-27T13:55:52Z' + - 'Ref A: 9DFE6E36A501433DBC861612A106B651 Ref B: PNQ231110907023 Ref C: 2026-07-21T05:16:49Z' status: code: 200 message: OK @@ -2247,25 +2354,25 @@ interactions: ParameterSetName: - -n -g --immutability-state --cross-subscription-restore-state User-Agent: - - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.11.9 (Windows-10-10.0.26200-SP0) + - AZURECLI/2.88.0 azsdk-python-core/1.39.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005?api-version=2025-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005?api-version=2026-05-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005/operationStatus/NDA5NTs2NWM2Yjc3Mi02ODc2LTRjZTItOTIxZS05YzUyYTM5ZGU1YjI=?api-version=2025-08-01&t=638971701548141784&c=MIIIpDCCBoygAwIBAgITFgIdx-8P5Q2flkVe0wABAh3H7zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUxMDIwMTM0ODIxWhcNMjYwMTE4MTM0ODIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALJsx40wbBQQVymBKxEYB3QsXs7DWrmkLk1cvGC9Oh6ZUsiS6z4fZ9KUiL7u4Cb1R-5gfYTplSDkCfn9Y776fzY9tgxKTFF2KMooWQSUUNfMYuwrWFbbHGDx79k-SN6J44MhkxgVnvirjK5cOgtR1YwGjnk0x5Ea3-szYPplTQi12yBEDft-JR3YCKn54jq1stV1W2hRp_2g1BQImqyuswXZKY2DD-s3bQClN3clms4KDqdtTyXsWYLLd1wyrriHRsQnNbYpC1EqjwDyNGLTXHMVXKbeUefj5AwkYLnb77HgLc0IW7nFQwaOLB01n0OsHuhWZeUiilCDsiV76B_8MF0CAwEAAaOCBJEwggSNMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAdoGCCsGAQUFBwEBBIIBzDCCAcgwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDEuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDQuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwHQYDVR0OBBYEFBIs_XIgrlYGjVV6tC88QEhsK39fMA4GA1UdDwEB_wQEAwIFoDCCATUGA1UdHwSCASwwggEoMIIBJKCCASCgggEchkJodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMB8GA1UdIwQYMBaAFEijrWB1am_sYPNpVdEAsTJX_GzkMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAgEAoWGeh2L-xOp4WFwNcK7-42nE8XWzyiVfNq-en8umv6B7FIlZBqRTSHucIlGoZqT7uEkuOIkyfwKUKMHeX3kte0w5f4gSgSX-JsexZj509BqurtDEgPbEjh9zUpbDAM7sODNvfiZ0HVF6sREKDyDIRGhYl_C7qO6FPNUH0wiEMRNI92WewkvN5kxHFBO56OS26He5ElMpeDPNifRXSj2RrthZNiLhtVNqOXCXV8HvAO-8PBPQGpetO260pqROBjblZfst9LCba3YKdZ8o2ojOeG5_ANB5mSX3bsBsY2ULkbRKgNBi5AXJ7q0-n01yM6-uiSvZ8wrkHLfDJ6KlzSDTLJpoVa8AUeZoPEhJgyQInNCPK5nFOD-F1QNRwQj-B-s7y16iUVZiLZ3hkxODdrbMjfPRL2P3DYn1cg-jZVq0xDX1aSlRyQq6qi9xZ9RfBPeOrsZ3SHGm0XIJdlqtaYt0Evo6fWKiFXuJ-H6nf5Qy8sLTk2q160CH2IgsW5_tA0n0ySGt5n-9j610wwPdH6ImEQ1jli9U8Ur82WjB7qQhpmYPuHOyytAGttfk1271zkw5TOpkzJfGWvT5zYv436XCj6pouSk2GJmG1iR-9pO4kPK1LWp3ujV-IXZjP_-xg0wwwsvc0BDJJZZk4tElY91ySFzLXlN8QfTH67VHl7D8ILg&s=EtMDsqan_ySmlcBSOlvOfAE0PqPEDjuV8PHd7wxpC7PX2B0lH7GOYZA5spYXW4wOQS_WEwbka2qs5h5oAxdftE1n1b7vVqPTo3-OPTX4bqOfQC-hUDZYHNxbLKFotXMlQ3gCsi0yqWlawebHIl4cYzFID13SVEjcxzGegXImcP5y5Jj_yRyZkvxliedaS9yRa8KkPKf0-iwb4-HLFno1TEVAs72o9SDXtizOuGw7DMD8ZEWkb__1zHFhj9J0DlyFmqnsQIs7PDQN4KTAXgdlUS17xBGJTAQ-qV4ZTMiPfY8yyjc1Z0xBL7BYwVYRxcOU7ymMaCKa8je6BkJk6TMaTg&h=g9D4zf5H0u1zNbslNwb69snz3LOk0L4UpTecnxKo4N8 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005/operationStatus/NDA5NTs1YmIxMTk5Ni04ZDExLTQ4MTQtYmFjZi01ZThiYjA0MzliODU=?api-version=2026-05-01&t=639202078112251626&c=MIIH9TCCBt2gAwIBAgIRAKnTo6mKeliSYj1GLETof4IwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVUyQyBDQSAwMTAeFw0yNjA3MDIxNTU4NDNaFw0yNjA5MjcyMTU4NDNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAlDQMyX5eVlNoyHQy97t41xstx7ISW3Jpt0fmktBr-SytLFjS2PEwnW3DFpc-bQgfDfHkKP0_FRLvm_mazEvS5KYzyX6nFjGqQTX3SfneJV5jo7nOwYnQHFTbkg0Dngz7AipTBy6yAiQqKMhRo_D-N4o3stwmKHeA0tAiEOx4G_PiAZBVgwqD_hS-porAKnsf-m7-vYsa-g9Cw0SQ2t7YIFgfqGifFcAH79L7QF5n4-toqH20MDZrR10dXpjNK50DvRiltXMo7xC198sVfC6ISY8hDbiFDpsKgL_lz-pJ2kyYJNyq1NUfS79AS70Bkl13eaOYbl8go_Oo41Ma5ArEgQIDAQABo4IE8jCCBO4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7Mv1WvWn7sAfft9pF9lwNBkNam0wHwYDVR0jBBgwFoAUz1EBqulDLGR2G0rwqsDykvhPw7swggHiBgNVHR8EggHZMIIB1TB1oHOgcYZvaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHegdaBzhnFodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyZXVhcC9jcmxzL2NjbWVlYXN0dXMyZXVhcHBraS9jY21lZWFzdHVzMmV1YXBpY2EwMS82NS9jdXJyZW50LmNybDBmoGSgYoZgaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHugeaB3hnVodHRwOi8vY2NtZWVhc3R1czJldWFwcGtpLmVhc3R1czJldWFwLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJldWFwaWNhMDEvNjUvY3VycmVudC5jcmwwggHnBggrBgEFBQcBAQSCAdkwggHVMHgGCCsGAQUFBzAChmxodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwegYIKwYBBQUHMAKGbmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NhY2VydHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxL2NlcnQuY2VyMGkGCCsGAQUFBzAChl1odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwcgYIKwYBBQUHMAKGZmh0dHA6Ly9jY21lZWFzdHVzMmV1YXBwa2kuZWFzdHVzMmV1YXAucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmV1YXBpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAndPCPc-CmjHOQpHPVSFI4dsJ3mAAA9L0QPDWwmXXvm66R08WToYQA9QCpkqxZEzl69AhSTR5x65hpeRv8xhwwj57QIuBD6rfMRghZH83T4x3bdOI4KmhFi_uY_52-cou5_xf0DyGAI_C77U5rC8TmVil8EsUCojV8rWkZXUBQSKZMaC1gzmzWW3pgKG9zwbD6J1M_7PW6f_zhE9KvGfBrLALoabdK0H_in5p3CyRMQee9pXSpsictb8cyfBIRU1fRSNmLnOjVSlF_Ll20gYIhnHvetGUxWU0EE9gWSJVUtwbqJjCeDouKPwe2UYUosoETTC7iluHZc0PV9EMfunH2w&s=RPGNanZZylGF6pirMDYWi54Vhv2hXNOpCPDWTb2z-ancJcPzl7_oOf8IDPk-cIL3pnQEdF5AhxUNPd2I1bzfUpG_do17UWL0wEP2smT8dImaKKx3sNuaizF-KI7nEoRNxHSVxdjrUGCpYRXusJX66x0yWqu8QyUvUGRCs2TfC8jwsUBs7daAz19vwvQRMxBXWjHm2tI-ezBGYE3MqPVUTDiYdb7neFec5R2onG2g80OFP38nf5_t_eYpPbmU_BePKIQp43LzHlMs6e_a_2OYCwwbhdqqJxTo7yy4L4SOb5SuuJANqt3lgP6OHQvaWCfvDqdtFcsYA7MoowsKTXKz0Q&h=adj93B1r9o4vP6BcuXZUTCxpcT1La1wtX_9-17likic cache-control: - no-cache content-length: - '0' date: - - Mon, 27 Oct 2025 13:55:54 GMT + - Tue, 21 Jul 2026 05:16:51 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005/operationResults/NDA5NTs2NWM2Yjc3Mi02ODc2LTRjZTItOTIxZS05YzUyYTM5ZGU1YjI=?api-version=2025-08-01&t=638971701548298088&c=MIIIpDCCBoygAwIBAgITFgIdx-8P5Q2flkVe0wABAh3H7zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUxMDIwMTM0ODIxWhcNMjYwMTE4MTM0ODIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALJsx40wbBQQVymBKxEYB3QsXs7DWrmkLk1cvGC9Oh6ZUsiS6z4fZ9KUiL7u4Cb1R-5gfYTplSDkCfn9Y776fzY9tgxKTFF2KMooWQSUUNfMYuwrWFbbHGDx79k-SN6J44MhkxgVnvirjK5cOgtR1YwGjnk0x5Ea3-szYPplTQi12yBEDft-JR3YCKn54jq1stV1W2hRp_2g1BQImqyuswXZKY2DD-s3bQClN3clms4KDqdtTyXsWYLLd1wyrriHRsQnNbYpC1EqjwDyNGLTXHMVXKbeUefj5AwkYLnb77HgLc0IW7nFQwaOLB01n0OsHuhWZeUiilCDsiV76B_8MF0CAwEAAaOCBJEwggSNMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAdoGCCsGAQUFBwEBBIIBzDCCAcgwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDEuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDQuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwHQYDVR0OBBYEFBIs_XIgrlYGjVV6tC88QEhsK39fMA4GA1UdDwEB_wQEAwIFoDCCATUGA1UdHwSCASwwggEoMIIBJKCCASCgggEchkJodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMB8GA1UdIwQYMBaAFEijrWB1am_sYPNpVdEAsTJX_GzkMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAgEAoWGeh2L-xOp4WFwNcK7-42nE8XWzyiVfNq-en8umv6B7FIlZBqRTSHucIlGoZqT7uEkuOIkyfwKUKMHeX3kte0w5f4gSgSX-JsexZj509BqurtDEgPbEjh9zUpbDAM7sODNvfiZ0HVF6sREKDyDIRGhYl_C7qO6FPNUH0wiEMRNI92WewkvN5kxHFBO56OS26He5ElMpeDPNifRXSj2RrthZNiLhtVNqOXCXV8HvAO-8PBPQGpetO260pqROBjblZfst9LCba3YKdZ8o2ojOeG5_ANB5mSX3bsBsY2ULkbRKgNBi5AXJ7q0-n01yM6-uiSvZ8wrkHLfDJ6KlzSDTLJpoVa8AUeZoPEhJgyQInNCPK5nFOD-F1QNRwQj-B-s7y16iUVZiLZ3hkxODdrbMjfPRL2P3DYn1cg-jZVq0xDX1aSlRyQq6qi9xZ9RfBPeOrsZ3SHGm0XIJdlqtaYt0Evo6fWKiFXuJ-H6nf5Qy8sLTk2q160CH2IgsW5_tA0n0ySGt5n-9j610wwPdH6ImEQ1jli9U8Ur82WjB7qQhpmYPuHOyytAGttfk1271zkw5TOpkzJfGWvT5zYv436XCj6pouSk2GJmG1iR-9pO4kPK1LWp3ujV-IXZjP_-xg0wwwsvc0BDJJZZk4tElY91ySFzLXlN8QfTH67VHl7D8ILg&s=DeqeGlz-DMjoA8lVCA1hx84pUIKx_zk7LIoZyr16hJXJbpnnSdcHhQ3X-KvmgHlFX-uue6xoLXafaG7KpeTsseL1Yj90w_ABo3G5RX0kbD2yx6RFSA3P9uGUSHFDStNje93rJc9pP7DIRtpGsyIDTV8DA2jfO8jRyTgaoSgcYreLyjQICWoBrod0gLlRqv0f3-KfvjyyM0hIPbSU83y8Pf87Tcndr_OLahki8O59Tr7maquXuxUnjW-SF5mkQxdDk0va7JpeOhwrG0lVrAt6gYuw_xkIA72NpVpx15L6lG66Hd1EiHQ_Dij-xtaDFsT0yJiiVCgkawtSITI_r5q6JA&h=KKlCGWb3QaJB39IWwh_q4zEMiFTWpb9wv46Y4HSr0D8 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005/operationResults/NDA5NTs1YmIxMTk5Ni04ZDExLTQ4MTQtYmFjZi01ZThiYjA0MzliODU=?api-version=2026-05-01&t=639202078112251626&c=MIIH9TCCBt2gAwIBAgIRAKnTo6mKeliSYj1GLETof4IwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVUyQyBDQSAwMTAeFw0yNjA3MDIxNTU4NDNaFw0yNjA5MjcyMTU4NDNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAlDQMyX5eVlNoyHQy97t41xstx7ISW3Jpt0fmktBr-SytLFjS2PEwnW3DFpc-bQgfDfHkKP0_FRLvm_mazEvS5KYzyX6nFjGqQTX3SfneJV5jo7nOwYnQHFTbkg0Dngz7AipTBy6yAiQqKMhRo_D-N4o3stwmKHeA0tAiEOx4G_PiAZBVgwqD_hS-porAKnsf-m7-vYsa-g9Cw0SQ2t7YIFgfqGifFcAH79L7QF5n4-toqH20MDZrR10dXpjNK50DvRiltXMo7xC198sVfC6ISY8hDbiFDpsKgL_lz-pJ2kyYJNyq1NUfS79AS70Bkl13eaOYbl8go_Oo41Ma5ArEgQIDAQABo4IE8jCCBO4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7Mv1WvWn7sAfft9pF9lwNBkNam0wHwYDVR0jBBgwFoAUz1EBqulDLGR2G0rwqsDykvhPw7swggHiBgNVHR8EggHZMIIB1TB1oHOgcYZvaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHegdaBzhnFodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyZXVhcC9jcmxzL2NjbWVlYXN0dXMyZXVhcHBraS9jY21lZWFzdHVzMmV1YXBpY2EwMS82NS9jdXJyZW50LmNybDBmoGSgYoZgaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHugeaB3hnVodHRwOi8vY2NtZWVhc3R1czJldWFwcGtpLmVhc3R1czJldWFwLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJldWFwaWNhMDEvNjUvY3VycmVudC5jcmwwggHnBggrBgEFBQcBAQSCAdkwggHVMHgGCCsGAQUFBzAChmxodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwegYIKwYBBQUHMAKGbmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NhY2VydHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxL2NlcnQuY2VyMGkGCCsGAQUFBzAChl1odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwcgYIKwYBBQUHMAKGZmh0dHA6Ly9jY21lZWFzdHVzMmV1YXBwa2kuZWFzdHVzMmV1YXAucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmV1YXBpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAndPCPc-CmjHOQpHPVSFI4dsJ3mAAA9L0QPDWwmXXvm66R08WToYQA9QCpkqxZEzl69AhSTR5x65hpeRv8xhwwj57QIuBD6rfMRghZH83T4x3bdOI4KmhFi_uY_52-cou5_xf0DyGAI_C77U5rC8TmVil8EsUCojV8rWkZXUBQSKZMaC1gzmzWW3pgKG9zwbD6J1M_7PW6f_zhE9KvGfBrLALoabdK0H_in5p3CyRMQee9pXSpsictb8cyfBIRU1fRSNmLnOjVSlF_Ll20gYIhnHvetGUxWU0EE9gWSJVUtwbqJjCeDouKPwe2UYUosoETTC7iluHZc0PV9EMfunH2w&s=aYlobgQx-rp6hkUHnv77pJlHUV3JB2QzDkka-WekcY6RjkSAnxO9EshitK4GtPc-XHPd9S6j7L9bRTb7P9LIoKZVsKfLN4f_N-2qyvsL5TsLjwCmLgFZNSxCOjL1BP3KPsMCMM5ih8HJafyXc2e8HWScEQz_tZ-KPmtJeukl_m3srBPARZ229bu41UrG97AKrojdT1585hXsW1UE3C6ajfZonTNN8aP9VafE38G7V1HjCvxv6H7OPPXjr9YvLOpMRqSN-5HnF3omFJIQf4t_OGaiap9YIfX2tvbG4GzNKTJFLx-0i3p6uH1LmLyU1wCPmBj1jCnz4qgqLmZEoiZsLA&h=I6sZyHGyk_8qAvOmSt9mJyn21f8gNlZDmU1PyqjZioI pragma: - no-cache strict-transport-security: @@ -2275,13 +2382,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=12f8ea5c-1212-449e-b31c-0a574f43076e/eastus2euap/8095656f-d4b3-45aa-9fb8-bdc17b31c65d + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=352782de-cadf-4f14-ad97-08cd2617ef55/eastus2euap/0d90e7f2-a601-4b7d-a832-79b07c51d284 x-ms-ratelimit-remaining-subscription-resource-requests: - '799' x-ms-throttling-version: - v1 x-msedge-ref: - - 'Ref A: 28B3D75790384F7BA42076DF5EADE70E Ref B: JKT201051406036 Ref C: 2025-10-27T13:55:53Z' + - 'Ref A: DA12D279034348FA8D4116E65880A26E Ref B: PNQ231110907031 Ref C: 2026-07-21T05:16:50Z' status: code: 202 message: Accepted @@ -2299,17 +2406,17 @@ interactions: ParameterSetName: - -n -g --immutability-state --cross-subscription-restore-state User-Agent: - - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.11.9 (Windows-10-10.0.26200-SP0) + - AZURECLI/2.88.0 azsdk-python-core/1.39.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005/operationStatus/NDA5NTs2NWM2Yjc3Mi02ODc2LTRjZTItOTIxZS05YzUyYTM5ZGU1YjI=?api-version=2025-08-01&t=638971701548141784&c=MIIIpDCCBoygAwIBAgITFgIdx-8P5Q2flkVe0wABAh3H7zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUxMDIwMTM0ODIxWhcNMjYwMTE4MTM0ODIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALJsx40wbBQQVymBKxEYB3QsXs7DWrmkLk1cvGC9Oh6ZUsiS6z4fZ9KUiL7u4Cb1R-5gfYTplSDkCfn9Y776fzY9tgxKTFF2KMooWQSUUNfMYuwrWFbbHGDx79k-SN6J44MhkxgVnvirjK5cOgtR1YwGjnk0x5Ea3-szYPplTQi12yBEDft-JR3YCKn54jq1stV1W2hRp_2g1BQImqyuswXZKY2DD-s3bQClN3clms4KDqdtTyXsWYLLd1wyrriHRsQnNbYpC1EqjwDyNGLTXHMVXKbeUefj5AwkYLnb77HgLc0IW7nFQwaOLB01n0OsHuhWZeUiilCDsiV76B_8MF0CAwEAAaOCBJEwggSNMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAdoGCCsGAQUFBwEBBIIBzDCCAcgwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDEuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDQuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwHQYDVR0OBBYEFBIs_XIgrlYGjVV6tC88QEhsK39fMA4GA1UdDwEB_wQEAwIFoDCCATUGA1UdHwSCASwwggEoMIIBJKCCASCgggEchkJodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMB8GA1UdIwQYMBaAFEijrWB1am_sYPNpVdEAsTJX_GzkMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAgEAoWGeh2L-xOp4WFwNcK7-42nE8XWzyiVfNq-en8umv6B7FIlZBqRTSHucIlGoZqT7uEkuOIkyfwKUKMHeX3kte0w5f4gSgSX-JsexZj509BqurtDEgPbEjh9zUpbDAM7sODNvfiZ0HVF6sREKDyDIRGhYl_C7qO6FPNUH0wiEMRNI92WewkvN5kxHFBO56OS26He5ElMpeDPNifRXSj2RrthZNiLhtVNqOXCXV8HvAO-8PBPQGpetO260pqROBjblZfst9LCba3YKdZ8o2ojOeG5_ANB5mSX3bsBsY2ULkbRKgNBi5AXJ7q0-n01yM6-uiSvZ8wrkHLfDJ6KlzSDTLJpoVa8AUeZoPEhJgyQInNCPK5nFOD-F1QNRwQj-B-s7y16iUVZiLZ3hkxODdrbMjfPRL2P3DYn1cg-jZVq0xDX1aSlRyQq6qi9xZ9RfBPeOrsZ3SHGm0XIJdlqtaYt0Evo6fWKiFXuJ-H6nf5Qy8sLTk2q160CH2IgsW5_tA0n0ySGt5n-9j610wwPdH6ImEQ1jli9U8Ur82WjB7qQhpmYPuHOyytAGttfk1271zkw5TOpkzJfGWvT5zYv436XCj6pouSk2GJmG1iR-9pO4kPK1LWp3ujV-IXZjP_-xg0wwwsvc0BDJJZZk4tElY91ySFzLXlN8QfTH67VHl7D8ILg&s=EtMDsqan_ySmlcBSOlvOfAE0PqPEDjuV8PHd7wxpC7PX2B0lH7GOYZA5spYXW4wOQS_WEwbka2qs5h5oAxdftE1n1b7vVqPTo3-OPTX4bqOfQC-hUDZYHNxbLKFotXMlQ3gCsi0yqWlawebHIl4cYzFID13SVEjcxzGegXImcP5y5Jj_yRyZkvxliedaS9yRa8KkPKf0-iwb4-HLFno1TEVAs72o9SDXtizOuGw7DMD8ZEWkb__1zHFhj9J0DlyFmqnsQIs7PDQN4KTAXgdlUS17xBGJTAQ-qV4ZTMiPfY8yyjc1Z0xBL7BYwVYRxcOU7ymMaCKa8je6BkJk6TMaTg&h=g9D4zf5H0u1zNbslNwb69snz3LOk0L4UpTecnxKo4N8 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005/operationStatus/NDA5NTs1YmIxMTk5Ni04ZDExLTQ4MTQtYmFjZi01ZThiYjA0MzliODU=?api-version=2026-05-01&t=639202078112251626&c=MIIH9TCCBt2gAwIBAgIRAKnTo6mKeliSYj1GLETof4IwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVUyQyBDQSAwMTAeFw0yNjA3MDIxNTU4NDNaFw0yNjA5MjcyMTU4NDNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAlDQMyX5eVlNoyHQy97t41xstx7ISW3Jpt0fmktBr-SytLFjS2PEwnW3DFpc-bQgfDfHkKP0_FRLvm_mazEvS5KYzyX6nFjGqQTX3SfneJV5jo7nOwYnQHFTbkg0Dngz7AipTBy6yAiQqKMhRo_D-N4o3stwmKHeA0tAiEOx4G_PiAZBVgwqD_hS-porAKnsf-m7-vYsa-g9Cw0SQ2t7YIFgfqGifFcAH79L7QF5n4-toqH20MDZrR10dXpjNK50DvRiltXMo7xC198sVfC6ISY8hDbiFDpsKgL_lz-pJ2kyYJNyq1NUfS79AS70Bkl13eaOYbl8go_Oo41Ma5ArEgQIDAQABo4IE8jCCBO4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7Mv1WvWn7sAfft9pF9lwNBkNam0wHwYDVR0jBBgwFoAUz1EBqulDLGR2G0rwqsDykvhPw7swggHiBgNVHR8EggHZMIIB1TB1oHOgcYZvaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHegdaBzhnFodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyZXVhcC9jcmxzL2NjbWVlYXN0dXMyZXVhcHBraS9jY21lZWFzdHVzMmV1YXBpY2EwMS82NS9jdXJyZW50LmNybDBmoGSgYoZgaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHugeaB3hnVodHRwOi8vY2NtZWVhc3R1czJldWFwcGtpLmVhc3R1czJldWFwLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJldWFwaWNhMDEvNjUvY3VycmVudC5jcmwwggHnBggrBgEFBQcBAQSCAdkwggHVMHgGCCsGAQUFBzAChmxodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwegYIKwYBBQUHMAKGbmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NhY2VydHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxL2NlcnQuY2VyMGkGCCsGAQUFBzAChl1odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwcgYIKwYBBQUHMAKGZmh0dHA6Ly9jY21lZWFzdHVzMmV1YXBwa2kuZWFzdHVzMmV1YXAucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmV1YXBpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAndPCPc-CmjHOQpHPVSFI4dsJ3mAAA9L0QPDWwmXXvm66R08WToYQA9QCpkqxZEzl69AhSTR5x65hpeRv8xhwwj57QIuBD6rfMRghZH83T4x3bdOI4KmhFi_uY_52-cou5_xf0DyGAI_C77U5rC8TmVil8EsUCojV8rWkZXUBQSKZMaC1gzmzWW3pgKG9zwbD6J1M_7PW6f_zhE9KvGfBrLALoabdK0H_in5p3CyRMQee9pXSpsictb8cyfBIRU1fRSNmLnOjVSlF_Ll20gYIhnHvetGUxWU0EE9gWSJVUtwbqJjCeDouKPwe2UYUosoETTC7iluHZc0PV9EMfunH2w&s=RPGNanZZylGF6pirMDYWi54Vhv2hXNOpCPDWTb2z-ancJcPzl7_oOf8IDPk-cIL3pnQEdF5AhxUNPd2I1bzfUpG_do17UWL0wEP2smT8dImaKKx3sNuaizF-KI7nEoRNxHSVxdjrUGCpYRXusJX66x0yWqu8QyUvUGRCs2TfC8jwsUBs7daAz19vwvQRMxBXWjHm2tI-ezBGYE3MqPVUTDiYdb7neFec5R2onG2g80OFP38nf5_t_eYpPbmU_BePKIQp43LzHlMs6e_a_2OYCwwbhdqqJxTo7yy4L4SOb5SuuJANqt3lgP6OHQvaWCfvDqdtFcsYA7MoowsKTXKz0Q&h=adj93B1r9o4vP6BcuXZUTCxpcT1La1wtX_9-17likic response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005/operationStatus/NDA5NTs2NWM2Yjc3Mi02ODc2LTRjZTItOTIxZS05YzUyYTM5ZGU1YjI=\",\r\n - \ \"name\": \"NDA5NTs2NWM2Yjc3Mi02ODc2LTRjZTItOTIxZS05YzUyYTM5ZGU1YjI=\",\r\n + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005/operationStatus/NDA5NTs1YmIxMTk5Ni04ZDExLTQ4MTQtYmFjZi01ZThiYjA0MzliODU=\",\r\n + \ \"name\": \"NDA5NTs1YmIxMTk5Ni04ZDExLTQ4MTQtYmFjZi01ZThiYjA0MzliODU=\",\r\n \ \"status\": \"InProgress\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005/operationStatus/NDA5NTs2NWM2Yjc3Mi02ODc2LTRjZTItOTIxZS05YzUyYTM5ZGU1YjI=?api-version=2025-08-01&t=638971701569098356&c=MIIIpDCCBoygAwIBAgITFgIdx-8P5Q2flkVe0wABAh3H7zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUxMDIwMTM0ODIxWhcNMjYwMTE4MTM0ODIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALJsx40wbBQQVymBKxEYB3QsXs7DWrmkLk1cvGC9Oh6ZUsiS6z4fZ9KUiL7u4Cb1R-5gfYTplSDkCfn9Y776fzY9tgxKTFF2KMooWQSUUNfMYuwrWFbbHGDx79k-SN6J44MhkxgVnvirjK5cOgtR1YwGjnk0x5Ea3-szYPplTQi12yBEDft-JR3YCKn54jq1stV1W2hRp_2g1BQImqyuswXZKY2DD-s3bQClN3clms4KDqdtTyXsWYLLd1wyrriHRsQnNbYpC1EqjwDyNGLTXHMVXKbeUefj5AwkYLnb77HgLc0IW7nFQwaOLB01n0OsHuhWZeUiilCDsiV76B_8MF0CAwEAAaOCBJEwggSNMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAdoGCCsGAQUFBwEBBIIBzDCCAcgwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDEuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDQuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwHQYDVR0OBBYEFBIs_XIgrlYGjVV6tC88QEhsK39fMA4GA1UdDwEB_wQEAwIFoDCCATUGA1UdHwSCASwwggEoMIIBJKCCASCgggEchkJodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMB8GA1UdIwQYMBaAFEijrWB1am_sYPNpVdEAsTJX_GzkMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAgEAoWGeh2L-xOp4WFwNcK7-42nE8XWzyiVfNq-en8umv6B7FIlZBqRTSHucIlGoZqT7uEkuOIkyfwKUKMHeX3kte0w5f4gSgSX-JsexZj509BqurtDEgPbEjh9zUpbDAM7sODNvfiZ0HVF6sREKDyDIRGhYl_C7qO6FPNUH0wiEMRNI92WewkvN5kxHFBO56OS26He5ElMpeDPNifRXSj2RrthZNiLhtVNqOXCXV8HvAO-8PBPQGpetO260pqROBjblZfst9LCba3YKdZ8o2ojOeG5_ANB5mSX3bsBsY2ULkbRKgNBi5AXJ7q0-n01yM6-uiSvZ8wrkHLfDJ6KlzSDTLJpoVa8AUeZoPEhJgyQInNCPK5nFOD-F1QNRwQj-B-s7y16iUVZiLZ3hkxODdrbMjfPRL2P3DYn1cg-jZVq0xDX1aSlRyQq6qi9xZ9RfBPeOrsZ3SHGm0XIJdlqtaYt0Evo6fWKiFXuJ-H6nf5Qy8sLTk2q160CH2IgsW5_tA0n0ySGt5n-9j610wwPdH6ImEQ1jli9U8Ur82WjB7qQhpmYPuHOyytAGttfk1271zkw5TOpkzJfGWvT5zYv436XCj6pouSk2GJmG1iR-9pO4kPK1LWp3ujV-IXZjP_-xg0wwwsvc0BDJJZZk4tElY91ySFzLXlN8QfTH67VHl7D8ILg&s=XaPLJSxuJU6_09UZP-XBqgACT3GYzupo8VjEGtfjL9V1ivLmr8O5oL1Z_C4PA038iNuOm45k38b7CXtws2Uia_n-4zohUbQqnx4Mb7smlCJpTyTfSKDQUJ3AFMoxtTtz1ay_amPb8py8NOK_59sOAD6gwuSZJTOOFg43HPz1IhuyWbz43cjBNlu6-CzDSB1ARTwhUDGBa1kl3ZW6B-AN2iyzwIEgWB4UIi8zDNNLnLUg_iuzuIUfWSceRVRFnUjzEJY0iXvebMyMIB_QxEonEnZ_raX0OQrpG3XAVrgMyFSxmpaZcE7tM_Ie_Z4lnWKJwVKp_FMYx6ZRuUpvnz9okQ&h=sAHtsHhc4p0Ee6w9u0pARwPPPAgFW8bv2EnamrZ3rQU + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005/operationStatus/NDA5NTs1YmIxMTk5Ni04ZDExLTQ4MTQtYmFjZi01ZThiYjA0MzliODU=?api-version=2026-05-01&t=639202078124854837&c=MIIH9TCCBt2gAwIBAgIRAKnTo6mKeliSYj1GLETof4IwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVUyQyBDQSAwMTAeFw0yNjA3MDIxNTU4NDNaFw0yNjA5MjcyMTU4NDNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAlDQMyX5eVlNoyHQy97t41xstx7ISW3Jpt0fmktBr-SytLFjS2PEwnW3DFpc-bQgfDfHkKP0_FRLvm_mazEvS5KYzyX6nFjGqQTX3SfneJV5jo7nOwYnQHFTbkg0Dngz7AipTBy6yAiQqKMhRo_D-N4o3stwmKHeA0tAiEOx4G_PiAZBVgwqD_hS-porAKnsf-m7-vYsa-g9Cw0SQ2t7YIFgfqGifFcAH79L7QF5n4-toqH20MDZrR10dXpjNK50DvRiltXMo7xC198sVfC6ISY8hDbiFDpsKgL_lz-pJ2kyYJNyq1NUfS79AS70Bkl13eaOYbl8go_Oo41Ma5ArEgQIDAQABo4IE8jCCBO4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7Mv1WvWn7sAfft9pF9lwNBkNam0wHwYDVR0jBBgwFoAUz1EBqulDLGR2G0rwqsDykvhPw7swggHiBgNVHR8EggHZMIIB1TB1oHOgcYZvaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHegdaBzhnFodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyZXVhcC9jcmxzL2NjbWVlYXN0dXMyZXVhcHBraS9jY21lZWFzdHVzMmV1YXBpY2EwMS82NS9jdXJyZW50LmNybDBmoGSgYoZgaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHugeaB3hnVodHRwOi8vY2NtZWVhc3R1czJldWFwcGtpLmVhc3R1czJldWFwLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJldWFwaWNhMDEvNjUvY3VycmVudC5jcmwwggHnBggrBgEFBQcBAQSCAdkwggHVMHgGCCsGAQUFBzAChmxodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwegYIKwYBBQUHMAKGbmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NhY2VydHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxL2NlcnQuY2VyMGkGCCsGAQUFBzAChl1odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwcgYIKwYBBQUHMAKGZmh0dHA6Ly9jY21lZWFzdHVzMmV1YXBwa2kuZWFzdHVzMmV1YXAucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmV1YXBpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAndPCPc-CmjHOQpHPVSFI4dsJ3mAAA9L0QPDWwmXXvm66R08WToYQA9QCpkqxZEzl69AhSTR5x65hpeRv8xhwwj57QIuBD6rfMRghZH83T4x3bdOI4KmhFi_uY_52-cou5_xf0DyGAI_C77U5rC8TmVil8EsUCojV8rWkZXUBQSKZMaC1gzmzWW3pgKG9zwbD6J1M_7PW6f_zhE9KvGfBrLALoabdK0H_in5p3CyRMQee9pXSpsictb8cyfBIRU1fRSNmLnOjVSlF_Ll20gYIhnHvetGUxWU0EE9gWSJVUtwbqJjCeDouKPwe2UYUosoETTC7iluHZc0PV9EMfunH2w&s=iWR9R_OEvORyqNev_bOOjluOb_AErAzckZ_SFeFQex0iGA6OUhYWgBhI3PWbELjd5KTj8tHVMIkORExbyfjZq5z2GQq_TdWfk2iYCojFntoqyUgUqtUWMWSSMrfZDqzQnNTTBni3b0WZD1wd5kxYOerTMXmzG6SayQM3pZchRWXvUYb0g5E8prwP8KSrhuKw50CkusW0FFe6mUjD-BgvSs5SYMYNbD1T5A5Lv3xX0gG18-4-9RQDQJkba4SRd5nJvtySQsQQbExIydaLvX9HjCzxSUX9nMtcngRXLgsnVBQ5lq3yg1PUSJtOCans-O7b4kDqDVMsI4qhPDzZUlGAPg&h=qkOOamiTjnhG8pXaNXrn1vqC3_nt6hGwlI4LIfFWHBg cache-control: - no-cache content-length: @@ -2317,11 +2424,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 27 Oct 2025 13:55:56 GMT + - Tue, 21 Jul 2026 05:16:52 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005/operationResults/NDA5NTs2NWM2Yjc3Mi02ODc2LTRjZTItOTIxZS05YzUyYTM5ZGU1YjI=?api-version=2025-08-01&t=638971701569254575&c=MIIIpDCCBoygAwIBAgITFgIdx-8P5Q2flkVe0wABAh3H7zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUxMDIwMTM0ODIxWhcNMjYwMTE4MTM0ODIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALJsx40wbBQQVymBKxEYB3QsXs7DWrmkLk1cvGC9Oh6ZUsiS6z4fZ9KUiL7u4Cb1R-5gfYTplSDkCfn9Y776fzY9tgxKTFF2KMooWQSUUNfMYuwrWFbbHGDx79k-SN6J44MhkxgVnvirjK5cOgtR1YwGjnk0x5Ea3-szYPplTQi12yBEDft-JR3YCKn54jq1stV1W2hRp_2g1BQImqyuswXZKY2DD-s3bQClN3clms4KDqdtTyXsWYLLd1wyrriHRsQnNbYpC1EqjwDyNGLTXHMVXKbeUefj5AwkYLnb77HgLc0IW7nFQwaOLB01n0OsHuhWZeUiilCDsiV76B_8MF0CAwEAAaOCBJEwggSNMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAdoGCCsGAQUFBwEBBIIBzDCCAcgwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDEuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDQuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwHQYDVR0OBBYEFBIs_XIgrlYGjVV6tC88QEhsK39fMA4GA1UdDwEB_wQEAwIFoDCCATUGA1UdHwSCASwwggEoMIIBJKCCASCgggEchkJodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMB8GA1UdIwQYMBaAFEijrWB1am_sYPNpVdEAsTJX_GzkMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAgEAoWGeh2L-xOp4WFwNcK7-42nE8XWzyiVfNq-en8umv6B7FIlZBqRTSHucIlGoZqT7uEkuOIkyfwKUKMHeX3kte0w5f4gSgSX-JsexZj509BqurtDEgPbEjh9zUpbDAM7sODNvfiZ0HVF6sREKDyDIRGhYl_C7qO6FPNUH0wiEMRNI92WewkvN5kxHFBO56OS26He5ElMpeDPNifRXSj2RrthZNiLhtVNqOXCXV8HvAO-8PBPQGpetO260pqROBjblZfst9LCba3YKdZ8o2ojOeG5_ANB5mSX3bsBsY2ULkbRKgNBi5AXJ7q0-n01yM6-uiSvZ8wrkHLfDJ6KlzSDTLJpoVa8AUeZoPEhJgyQInNCPK5nFOD-F1QNRwQj-B-s7y16iUVZiLZ3hkxODdrbMjfPRL2P3DYn1cg-jZVq0xDX1aSlRyQq6qi9xZ9RfBPeOrsZ3SHGm0XIJdlqtaYt0Evo6fWKiFXuJ-H6nf5Qy8sLTk2q160CH2IgsW5_tA0n0ySGt5n-9j610wwPdH6ImEQ1jli9U8Ur82WjB7qQhpmYPuHOyytAGttfk1271zkw5TOpkzJfGWvT5zYv436XCj6pouSk2GJmG1iR-9pO4kPK1LWp3ujV-IXZjP_-xg0wwwsvc0BDJJZZk4tElY91ySFzLXlN8QfTH67VHl7D8ILg&s=iKP2JiVDmDgvUMEeFT-IVDooF2S1n9zc9TO7Gud3Y5Hww62g33ptUTlQx-6CR41THLDgD6iLn9no0_l14_j7pNmJrSwtIzkzDj695eEj5trIAvxkgnl9CYRJpvcxeEbPhyLQm7ZulRuBGKWZuy7TyjMUQNL8wMBUYAlSLGTlkcy_L-yxyfpfSOLjgx_Yl7dcaUn-GTaQPtzY9w9_mAAEjD_GQ4b24kuA1J1COtf3-CVGo6MQh60-baS5bANLTxdeHzTmId5m1SACra6yJ6jbkbnWC4k1z6d8Yi2bZAAHhbiLMq35m6VzOMgF8xey2OywPPhiN9zRx6EXIkJ4V547qQ&h=vGCvRp1jAT8-AOOgWVaJYGa8iSXCmpD8gx2pFkVjolA + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005/operationResults/NDA5NTs1YmIxMTk5Ni04ZDExLTQ4MTQtYmFjZi01ZThiYjA0MzliODU=?api-version=2026-05-01&t=639202078124854837&c=MIIH9TCCBt2gAwIBAgIRAKnTo6mKeliSYj1GLETof4IwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVUyQyBDQSAwMTAeFw0yNjA3MDIxNTU4NDNaFw0yNjA5MjcyMTU4NDNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAlDQMyX5eVlNoyHQy97t41xstx7ISW3Jpt0fmktBr-SytLFjS2PEwnW3DFpc-bQgfDfHkKP0_FRLvm_mazEvS5KYzyX6nFjGqQTX3SfneJV5jo7nOwYnQHFTbkg0Dngz7AipTBy6yAiQqKMhRo_D-N4o3stwmKHeA0tAiEOx4G_PiAZBVgwqD_hS-porAKnsf-m7-vYsa-g9Cw0SQ2t7YIFgfqGifFcAH79L7QF5n4-toqH20MDZrR10dXpjNK50DvRiltXMo7xC198sVfC6ISY8hDbiFDpsKgL_lz-pJ2kyYJNyq1NUfS79AS70Bkl13eaOYbl8go_Oo41Ma5ArEgQIDAQABo4IE8jCCBO4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7Mv1WvWn7sAfft9pF9lwNBkNam0wHwYDVR0jBBgwFoAUz1EBqulDLGR2G0rwqsDykvhPw7swggHiBgNVHR8EggHZMIIB1TB1oHOgcYZvaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHegdaBzhnFodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyZXVhcC9jcmxzL2NjbWVlYXN0dXMyZXVhcHBraS9jY21lZWFzdHVzMmV1YXBpY2EwMS82NS9jdXJyZW50LmNybDBmoGSgYoZgaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHugeaB3hnVodHRwOi8vY2NtZWVhc3R1czJldWFwcGtpLmVhc3R1czJldWFwLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJldWFwaWNhMDEvNjUvY3VycmVudC5jcmwwggHnBggrBgEFBQcBAQSCAdkwggHVMHgGCCsGAQUFBzAChmxodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwegYIKwYBBQUHMAKGbmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NhY2VydHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxL2NlcnQuY2VyMGkGCCsGAQUFBzAChl1odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwcgYIKwYBBQUHMAKGZmh0dHA6Ly9jY21lZWFzdHVzMmV1YXBwa2kuZWFzdHVzMmV1YXAucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmV1YXBpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAndPCPc-CmjHOQpHPVSFI4dsJ3mAAA9L0QPDWwmXXvm66R08WToYQA9QCpkqxZEzl69AhSTR5x65hpeRv8xhwwj57QIuBD6rfMRghZH83T4x3bdOI4KmhFi_uY_52-cou5_xf0DyGAI_C77U5rC8TmVil8EsUCojV8rWkZXUBQSKZMaC1gzmzWW3pgKG9zwbD6J1M_7PW6f_zhE9KvGfBrLALoabdK0H_in5p3CyRMQee9pXSpsictb8cyfBIRU1fRSNmLnOjVSlF_Ll20gYIhnHvetGUxWU0EE9gWSJVUtwbqJjCeDouKPwe2UYUosoETTC7iluHZc0PV9EMfunH2w&s=QaCtIzBLowlp1LsxKaN99IyerasyoH462BEYKP7gXSwPc0BupPXAgKiGOSJNYYLVNIlIwOypsgBB4YJdPdrVjnLp5lYJ3yCw31wgGbrTtw6wTaQfWqOx2aOsr0DZOvsUeoO39OibkvrnVNnKMDqX7iXWEQ_KzTKq6yZ7bzTgw8Zu-Dt3qJDBSpkJJYWakTdBe1Jf97qLT6C3cavepS5GT26ZOfFvmfvOypVtwZvtf04H0D0dCy9npCmdjymO8GDWR0o99ObzmzO1gY-dIfIgjOf1PrGjU23_hK7b3LQhjglcSRsC2NiL8QRnLQ6GhfLsd0YxJzwLdXZfRlhCPJz_Ww&h=oOCyg_hIljW66n19S8hIR-K4WrteXM700sw8XOgZunE pragma: - no-cache strict-transport-security: @@ -2331,11 +2438,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=12f8ea5c-1212-449e-b31c-0a574f43076e/eastus2euap/99a43097-832f-4624-a2a3-4c2de407f924 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=352782de-cadf-4f14-ad97-08cd2617ef55/eastus2euap/d0741d16-c1a5-4a6e-aee0-9cccfcdcf9ba x-ms-throttling-version: - v2 x-msedge-ref: - - 'Ref A: 08ADF0EF589043B0A3D608C8F8AEE235 Ref B: JKT201051406054 Ref C: 2025-10-27T13:55:56Z' + - 'Ref A: BFD50225013B40CEA28297D09136B06F Ref B: PNQ231110906025 Ref C: 2026-07-21T05:16:51Z' status: code: 200 message: OK @@ -2353,13 +2460,13 @@ interactions: ParameterSetName: - -n -g --immutability-state --cross-subscription-restore-state User-Agent: - - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.11.9 (Windows-10-10.0.26200-SP0) + - AZURECLI/2.88.0 azsdk-python-core/1.39.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005/operationStatus/NDA5NTs2NWM2Yjc3Mi02ODc2LTRjZTItOTIxZS05YzUyYTM5ZGU1YjI=?api-version=2025-08-01&t=638971701548141784&c=MIIIpDCCBoygAwIBAgITFgIdx-8P5Q2flkVe0wABAh3H7zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUxMDIwMTM0ODIxWhcNMjYwMTE4MTM0ODIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALJsx40wbBQQVymBKxEYB3QsXs7DWrmkLk1cvGC9Oh6ZUsiS6z4fZ9KUiL7u4Cb1R-5gfYTplSDkCfn9Y776fzY9tgxKTFF2KMooWQSUUNfMYuwrWFbbHGDx79k-SN6J44MhkxgVnvirjK5cOgtR1YwGjnk0x5Ea3-szYPplTQi12yBEDft-JR3YCKn54jq1stV1W2hRp_2g1BQImqyuswXZKY2DD-s3bQClN3clms4KDqdtTyXsWYLLd1wyrriHRsQnNbYpC1EqjwDyNGLTXHMVXKbeUefj5AwkYLnb77HgLc0IW7nFQwaOLB01n0OsHuhWZeUiilCDsiV76B_8MF0CAwEAAaOCBJEwggSNMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAdoGCCsGAQUFBwEBBIIBzDCCAcgwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDEuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDQuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwHQYDVR0OBBYEFBIs_XIgrlYGjVV6tC88QEhsK39fMA4GA1UdDwEB_wQEAwIFoDCCATUGA1UdHwSCASwwggEoMIIBJKCCASCgggEchkJodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMB8GA1UdIwQYMBaAFEijrWB1am_sYPNpVdEAsTJX_GzkMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAgEAoWGeh2L-xOp4WFwNcK7-42nE8XWzyiVfNq-en8umv6B7FIlZBqRTSHucIlGoZqT7uEkuOIkyfwKUKMHeX3kte0w5f4gSgSX-JsexZj509BqurtDEgPbEjh9zUpbDAM7sODNvfiZ0HVF6sREKDyDIRGhYl_C7qO6FPNUH0wiEMRNI92WewkvN5kxHFBO56OS26He5ElMpeDPNifRXSj2RrthZNiLhtVNqOXCXV8HvAO-8PBPQGpetO260pqROBjblZfst9LCba3YKdZ8o2ojOeG5_ANB5mSX3bsBsY2ULkbRKgNBi5AXJ7q0-n01yM6-uiSvZ8wrkHLfDJ6KlzSDTLJpoVa8AUeZoPEhJgyQInNCPK5nFOD-F1QNRwQj-B-s7y16iUVZiLZ3hkxODdrbMjfPRL2P3DYn1cg-jZVq0xDX1aSlRyQq6qi9xZ9RfBPeOrsZ3SHGm0XIJdlqtaYt0Evo6fWKiFXuJ-H6nf5Qy8sLTk2q160CH2IgsW5_tA0n0ySGt5n-9j610wwPdH6ImEQ1jli9U8Ur82WjB7qQhpmYPuHOyytAGttfk1271zkw5TOpkzJfGWvT5zYv436XCj6pouSk2GJmG1iR-9pO4kPK1LWp3ujV-IXZjP_-xg0wwwsvc0BDJJZZk4tElY91ySFzLXlN8QfTH67VHl7D8ILg&s=EtMDsqan_ySmlcBSOlvOfAE0PqPEDjuV8PHd7wxpC7PX2B0lH7GOYZA5spYXW4wOQS_WEwbka2qs5h5oAxdftE1n1b7vVqPTo3-OPTX4bqOfQC-hUDZYHNxbLKFotXMlQ3gCsi0yqWlawebHIl4cYzFID13SVEjcxzGegXImcP5y5Jj_yRyZkvxliedaS9yRa8KkPKf0-iwb4-HLFno1TEVAs72o9SDXtizOuGw7DMD8ZEWkb__1zHFhj9J0DlyFmqnsQIs7PDQN4KTAXgdlUS17xBGJTAQ-qV4ZTMiPfY8yyjc1Z0xBL7BYwVYRxcOU7ymMaCKa8je6BkJk6TMaTg&h=g9D4zf5H0u1zNbslNwb69snz3LOk0L4UpTecnxKo4N8 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005/operationStatus/NDA5NTs1YmIxMTk5Ni04ZDExLTQ4MTQtYmFjZi01ZThiYjA0MzliODU=?api-version=2026-05-01&t=639202078112251626&c=MIIH9TCCBt2gAwIBAgIRAKnTo6mKeliSYj1GLETof4IwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVUyQyBDQSAwMTAeFw0yNjA3MDIxNTU4NDNaFw0yNjA5MjcyMTU4NDNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAlDQMyX5eVlNoyHQy97t41xstx7ISW3Jpt0fmktBr-SytLFjS2PEwnW3DFpc-bQgfDfHkKP0_FRLvm_mazEvS5KYzyX6nFjGqQTX3SfneJV5jo7nOwYnQHFTbkg0Dngz7AipTBy6yAiQqKMhRo_D-N4o3stwmKHeA0tAiEOx4G_PiAZBVgwqD_hS-porAKnsf-m7-vYsa-g9Cw0SQ2t7YIFgfqGifFcAH79L7QF5n4-toqH20MDZrR10dXpjNK50DvRiltXMo7xC198sVfC6ISY8hDbiFDpsKgL_lz-pJ2kyYJNyq1NUfS79AS70Bkl13eaOYbl8go_Oo41Ma5ArEgQIDAQABo4IE8jCCBO4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7Mv1WvWn7sAfft9pF9lwNBkNam0wHwYDVR0jBBgwFoAUz1EBqulDLGR2G0rwqsDykvhPw7swggHiBgNVHR8EggHZMIIB1TB1oHOgcYZvaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHegdaBzhnFodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyZXVhcC9jcmxzL2NjbWVlYXN0dXMyZXVhcHBraS9jY21lZWFzdHVzMmV1YXBpY2EwMS82NS9jdXJyZW50LmNybDBmoGSgYoZgaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHugeaB3hnVodHRwOi8vY2NtZWVhc3R1czJldWFwcGtpLmVhc3R1czJldWFwLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJldWFwaWNhMDEvNjUvY3VycmVudC5jcmwwggHnBggrBgEFBQcBAQSCAdkwggHVMHgGCCsGAQUFBzAChmxodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwegYIKwYBBQUHMAKGbmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NhY2VydHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxL2NlcnQuY2VyMGkGCCsGAQUFBzAChl1odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwcgYIKwYBBQUHMAKGZmh0dHA6Ly9jY21lZWFzdHVzMmV1YXBwa2kuZWFzdHVzMmV1YXAucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmV1YXBpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAndPCPc-CmjHOQpHPVSFI4dsJ3mAAA9L0QPDWwmXXvm66R08WToYQA9QCpkqxZEzl69AhSTR5x65hpeRv8xhwwj57QIuBD6rfMRghZH83T4x3bdOI4KmhFi_uY_52-cou5_xf0DyGAI_C77U5rC8TmVil8EsUCojV8rWkZXUBQSKZMaC1gzmzWW3pgKG9zwbD6J1M_7PW6f_zhE9KvGfBrLALoabdK0H_in5p3CyRMQee9pXSpsictb8cyfBIRU1fRSNmLnOjVSlF_Ll20gYIhnHvetGUxWU0EE9gWSJVUtwbqJjCeDouKPwe2UYUosoETTC7iluHZc0PV9EMfunH2w&s=RPGNanZZylGF6pirMDYWi54Vhv2hXNOpCPDWTb2z-ancJcPzl7_oOf8IDPk-cIL3pnQEdF5AhxUNPd2I1bzfUpG_do17UWL0wEP2smT8dImaKKx3sNuaizF-KI7nEoRNxHSVxdjrUGCpYRXusJX66x0yWqu8QyUvUGRCs2TfC8jwsUBs7daAz19vwvQRMxBXWjHm2tI-ezBGYE3MqPVUTDiYdb7neFec5R2onG2g80OFP38nf5_t_eYpPbmU_BePKIQp43LzHlMs6e_a_2OYCwwbhdqqJxTo7yy4L4SOb5SuuJANqt3lgP6OHQvaWCfvDqdtFcsYA7MoowsKTXKz0Q&h=adj93B1r9o4vP6BcuXZUTCxpcT1La1wtX_9-17likic response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005/operationStatus/NDA5NTs2NWM2Yjc3Mi02ODc2LTRjZTItOTIxZS05YzUyYTM5ZGU1YjI=\",\r\n - \ \"name\": \"NDA5NTs2NWM2Yjc3Mi02ODc2LTRjZTItOTIxZS05YzUyYTM5ZGU1YjI=\",\r\n + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005/operationStatus/NDA5NTs1YmIxMTk5Ni04ZDExLTQ4MTQtYmFjZi01ZThiYjA0MzliODU=\",\r\n + \ \"name\": \"NDA5NTs1YmIxMTk5Ni04ZDExLTQ4MTQtYmFjZi01ZThiYjA0MzliODU=\",\r\n \ \"status\": \"Succeeded\"\r\n}" headers: cache-control: @@ -2369,7 +2476,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 27 Oct 2025 13:56:58 GMT + - Tue, 21 Jul 2026 05:17:53 GMT expires: - '-1' pragma: @@ -2381,11 +2488,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=12f8ea5c-1212-449e-b31c-0a574f43076e/eastus2euap/7cb61552-649a-4df0-b9de-1cd13b0b8fe6 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=352782de-cadf-4f14-ad97-08cd2617ef55/eastus2euap/2a41d5ea-9630-4c1b-8e4c-b169a7b681a8 x-ms-throttling-version: - v2 x-msedge-ref: - - 'Ref A: 47EED487D89241FCA874B04A8B898C7B Ref B: JKT201051406023 Ref C: 2025-10-27T13:56:59Z' + - 'Ref A: 7E17F585B5654D6DBFF2C5CAE6600945 Ref B: PNQ231110909034 Ref C: 2026-07-21T05:17:53Z' status: code: 200 message: OK @@ -2403,21 +2510,21 @@ interactions: ParameterSetName: - -n -g --immutability-state --cross-subscription-restore-state User-Agent: - - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.11.9 (Windows-10-10.0.26200-SP0) + - AZURECLI/2.88.0 azsdk-python-core/1.39.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005?api-version=2025-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005?api-version=2026-05-01 response: body: - string: '{"location":"eastus2euap","name":"clitest-vault000005","etag":"W/\"datetime''2025-10-27T13%3A56%3A56.2954266Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","monitoringSettings":{"azureMonitorAlertSettings":{"alertsForAllJobFailures":"Enabled","alertsForAllReplicationIssues":"Enabled","alertsForAllFailoverIssues":"Enabled"},"classicAlertSettings":{"alertsForCriticalOperations":"Enabled","emailNotificationsForSiteRecovery":"Enabled"}},"backupStorageVersion":"Unassigned","securitySettings":{"immutabilitySettings":{"state":"Disabled"},"softDeleteSettings":{"softDeleteRetentionPeriodInDays":14,"softDeleteState":"AlwaysON","enhancedSecurityState":"AlwaysON"},"multiUserAuthorization":"Disabled","sourceScanConfiguration":{"state":"Disabled"}},"redundancySettings":{"standardTierStorageRedundancy":"GeoRedundant","crossRegionRestore":"Disabled"},"secureScore":"Adequate","bcdrSecurityLevel":"Good","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' + string: '{"location":"eastus2euap","name":"clitest-vault000005","etag":"W/\"datetime''2026-07-21T05%3A17%3A52.4548545Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","monitoringSettings":{"azureMonitorAlertSettings":{"alertsForAllJobFailures":"Enabled","alertsForAllReplicationIssues":"Enabled","alertsForAllFailoverIssues":"Enabled"},"classicAlertSettings":{"alertsForCriticalOperations":"Enabled","emailNotificationsForSiteRecovery":"Enabled"}},"costManagementSettings":{"granularityLevel":"VaultLevel"},"backupStorageVersion":"Unassigned","securitySettings":{"immutabilitySettings":{"state":"Disabled"},"softDeleteSettings":{"softDeleteRetentionPeriodInDays":14,"softDeleteState":"AlwaysON","enhancedSecurityState":"AlwaysON"},"multiUserAuthorization":"Disabled","sourceScanConfiguration":{"state":"Disabled"}},"redundancySettings":{"standardTierStorageRedundancy":"GeoRedundant","crossRegionRestore":"Disabled"},"secureScore":"Adequate","bcdrSecurityLevel":"Good","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' headers: cache-control: - no-cache content-length: - - '1354' + - '1413' content-type: - application/json; charset=utf-8 date: - - Mon, 27 Oct 2025 13:57:01 GMT + - Tue, 21 Jul 2026 05:17:54 GMT expires: - '-1' pragma: @@ -2431,7 +2538,7 @@ interactions: x-ms-throttling-version: - v2 x-msedge-ref: - - 'Ref A: 05BB7B0A9C5F40A28654C5DB63C9315F Ref B: JKT201051406036 Ref C: 2025-10-27T13:57:00Z' + - 'Ref A: BE121D27B1134CBAB377B7D4316715AF Ref B: PNQ231110907040 Ref C: 2026-07-21T05:17:54Z' status: code: 200 message: OK @@ -2449,21 +2556,21 @@ interactions: ParameterSetName: - -n -g --immutability-state --cross-subscription-restore-state User-Agent: - - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.11.9 (Windows-10-10.0.26200-SP0) + - AZURECLI/2.88.0 azsdk-python-core/1.39.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005?api-version=2025-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005?api-version=2026-05-01 response: body: - string: '{"location":"eastus2euap","name":"clitest-vault000005","etag":"W/\"datetime''2025-10-27T13%3A56%3A56.2954266Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","monitoringSettings":{"azureMonitorAlertSettings":{"alertsForAllJobFailures":"Enabled","alertsForAllReplicationIssues":"Enabled","alertsForAllFailoverIssues":"Enabled"},"classicAlertSettings":{"alertsForCriticalOperations":"Enabled","emailNotificationsForSiteRecovery":"Enabled"}},"backupStorageVersion":"Unassigned","securitySettings":{"immutabilitySettings":{"state":"Disabled"},"softDeleteSettings":{"softDeleteRetentionPeriodInDays":14,"softDeleteState":"AlwaysON","enhancedSecurityState":"AlwaysON"},"multiUserAuthorization":"Disabled","sourceScanConfiguration":{"state":"Disabled"}},"redundancySettings":{"standardTierStorageRedundancy":"GeoRedundant","crossRegionRestore":"Disabled"},"secureScore":"Adequate","bcdrSecurityLevel":"Good","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' + string: '{"location":"eastus2euap","name":"clitest-vault000005","etag":"W/\"datetime''2026-07-21T05%3A17%3A52.4548545Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","monitoringSettings":{"azureMonitorAlertSettings":{"alertsForAllJobFailures":"Enabled","alertsForAllReplicationIssues":"Enabled","alertsForAllFailoverIssues":"Enabled"},"classicAlertSettings":{"alertsForCriticalOperations":"Enabled","emailNotificationsForSiteRecovery":"Enabled"}},"costManagementSettings":{"granularityLevel":"VaultLevel"},"backupStorageVersion":"Unassigned","securitySettings":{"immutabilitySettings":{"state":"Disabled"},"softDeleteSettings":{"softDeleteRetentionPeriodInDays":14,"softDeleteState":"AlwaysON","enhancedSecurityState":"AlwaysON"},"multiUserAuthorization":"Disabled","sourceScanConfiguration":{"state":"Disabled"}},"redundancySettings":{"standardTierStorageRedundancy":"GeoRedundant","crossRegionRestore":"Disabled"},"secureScore":"Adequate","bcdrSecurityLevel":"Good","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' headers: cache-control: - no-cache content-length: - - '1354' + - '1413' content-type: - application/json; charset=utf-8 date: - - Mon, 27 Oct 2025 13:57:02 GMT + - Tue, 21 Jul 2026 05:17:56 GMT expires: - '-1' pragma: @@ -2477,16 +2584,16 @@ interactions: x-ms-throttling-version: - v2 x-msedge-ref: - - 'Ref A: AE5667C37D394139A98380982A436B18 Ref B: JKT201051406060 Ref C: 2025-10-27T13:57:02Z' + - 'Ref A: 11E06F61153044E78A23E8CC129DE6FA Ref B: PNQ231110906060 Ref C: 2026-07-21T05:17:55Z' status: code: 200 message: OK - request: body: '{"properties": {"securitySettings": {"immutabilitySettings": {"state": - "Unlocked"}, "softDeleteSettings": {"softDeleteRetentionPeriodInDays": 14, "softDeleteState": - "AlwaysON", "enhancedSecurityState": "AlwaysON"}, "sourceScanConfiguration": - {"state": "Disabled"}}, "restoreSettings": {"crossSubscriptionRestoreSettings": - {"crossSubscriptionRestoreState": "PermanentlyDisabled"}}}}' + "Unlocked", "configuration": {"type": "AsPerPolicy"}}, "softDeleteSettings": + {"softDeleteRetentionPeriodInDays": 14, "softDeleteState": "AlwaysON", "enhancedSecurityState": + "AlwaysON"}, "sourceScanConfiguration": {"state": "Disabled"}}, "restoreSettings": + {"crossSubscriptionRestoreSettings": {"crossSubscriptionRestoreState": "PermanentlyDisabled"}}}}' headers: Accept: - application/json @@ -2497,31 +2604,31 @@ interactions: Connection: - keep-alive Content-Length: - - '381' + - '423' Content-Type: - application/json ParameterSetName: - -n -g --immutability-state --cross-subscription-restore-state User-Agent: - - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.11.9 (Windows-10-10.0.26200-SP0) + - AZURECLI/2.88.0 azsdk-python-core/1.39.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005?api-version=2025-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005?api-version=2026-05-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005/operationStatus/NDA5NTtjMzY2YzZjOC1kYTBkLTQ1YjMtYjI5NC0yZmQxMDgzYzYwYjg=?api-version=2025-08-01&t=638971702245631099&c=MIIIpDCCBoygAwIBAgITFgIdx-8P5Q2flkVe0wABAh3H7zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUxMDIwMTM0ODIxWhcNMjYwMTE4MTM0ODIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALJsx40wbBQQVymBKxEYB3QsXs7DWrmkLk1cvGC9Oh6ZUsiS6z4fZ9KUiL7u4Cb1R-5gfYTplSDkCfn9Y776fzY9tgxKTFF2KMooWQSUUNfMYuwrWFbbHGDx79k-SN6J44MhkxgVnvirjK5cOgtR1YwGjnk0x5Ea3-szYPplTQi12yBEDft-JR3YCKn54jq1stV1W2hRp_2g1BQImqyuswXZKY2DD-s3bQClN3clms4KDqdtTyXsWYLLd1wyrriHRsQnNbYpC1EqjwDyNGLTXHMVXKbeUefj5AwkYLnb77HgLc0IW7nFQwaOLB01n0OsHuhWZeUiilCDsiV76B_8MF0CAwEAAaOCBJEwggSNMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAdoGCCsGAQUFBwEBBIIBzDCCAcgwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDEuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDQuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwHQYDVR0OBBYEFBIs_XIgrlYGjVV6tC88QEhsK39fMA4GA1UdDwEB_wQEAwIFoDCCATUGA1UdHwSCASwwggEoMIIBJKCCASCgggEchkJodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMB8GA1UdIwQYMBaAFEijrWB1am_sYPNpVdEAsTJX_GzkMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAgEAoWGeh2L-xOp4WFwNcK7-42nE8XWzyiVfNq-en8umv6B7FIlZBqRTSHucIlGoZqT7uEkuOIkyfwKUKMHeX3kte0w5f4gSgSX-JsexZj509BqurtDEgPbEjh9zUpbDAM7sODNvfiZ0HVF6sREKDyDIRGhYl_C7qO6FPNUH0wiEMRNI92WewkvN5kxHFBO56OS26He5ElMpeDPNifRXSj2RrthZNiLhtVNqOXCXV8HvAO-8PBPQGpetO260pqROBjblZfst9LCba3YKdZ8o2ojOeG5_ANB5mSX3bsBsY2ULkbRKgNBi5AXJ7q0-n01yM6-uiSvZ8wrkHLfDJ6KlzSDTLJpoVa8AUeZoPEhJgyQInNCPK5nFOD-F1QNRwQj-B-s7y16iUVZiLZ3hkxODdrbMjfPRL2P3DYn1cg-jZVq0xDX1aSlRyQq6qi9xZ9RfBPeOrsZ3SHGm0XIJdlqtaYt0Evo6fWKiFXuJ-H6nf5Qy8sLTk2q160CH2IgsW5_tA0n0ySGt5n-9j610wwPdH6ImEQ1jli9U8Ur82WjB7qQhpmYPuHOyytAGttfk1271zkw5TOpkzJfGWvT5zYv436XCj6pouSk2GJmG1iR-9pO4kPK1LWp3ujV-IXZjP_-xg0wwwsvc0BDJJZZk4tElY91ySFzLXlN8QfTH67VHl7D8ILg&s=HfO3pl9gCla6Pfav5WoGGXd7OXithFZLFNGBTry7yArWsf7FkksYyjBytjmdS0NlAzWffApzlz7nUkJENdxFMRIw2FvfTPsVlk7LDPhbztD0B209-zprDloivQKoOFG3ghxdog4TGJ273gcEh8zsSodoeUOO0hleP_xUdZ2TP8iWdO5sT1UCKvVp1UepQxSB5Oms_NHgGoOsOKNW8Aj9FbppTbCfsd9jcQRyB5dIT6r65kHLm9YG2G-SYoCZm2ewQYwNI0KWTs8RWUPXYrdWkzBfGwII9QgSMVtzABi6uVnGfWBq_LApwhwjZWfSDeT2At5XtAmr7IOr4x9z645Myw&h=Cg7Sk0Mpe9cWOGBPXOk6BFP2KfTT9nL70KnHN4L5Y_g + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005/operationStatus/NDA5NTs1MzE2MThiNS1iOTFhLTQwNmYtOTE5ZS00NTVlMDc3ZjA5ZWY=?api-version=2026-05-01&t=639202078774601718&c=MIIH9TCCBt2gAwIBAgIRAKnTo6mKeliSYj1GLETof4IwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVUyQyBDQSAwMTAeFw0yNjA3MDIxNTU4NDNaFw0yNjA5MjcyMTU4NDNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAlDQMyX5eVlNoyHQy97t41xstx7ISW3Jpt0fmktBr-SytLFjS2PEwnW3DFpc-bQgfDfHkKP0_FRLvm_mazEvS5KYzyX6nFjGqQTX3SfneJV5jo7nOwYnQHFTbkg0Dngz7AipTBy6yAiQqKMhRo_D-N4o3stwmKHeA0tAiEOx4G_PiAZBVgwqD_hS-porAKnsf-m7-vYsa-g9Cw0SQ2t7YIFgfqGifFcAH79L7QF5n4-toqH20MDZrR10dXpjNK50DvRiltXMo7xC198sVfC6ISY8hDbiFDpsKgL_lz-pJ2kyYJNyq1NUfS79AS70Bkl13eaOYbl8go_Oo41Ma5ArEgQIDAQABo4IE8jCCBO4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7Mv1WvWn7sAfft9pF9lwNBkNam0wHwYDVR0jBBgwFoAUz1EBqulDLGR2G0rwqsDykvhPw7swggHiBgNVHR8EggHZMIIB1TB1oHOgcYZvaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHegdaBzhnFodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyZXVhcC9jcmxzL2NjbWVlYXN0dXMyZXVhcHBraS9jY21lZWFzdHVzMmV1YXBpY2EwMS82NS9jdXJyZW50LmNybDBmoGSgYoZgaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHugeaB3hnVodHRwOi8vY2NtZWVhc3R1czJldWFwcGtpLmVhc3R1czJldWFwLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJldWFwaWNhMDEvNjUvY3VycmVudC5jcmwwggHnBggrBgEFBQcBAQSCAdkwggHVMHgGCCsGAQUFBzAChmxodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwegYIKwYBBQUHMAKGbmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NhY2VydHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxL2NlcnQuY2VyMGkGCCsGAQUFBzAChl1odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwcgYIKwYBBQUHMAKGZmh0dHA6Ly9jY21lZWFzdHVzMmV1YXBwa2kuZWFzdHVzMmV1YXAucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmV1YXBpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAndPCPc-CmjHOQpHPVSFI4dsJ3mAAA9L0QPDWwmXXvm66R08WToYQA9QCpkqxZEzl69AhSTR5x65hpeRv8xhwwj57QIuBD6rfMRghZH83T4x3bdOI4KmhFi_uY_52-cou5_xf0DyGAI_C77U5rC8TmVil8EsUCojV8rWkZXUBQSKZMaC1gzmzWW3pgKG9zwbD6J1M_7PW6f_zhE9KvGfBrLALoabdK0H_in5p3CyRMQee9pXSpsictb8cyfBIRU1fRSNmLnOjVSlF_Ll20gYIhnHvetGUxWU0EE9gWSJVUtwbqJjCeDouKPwe2UYUosoETTC7iluHZc0PV9EMfunH2w&s=eKRhRzd3vR4vOHo4IrtQFhduLUCra0blQulm0NI2b-ilzmK2XoBVThOqVu1doUQeVLDLzGobI_E1DyW9-jCMoucmM8EsXbt0rYyR0ZN7SyMu-R6XP8M5pngXzL31sX4LCN7PSQ0atZ35_lzwV37GOkqMElWkRbBIv9_P6HIfPdBm27Wfm73YLQ_XW0TfjXtEywONiKSXosoBdHWMSlC7UPDeh4T1Xa4Lbm3vtHH8Wr_5OlDg3UM1jxO5ElIUAKU7lCEfpH99VO7SQzx18gKHcRvau4tAly4qxJosP4SkITsGR0cbuqjWMNhi96O_j3BGTB8ES4HAcauxg7ydqwlqyw&h=NilmRMfE1DAjOnvIj7XwCeB6uUrMw98IdX4R0REHjqA cache-control: - no-cache content-length: - '0' date: - - Mon, 27 Oct 2025 13:57:04 GMT + - Tue, 21 Jul 2026 05:17:57 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005/operationResults/NDA5NTtjMzY2YzZjOC1kYTBkLTQ1YjMtYjI5NC0yZmQxMDgzYzYwYjg=?api-version=2025-08-01&t=638971702245631099&c=MIIIpDCCBoygAwIBAgITFgIdx-8P5Q2flkVe0wABAh3H7zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUxMDIwMTM0ODIxWhcNMjYwMTE4MTM0ODIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALJsx40wbBQQVymBKxEYB3QsXs7DWrmkLk1cvGC9Oh6ZUsiS6z4fZ9KUiL7u4Cb1R-5gfYTplSDkCfn9Y776fzY9tgxKTFF2KMooWQSUUNfMYuwrWFbbHGDx79k-SN6J44MhkxgVnvirjK5cOgtR1YwGjnk0x5Ea3-szYPplTQi12yBEDft-JR3YCKn54jq1stV1W2hRp_2g1BQImqyuswXZKY2DD-s3bQClN3clms4KDqdtTyXsWYLLd1wyrriHRsQnNbYpC1EqjwDyNGLTXHMVXKbeUefj5AwkYLnb77HgLc0IW7nFQwaOLB01n0OsHuhWZeUiilCDsiV76B_8MF0CAwEAAaOCBJEwggSNMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAdoGCCsGAQUFBwEBBIIBzDCCAcgwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDEuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDQuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwHQYDVR0OBBYEFBIs_XIgrlYGjVV6tC88QEhsK39fMA4GA1UdDwEB_wQEAwIFoDCCATUGA1UdHwSCASwwggEoMIIBJKCCASCgggEchkJodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMB8GA1UdIwQYMBaAFEijrWB1am_sYPNpVdEAsTJX_GzkMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAgEAoWGeh2L-xOp4WFwNcK7-42nE8XWzyiVfNq-en8umv6B7FIlZBqRTSHucIlGoZqT7uEkuOIkyfwKUKMHeX3kte0w5f4gSgSX-JsexZj509BqurtDEgPbEjh9zUpbDAM7sODNvfiZ0HVF6sREKDyDIRGhYl_C7qO6FPNUH0wiEMRNI92WewkvN5kxHFBO56OS26He5ElMpeDPNifRXSj2RrthZNiLhtVNqOXCXV8HvAO-8PBPQGpetO260pqROBjblZfst9LCba3YKdZ8o2ojOeG5_ANB5mSX3bsBsY2ULkbRKgNBi5AXJ7q0-n01yM6-uiSvZ8wrkHLfDJ6KlzSDTLJpoVa8AUeZoPEhJgyQInNCPK5nFOD-F1QNRwQj-B-s7y16iUVZiLZ3hkxODdrbMjfPRL2P3DYn1cg-jZVq0xDX1aSlRyQq6qi9xZ9RfBPeOrsZ3SHGm0XIJdlqtaYt0Evo6fWKiFXuJ-H6nf5Qy8sLTk2q160CH2IgsW5_tA0n0ySGt5n-9j610wwPdH6ImEQ1jli9U8Ur82WjB7qQhpmYPuHOyytAGttfk1271zkw5TOpkzJfGWvT5zYv436XCj6pouSk2GJmG1iR-9pO4kPK1LWp3ujV-IXZjP_-xg0wwwsvc0BDJJZZk4tElY91ySFzLXlN8QfTH67VHl7D8ILg&s=NyuZ0syygwSvbov97ltPMbLaEx5BYdV9uAkO1jHo5cZ6wVRpGlZ2326it32ypOH1WQ7DAXOz18-o_FMoVxPxaw297BSodUmjjfiwNnHx-vML8L1kIcwGL3GO7b9lnKiHgoTuw7KJXuQ4AKTsg_uspUHwx2PE10nNIPAGhqCyZWP7e5-c2ZbzR5vR_e9vuo5zAY8dfkq22iFhaZVnFCm6tymL1EtLRfqkMwVx5zPxqDawfSJgwpoW6WtSUwooCD9IBlKTA47ephqt_FwCvB1OaLrDWjF7WRLKpVxYOGd1XC83zmDyOqKRGL2AIar89LMOV-oYo5K81A-o0ua9fNnvTA&h=1e3ldVnD9gu6d-jKuVF0vOvoF_h1jHS-6lNJdA84HaQ + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005/operationResults/NDA5NTs1MzE2MThiNS1iOTFhLTQwNmYtOTE5ZS00NTVlMDc3ZjA5ZWY=?api-version=2026-05-01&t=639202078774601718&c=MIIH9TCCBt2gAwIBAgIRAKnTo6mKeliSYj1GLETof4IwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVUyQyBDQSAwMTAeFw0yNjA3MDIxNTU4NDNaFw0yNjA5MjcyMTU4NDNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAlDQMyX5eVlNoyHQy97t41xstx7ISW3Jpt0fmktBr-SytLFjS2PEwnW3DFpc-bQgfDfHkKP0_FRLvm_mazEvS5KYzyX6nFjGqQTX3SfneJV5jo7nOwYnQHFTbkg0Dngz7AipTBy6yAiQqKMhRo_D-N4o3stwmKHeA0tAiEOx4G_PiAZBVgwqD_hS-porAKnsf-m7-vYsa-g9Cw0SQ2t7YIFgfqGifFcAH79L7QF5n4-toqH20MDZrR10dXpjNK50DvRiltXMo7xC198sVfC6ISY8hDbiFDpsKgL_lz-pJ2kyYJNyq1NUfS79AS70Bkl13eaOYbl8go_Oo41Ma5ArEgQIDAQABo4IE8jCCBO4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7Mv1WvWn7sAfft9pF9lwNBkNam0wHwYDVR0jBBgwFoAUz1EBqulDLGR2G0rwqsDykvhPw7swggHiBgNVHR8EggHZMIIB1TB1oHOgcYZvaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHegdaBzhnFodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyZXVhcC9jcmxzL2NjbWVlYXN0dXMyZXVhcHBraS9jY21lZWFzdHVzMmV1YXBpY2EwMS82NS9jdXJyZW50LmNybDBmoGSgYoZgaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHugeaB3hnVodHRwOi8vY2NtZWVhc3R1czJldWFwcGtpLmVhc3R1czJldWFwLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJldWFwaWNhMDEvNjUvY3VycmVudC5jcmwwggHnBggrBgEFBQcBAQSCAdkwggHVMHgGCCsGAQUFBzAChmxodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwegYIKwYBBQUHMAKGbmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NhY2VydHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxL2NlcnQuY2VyMGkGCCsGAQUFBzAChl1odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwcgYIKwYBBQUHMAKGZmh0dHA6Ly9jY21lZWFzdHVzMmV1YXBwa2kuZWFzdHVzMmV1YXAucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmV1YXBpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAndPCPc-CmjHOQpHPVSFI4dsJ3mAAA9L0QPDWwmXXvm66R08WToYQA9QCpkqxZEzl69AhSTR5x65hpeRv8xhwwj57QIuBD6rfMRghZH83T4x3bdOI4KmhFi_uY_52-cou5_xf0DyGAI_C77U5rC8TmVil8EsUCojV8rWkZXUBQSKZMaC1gzmzWW3pgKG9zwbD6J1M_7PW6f_zhE9KvGfBrLALoabdK0H_in5p3CyRMQee9pXSpsictb8cyfBIRU1fRSNmLnOjVSlF_Ll20gYIhnHvetGUxWU0EE9gWSJVUtwbqJjCeDouKPwe2UYUosoETTC7iluHZc0PV9EMfunH2w&s=Cz_0Nobt5zPmXfEDVursD_zq2IDWvI8Ml1WjE89AgU8rWjodzWFFcX9DWItUttY3XLvmWEX0Oi6skzVkn8ImygpeuOBMNUhdoNJA8QFH7p0oxdDHVoLAYHZ8Ac5PSgBGzV8-s5iYjLyiRye-zWyf86kNPmnW1zBuCVd9fbXG7yqJ9S2ndU1xqakLdDiBugfQ9VzybEO3YdK_fAKczWdLlWbqnOAZ5dFch4ysKgoyissUusQcPibQXkb6vuJrik-x-TjfJ0sxYpp4MJJFevQVgS_l2TMQjEKjHfQDkeCfT942gMQcO3sQTjJ6DmSdwAtutUC4CmSJyTTNE_4y_LbAtg&h=ueWSy_2XNeJzyyYeA-FW6j9aISzanGeayG3_uKANc20 pragma: - no-cache strict-transport-security: @@ -2531,13 +2638,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=12f8ea5c-1212-449e-b31c-0a574f43076e/eastus2euap/7ee39845-73fd-4c17-861f-3027ac2aa1d2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=352782de-cadf-4f14-ad97-08cd2617ef55/eastus2euap/5c656864-ac61-425b-9e2e-1a3a9ad9a90a x-ms-ratelimit-remaining-subscription-resource-requests: - '799' x-ms-throttling-version: - v1 x-msedge-ref: - - 'Ref A: CD1EB0AF7E724C70A279FB447DD5CAA0 Ref B: JKT201051406029 Ref C: 2025-10-27T13:57:04Z' + - 'Ref A: A3A6637D6DD743F2AFF1E4D6ABB36C46 Ref B: PNQ231110908025 Ref C: 2026-07-21T05:17:56Z' status: code: 202 message: Accepted @@ -2555,17 +2662,17 @@ interactions: ParameterSetName: - -n -g --immutability-state --cross-subscription-restore-state User-Agent: - - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.11.9 (Windows-10-10.0.26200-SP0) + - AZURECLI/2.88.0 azsdk-python-core/1.39.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005/operationStatus/NDA5NTtjMzY2YzZjOC1kYTBkLTQ1YjMtYjI5NC0yZmQxMDgzYzYwYjg=?api-version=2025-08-01&t=638971702245631099&c=MIIIpDCCBoygAwIBAgITFgIdx-8P5Q2flkVe0wABAh3H7zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUxMDIwMTM0ODIxWhcNMjYwMTE4MTM0ODIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALJsx40wbBQQVymBKxEYB3QsXs7DWrmkLk1cvGC9Oh6ZUsiS6z4fZ9KUiL7u4Cb1R-5gfYTplSDkCfn9Y776fzY9tgxKTFF2KMooWQSUUNfMYuwrWFbbHGDx79k-SN6J44MhkxgVnvirjK5cOgtR1YwGjnk0x5Ea3-szYPplTQi12yBEDft-JR3YCKn54jq1stV1W2hRp_2g1BQImqyuswXZKY2DD-s3bQClN3clms4KDqdtTyXsWYLLd1wyrriHRsQnNbYpC1EqjwDyNGLTXHMVXKbeUefj5AwkYLnb77HgLc0IW7nFQwaOLB01n0OsHuhWZeUiilCDsiV76B_8MF0CAwEAAaOCBJEwggSNMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAdoGCCsGAQUFBwEBBIIBzDCCAcgwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDEuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDQuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwHQYDVR0OBBYEFBIs_XIgrlYGjVV6tC88QEhsK39fMA4GA1UdDwEB_wQEAwIFoDCCATUGA1UdHwSCASwwggEoMIIBJKCCASCgggEchkJodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMB8GA1UdIwQYMBaAFEijrWB1am_sYPNpVdEAsTJX_GzkMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAgEAoWGeh2L-xOp4WFwNcK7-42nE8XWzyiVfNq-en8umv6B7FIlZBqRTSHucIlGoZqT7uEkuOIkyfwKUKMHeX3kte0w5f4gSgSX-JsexZj509BqurtDEgPbEjh9zUpbDAM7sODNvfiZ0HVF6sREKDyDIRGhYl_C7qO6FPNUH0wiEMRNI92WewkvN5kxHFBO56OS26He5ElMpeDPNifRXSj2RrthZNiLhtVNqOXCXV8HvAO-8PBPQGpetO260pqROBjblZfst9LCba3YKdZ8o2ojOeG5_ANB5mSX3bsBsY2ULkbRKgNBi5AXJ7q0-n01yM6-uiSvZ8wrkHLfDJ6KlzSDTLJpoVa8AUeZoPEhJgyQInNCPK5nFOD-F1QNRwQj-B-s7y16iUVZiLZ3hkxODdrbMjfPRL2P3DYn1cg-jZVq0xDX1aSlRyQq6qi9xZ9RfBPeOrsZ3SHGm0XIJdlqtaYt0Evo6fWKiFXuJ-H6nf5Qy8sLTk2q160CH2IgsW5_tA0n0ySGt5n-9j610wwPdH6ImEQ1jli9U8Ur82WjB7qQhpmYPuHOyytAGttfk1271zkw5TOpkzJfGWvT5zYv436XCj6pouSk2GJmG1iR-9pO4kPK1LWp3ujV-IXZjP_-xg0wwwsvc0BDJJZZk4tElY91ySFzLXlN8QfTH67VHl7D8ILg&s=HfO3pl9gCla6Pfav5WoGGXd7OXithFZLFNGBTry7yArWsf7FkksYyjBytjmdS0NlAzWffApzlz7nUkJENdxFMRIw2FvfTPsVlk7LDPhbztD0B209-zprDloivQKoOFG3ghxdog4TGJ273gcEh8zsSodoeUOO0hleP_xUdZ2TP8iWdO5sT1UCKvVp1UepQxSB5Oms_NHgGoOsOKNW8Aj9FbppTbCfsd9jcQRyB5dIT6r65kHLm9YG2G-SYoCZm2ewQYwNI0KWTs8RWUPXYrdWkzBfGwII9QgSMVtzABi6uVnGfWBq_LApwhwjZWfSDeT2At5XtAmr7IOr4x9z645Myw&h=Cg7Sk0Mpe9cWOGBPXOk6BFP2KfTT9nL70KnHN4L5Y_g + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005/operationStatus/NDA5NTs1MzE2MThiNS1iOTFhLTQwNmYtOTE5ZS00NTVlMDc3ZjA5ZWY=?api-version=2026-05-01&t=639202078774601718&c=MIIH9TCCBt2gAwIBAgIRAKnTo6mKeliSYj1GLETof4IwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVUyQyBDQSAwMTAeFw0yNjA3MDIxNTU4NDNaFw0yNjA5MjcyMTU4NDNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAlDQMyX5eVlNoyHQy97t41xstx7ISW3Jpt0fmktBr-SytLFjS2PEwnW3DFpc-bQgfDfHkKP0_FRLvm_mazEvS5KYzyX6nFjGqQTX3SfneJV5jo7nOwYnQHFTbkg0Dngz7AipTBy6yAiQqKMhRo_D-N4o3stwmKHeA0tAiEOx4G_PiAZBVgwqD_hS-porAKnsf-m7-vYsa-g9Cw0SQ2t7YIFgfqGifFcAH79L7QF5n4-toqH20MDZrR10dXpjNK50DvRiltXMo7xC198sVfC6ISY8hDbiFDpsKgL_lz-pJ2kyYJNyq1NUfS79AS70Bkl13eaOYbl8go_Oo41Ma5ArEgQIDAQABo4IE8jCCBO4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7Mv1WvWn7sAfft9pF9lwNBkNam0wHwYDVR0jBBgwFoAUz1EBqulDLGR2G0rwqsDykvhPw7swggHiBgNVHR8EggHZMIIB1TB1oHOgcYZvaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHegdaBzhnFodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyZXVhcC9jcmxzL2NjbWVlYXN0dXMyZXVhcHBraS9jY21lZWFzdHVzMmV1YXBpY2EwMS82NS9jdXJyZW50LmNybDBmoGSgYoZgaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHugeaB3hnVodHRwOi8vY2NtZWVhc3R1czJldWFwcGtpLmVhc3R1czJldWFwLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJldWFwaWNhMDEvNjUvY3VycmVudC5jcmwwggHnBggrBgEFBQcBAQSCAdkwggHVMHgGCCsGAQUFBzAChmxodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwegYIKwYBBQUHMAKGbmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NhY2VydHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxL2NlcnQuY2VyMGkGCCsGAQUFBzAChl1odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwcgYIKwYBBQUHMAKGZmh0dHA6Ly9jY21lZWFzdHVzMmV1YXBwa2kuZWFzdHVzMmV1YXAucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmV1YXBpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAndPCPc-CmjHOQpHPVSFI4dsJ3mAAA9L0QPDWwmXXvm66R08WToYQA9QCpkqxZEzl69AhSTR5x65hpeRv8xhwwj57QIuBD6rfMRghZH83T4x3bdOI4KmhFi_uY_52-cou5_xf0DyGAI_C77U5rC8TmVil8EsUCojV8rWkZXUBQSKZMaC1gzmzWW3pgKG9zwbD6J1M_7PW6f_zhE9KvGfBrLALoabdK0H_in5p3CyRMQee9pXSpsictb8cyfBIRU1fRSNmLnOjVSlF_Ll20gYIhnHvetGUxWU0EE9gWSJVUtwbqJjCeDouKPwe2UYUosoETTC7iluHZc0PV9EMfunH2w&s=eKRhRzd3vR4vOHo4IrtQFhduLUCra0blQulm0NI2b-ilzmK2XoBVThOqVu1doUQeVLDLzGobI_E1DyW9-jCMoucmM8EsXbt0rYyR0ZN7SyMu-R6XP8M5pngXzL31sX4LCN7PSQ0atZ35_lzwV37GOkqMElWkRbBIv9_P6HIfPdBm27Wfm73YLQ_XW0TfjXtEywONiKSXosoBdHWMSlC7UPDeh4T1Xa4Lbm3vtHH8Wr_5OlDg3UM1jxO5ElIUAKU7lCEfpH99VO7SQzx18gKHcRvau4tAly4qxJosP4SkITsGR0cbuqjWMNhi96O_j3BGTB8ES4HAcauxg7ydqwlqyw&h=NilmRMfE1DAjOnvIj7XwCeB6uUrMw98IdX4R0REHjqA response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005/operationStatus/NDA5NTtjMzY2YzZjOC1kYTBkLTQ1YjMtYjI5NC0yZmQxMDgzYzYwYjg=\",\r\n - \ \"name\": \"NDA5NTtjMzY2YzZjOC1kYTBkLTQ1YjMtYjI5NC0yZmQxMDgzYzYwYjg=\",\r\n + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005/operationStatus/NDA5NTs1MzE2MThiNS1iOTFhLTQwNmYtOTE5ZS00NTVlMDc3ZjA5ZWY=\",\r\n + \ \"name\": \"NDA5NTs1MzE2MThiNS1iOTFhLTQwNmYtOTE5ZS00NTVlMDc3ZjA5ZWY=\",\r\n \ \"status\": \"InProgress\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005/operationStatus/NDA5NTtjMzY2YzZjOC1kYTBkLTQ1YjMtYjI5NC0yZmQxMDgzYzYwYjg=?api-version=2025-08-01&t=638971702262167670&c=MIIIpDCCBoygAwIBAgITFgIdx-8P5Q2flkVe0wABAh3H7zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUxMDIwMTM0ODIxWhcNMjYwMTE4MTM0ODIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALJsx40wbBQQVymBKxEYB3QsXs7DWrmkLk1cvGC9Oh6ZUsiS6z4fZ9KUiL7u4Cb1R-5gfYTplSDkCfn9Y776fzY9tgxKTFF2KMooWQSUUNfMYuwrWFbbHGDx79k-SN6J44MhkxgVnvirjK5cOgtR1YwGjnk0x5Ea3-szYPplTQi12yBEDft-JR3YCKn54jq1stV1W2hRp_2g1BQImqyuswXZKY2DD-s3bQClN3clms4KDqdtTyXsWYLLd1wyrriHRsQnNbYpC1EqjwDyNGLTXHMVXKbeUefj5AwkYLnb77HgLc0IW7nFQwaOLB01n0OsHuhWZeUiilCDsiV76B_8MF0CAwEAAaOCBJEwggSNMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAdoGCCsGAQUFBwEBBIIBzDCCAcgwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDEuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDQuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwHQYDVR0OBBYEFBIs_XIgrlYGjVV6tC88QEhsK39fMA4GA1UdDwEB_wQEAwIFoDCCATUGA1UdHwSCASwwggEoMIIBJKCCASCgggEchkJodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMB8GA1UdIwQYMBaAFEijrWB1am_sYPNpVdEAsTJX_GzkMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAgEAoWGeh2L-xOp4WFwNcK7-42nE8XWzyiVfNq-en8umv6B7FIlZBqRTSHucIlGoZqT7uEkuOIkyfwKUKMHeX3kte0w5f4gSgSX-JsexZj509BqurtDEgPbEjh9zUpbDAM7sODNvfiZ0HVF6sREKDyDIRGhYl_C7qO6FPNUH0wiEMRNI92WewkvN5kxHFBO56OS26He5ElMpeDPNifRXSj2RrthZNiLhtVNqOXCXV8HvAO-8PBPQGpetO260pqROBjblZfst9LCba3YKdZ8o2ojOeG5_ANB5mSX3bsBsY2ULkbRKgNBi5AXJ7q0-n01yM6-uiSvZ8wrkHLfDJ6KlzSDTLJpoVa8AUeZoPEhJgyQInNCPK5nFOD-F1QNRwQj-B-s7y16iUVZiLZ3hkxODdrbMjfPRL2P3DYn1cg-jZVq0xDX1aSlRyQq6qi9xZ9RfBPeOrsZ3SHGm0XIJdlqtaYt0Evo6fWKiFXuJ-H6nf5Qy8sLTk2q160CH2IgsW5_tA0n0ySGt5n-9j610wwPdH6ImEQ1jli9U8Ur82WjB7qQhpmYPuHOyytAGttfk1271zkw5TOpkzJfGWvT5zYv436XCj6pouSk2GJmG1iR-9pO4kPK1LWp3ujV-IXZjP_-xg0wwwsvc0BDJJZZk4tElY91ySFzLXlN8QfTH67VHl7D8ILg&s=RbVHW-mQps614OjuE9xoMa2UFIZclMNwdl91d-KhFyQKjNN5yGxF8Hn2J4GSUWzz3G3ITBKspmK_EPRR81gIRVR5Atj-Ys4yxRUrXLBoXfP5miPXw90Ijh35S8n0aGtgTWssP_AINSPzEm4MsvghHZ04vtiPyr9fvLot64t3TkVn7UKvuSWs1yx12l4JXVnK6JFoWy43HNxTByQ75eklKYLt1vQh5hLE0mllDPjcFdYkamED9uqs2XAhmlGfETkkmOrqeydTp7NV0UBG0hMb8E3MLJ8Tsgtekk3y2x6S38AesQCYuXcK5Ul8_TxlXQzBu8LtFpbDVYt5_HtEEn6vaA&h=3tI_HrLLqD3cPLd429-UltXwFiS0Dbj9inDE_P1GhFw + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005/operationStatus/NDA5NTs1MzE2MThiNS1iOTFhLTQwNmYtOTE5ZS00NTVlMDc3ZjA5ZWY=?api-version=2026-05-01&t=639202078782586807&c=MIIH9TCCBt2gAwIBAgIRAKnTo6mKeliSYj1GLETof4IwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVUyQyBDQSAwMTAeFw0yNjA3MDIxNTU4NDNaFw0yNjA5MjcyMTU4NDNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAlDQMyX5eVlNoyHQy97t41xstx7ISW3Jpt0fmktBr-SytLFjS2PEwnW3DFpc-bQgfDfHkKP0_FRLvm_mazEvS5KYzyX6nFjGqQTX3SfneJV5jo7nOwYnQHFTbkg0Dngz7AipTBy6yAiQqKMhRo_D-N4o3stwmKHeA0tAiEOx4G_PiAZBVgwqD_hS-porAKnsf-m7-vYsa-g9Cw0SQ2t7YIFgfqGifFcAH79L7QF5n4-toqH20MDZrR10dXpjNK50DvRiltXMo7xC198sVfC6ISY8hDbiFDpsKgL_lz-pJ2kyYJNyq1NUfS79AS70Bkl13eaOYbl8go_Oo41Ma5ArEgQIDAQABo4IE8jCCBO4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7Mv1WvWn7sAfft9pF9lwNBkNam0wHwYDVR0jBBgwFoAUz1EBqulDLGR2G0rwqsDykvhPw7swggHiBgNVHR8EggHZMIIB1TB1oHOgcYZvaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHegdaBzhnFodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyZXVhcC9jcmxzL2NjbWVlYXN0dXMyZXVhcHBraS9jY21lZWFzdHVzMmV1YXBpY2EwMS82NS9jdXJyZW50LmNybDBmoGSgYoZgaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHugeaB3hnVodHRwOi8vY2NtZWVhc3R1czJldWFwcGtpLmVhc3R1czJldWFwLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJldWFwaWNhMDEvNjUvY3VycmVudC5jcmwwggHnBggrBgEFBQcBAQSCAdkwggHVMHgGCCsGAQUFBzAChmxodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwegYIKwYBBQUHMAKGbmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NhY2VydHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxL2NlcnQuY2VyMGkGCCsGAQUFBzAChl1odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwcgYIKwYBBQUHMAKGZmh0dHA6Ly9jY21lZWFzdHVzMmV1YXBwa2kuZWFzdHVzMmV1YXAucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmV1YXBpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAndPCPc-CmjHOQpHPVSFI4dsJ3mAAA9L0QPDWwmXXvm66R08WToYQA9QCpkqxZEzl69AhSTR5x65hpeRv8xhwwj57QIuBD6rfMRghZH83T4x3bdOI4KmhFi_uY_52-cou5_xf0DyGAI_C77U5rC8TmVil8EsUCojV8rWkZXUBQSKZMaC1gzmzWW3pgKG9zwbD6J1M_7PW6f_zhE9KvGfBrLALoabdK0H_in5p3CyRMQee9pXSpsictb8cyfBIRU1fRSNmLnOjVSlF_Ll20gYIhnHvetGUxWU0EE9gWSJVUtwbqJjCeDouKPwe2UYUosoETTC7iluHZc0PV9EMfunH2w&s=Omd5UA4dtCu_DMJpmO1l0mM4FCzJFZ6Qg2YRkuOr2CuIQ-LodMQcjkWMHs-jIpdhXIl9XdEwk1CR_ClvY5dU26xMsaOaggn_5dHEDDQz8U4D9y5dRE6t9LCjaYLUH-MiUM2j4MdSkx22u9YZhFv0NQFmCeAV7g9RpQfSlhMz-Kl8wc50GTRGVspSUTHfqOd2RYyevsKWybTuJAbaVk_Kch3bDfTtUoO5-DBnfEfKrvSG8OrYIQafzFkjN5DJ5ZLI0VT3H6TBnAUeqcmRxZCVfPcoiVHmNpKPNMWP1KIXbaR1ioRY_ixICYgYBvwnNeK73LLVhWDgcxUKAuJ-mTAmZQ&h=CGlWtVzM7ldS8DsNI64--n6aRqJqAwCx4w38hXGhknY cache-control: - no-cache content-length: @@ -2573,11 +2680,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 27 Oct 2025 13:57:06 GMT + - Tue, 21 Jul 2026 05:17:57 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005/operationResults/NDA5NTtjMzY2YzZjOC1kYTBkLTQ1YjMtYjI5NC0yZmQxMDgzYzYwYjg=?api-version=2025-08-01&t=638971702262323946&c=MIIIpDCCBoygAwIBAgITFgIdx-8P5Q2flkVe0wABAh3H7zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUxMDIwMTM0ODIxWhcNMjYwMTE4MTM0ODIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALJsx40wbBQQVymBKxEYB3QsXs7DWrmkLk1cvGC9Oh6ZUsiS6z4fZ9KUiL7u4Cb1R-5gfYTplSDkCfn9Y776fzY9tgxKTFF2KMooWQSUUNfMYuwrWFbbHGDx79k-SN6J44MhkxgVnvirjK5cOgtR1YwGjnk0x5Ea3-szYPplTQi12yBEDft-JR3YCKn54jq1stV1W2hRp_2g1BQImqyuswXZKY2DD-s3bQClN3clms4KDqdtTyXsWYLLd1wyrriHRsQnNbYpC1EqjwDyNGLTXHMVXKbeUefj5AwkYLnb77HgLc0IW7nFQwaOLB01n0OsHuhWZeUiilCDsiV76B_8MF0CAwEAAaOCBJEwggSNMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAdoGCCsGAQUFBwEBBIIBzDCCAcgwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDEuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDQuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwHQYDVR0OBBYEFBIs_XIgrlYGjVV6tC88QEhsK39fMA4GA1UdDwEB_wQEAwIFoDCCATUGA1UdHwSCASwwggEoMIIBJKCCASCgggEchkJodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMB8GA1UdIwQYMBaAFEijrWB1am_sYPNpVdEAsTJX_GzkMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAgEAoWGeh2L-xOp4WFwNcK7-42nE8XWzyiVfNq-en8umv6B7FIlZBqRTSHucIlGoZqT7uEkuOIkyfwKUKMHeX3kte0w5f4gSgSX-JsexZj509BqurtDEgPbEjh9zUpbDAM7sODNvfiZ0HVF6sREKDyDIRGhYl_C7qO6FPNUH0wiEMRNI92WewkvN5kxHFBO56OS26He5ElMpeDPNifRXSj2RrthZNiLhtVNqOXCXV8HvAO-8PBPQGpetO260pqROBjblZfst9LCba3YKdZ8o2ojOeG5_ANB5mSX3bsBsY2ULkbRKgNBi5AXJ7q0-n01yM6-uiSvZ8wrkHLfDJ6KlzSDTLJpoVa8AUeZoPEhJgyQInNCPK5nFOD-F1QNRwQj-B-s7y16iUVZiLZ3hkxODdrbMjfPRL2P3DYn1cg-jZVq0xDX1aSlRyQq6qi9xZ9RfBPeOrsZ3SHGm0XIJdlqtaYt0Evo6fWKiFXuJ-H6nf5Qy8sLTk2q160CH2IgsW5_tA0n0ySGt5n-9j610wwPdH6ImEQ1jli9U8Ur82WjB7qQhpmYPuHOyytAGttfk1271zkw5TOpkzJfGWvT5zYv436XCj6pouSk2GJmG1iR-9pO4kPK1LWp3ujV-IXZjP_-xg0wwwsvc0BDJJZZk4tElY91ySFzLXlN8QfTH67VHl7D8ILg&s=LrpqBZTADhP4Aa76xfhLyb-akdAhmOWZDhf688xD94PfiLrYw96Ck6SqZpTTgWuyoTWCLpSZKvo8wmgxm_wV28J-So9eYjzXNVlW3yDjeje9MmsrO3b4djGHBvjIoWs5N_UU0je9KBK0uhyEMn_1RarYnxtGU84EL61wZ1OODhjPSpaQBSpOjHLXX-tZ9Yl-9rBvavEzxi6b84o5g5PXMWUddPYShdjl-GXnoLpS1tzcKFERpUcPIU4vG-pM3AVAziFvXLq50N1mJv4VFtIx6IpXP8rX4NMaBlXiKQ_yNt1cOvNxbn5iuaK8wZb8-pZzZWjlgZXSYY-lvPG9_IMvLg&h=Fh5Du1MtMqXJX_w5_yREur7Wf_hv7ZhIxxvWk7X_AkA + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005/operationResults/NDA5NTs1MzE2MThiNS1iOTFhLTQwNmYtOTE5ZS00NTVlMDc3ZjA5ZWY=?api-version=2026-05-01&t=639202078782586807&c=MIIH9TCCBt2gAwIBAgIRAKnTo6mKeliSYj1GLETof4IwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVUyQyBDQSAwMTAeFw0yNjA3MDIxNTU4NDNaFw0yNjA5MjcyMTU4NDNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAlDQMyX5eVlNoyHQy97t41xstx7ISW3Jpt0fmktBr-SytLFjS2PEwnW3DFpc-bQgfDfHkKP0_FRLvm_mazEvS5KYzyX6nFjGqQTX3SfneJV5jo7nOwYnQHFTbkg0Dngz7AipTBy6yAiQqKMhRo_D-N4o3stwmKHeA0tAiEOx4G_PiAZBVgwqD_hS-porAKnsf-m7-vYsa-g9Cw0SQ2t7YIFgfqGifFcAH79L7QF5n4-toqH20MDZrR10dXpjNK50DvRiltXMo7xC198sVfC6ISY8hDbiFDpsKgL_lz-pJ2kyYJNyq1NUfS79AS70Bkl13eaOYbl8go_Oo41Ma5ArEgQIDAQABo4IE8jCCBO4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7Mv1WvWn7sAfft9pF9lwNBkNam0wHwYDVR0jBBgwFoAUz1EBqulDLGR2G0rwqsDykvhPw7swggHiBgNVHR8EggHZMIIB1TB1oHOgcYZvaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHegdaBzhnFodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyZXVhcC9jcmxzL2NjbWVlYXN0dXMyZXVhcHBraS9jY21lZWFzdHVzMmV1YXBpY2EwMS82NS9jdXJyZW50LmNybDBmoGSgYoZgaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHugeaB3hnVodHRwOi8vY2NtZWVhc3R1czJldWFwcGtpLmVhc3R1czJldWFwLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJldWFwaWNhMDEvNjUvY3VycmVudC5jcmwwggHnBggrBgEFBQcBAQSCAdkwggHVMHgGCCsGAQUFBzAChmxodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwegYIKwYBBQUHMAKGbmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NhY2VydHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxL2NlcnQuY2VyMGkGCCsGAQUFBzAChl1odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwcgYIKwYBBQUHMAKGZmh0dHA6Ly9jY21lZWFzdHVzMmV1YXBwa2kuZWFzdHVzMmV1YXAucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmV1YXBpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAndPCPc-CmjHOQpHPVSFI4dsJ3mAAA9L0QPDWwmXXvm66R08WToYQA9QCpkqxZEzl69AhSTR5x65hpeRv8xhwwj57QIuBD6rfMRghZH83T4x3bdOI4KmhFi_uY_52-cou5_xf0DyGAI_C77U5rC8TmVil8EsUCojV8rWkZXUBQSKZMaC1gzmzWW3pgKG9zwbD6J1M_7PW6f_zhE9KvGfBrLALoabdK0H_in5p3CyRMQee9pXSpsictb8cyfBIRU1fRSNmLnOjVSlF_Ll20gYIhnHvetGUxWU0EE9gWSJVUtwbqJjCeDouKPwe2UYUosoETTC7iluHZc0PV9EMfunH2w&s=BwJdzQafCXuD0rr3rKkAJ8Lj5-jofwsbBAHmHorfOqka4DeDEBe7Dv4HgnuC2tkRfid6J1IcELCIk9tTh4_VODUMR0lv-4O7KW3-sF-cKF0aJwdN9wrbfnCKTnHnMZ4NB-uaM3XQC4rwGfZbL8Y79gZ6iANs_Avy3EmOTLm-GLaOTQbOgTGHt-deFG5f2Pr1_saMC6MRQ-aEG38tbpP8RPv8rYVEejbicFiCNYdxykhXJQ1kcsmync9biyM7hPi-X2ZzXbcU4YQHFP2pJbe_rBLnPzc0pAQrJdU9ThzrNzLb4s0xefi9MJSd55oZ9qgCdULH7IH9xhbMxNH06_mk5w&h=Rmg-S0T2plGjfTG0vTHT0lDn1S5DDmymSie_cPQD4wE pragma: - no-cache strict-transport-security: @@ -2587,11 +2694,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=12f8ea5c-1212-449e-b31c-0a574f43076e/eastus2euap/cc8dd807-2d89-4432-b2f7-cd827d273882 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=352782de-cadf-4f14-ad97-08cd2617ef55/eastus2euap/50e23526-6d2a-4205-a5dd-aff3d531f707 x-ms-throttling-version: - v2 x-msedge-ref: - - 'Ref A: B95D60ECB38E4A308E651B9221BD2386 Ref B: JKT201051407040 Ref C: 2025-10-27T13:57:06Z' + - 'Ref A: 5C17DCC1BDF449BDA6B9198F0D92047D Ref B: PNQ231110907036 Ref C: 2026-07-21T05:17:58Z' status: code: 200 message: OK @@ -2609,13 +2716,13 @@ interactions: ParameterSetName: - -n -g --immutability-state --cross-subscription-restore-state User-Agent: - - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.11.9 (Windows-10-10.0.26200-SP0) + - AZURECLI/2.88.0 azsdk-python-core/1.39.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005/operationStatus/NDA5NTtjMzY2YzZjOC1kYTBkLTQ1YjMtYjI5NC0yZmQxMDgzYzYwYjg=?api-version=2025-08-01&t=638971702245631099&c=MIIIpDCCBoygAwIBAgITFgIdx-8P5Q2flkVe0wABAh3H7zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUxMDIwMTM0ODIxWhcNMjYwMTE4MTM0ODIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALJsx40wbBQQVymBKxEYB3QsXs7DWrmkLk1cvGC9Oh6ZUsiS6z4fZ9KUiL7u4Cb1R-5gfYTplSDkCfn9Y776fzY9tgxKTFF2KMooWQSUUNfMYuwrWFbbHGDx79k-SN6J44MhkxgVnvirjK5cOgtR1YwGjnk0x5Ea3-szYPplTQi12yBEDft-JR3YCKn54jq1stV1W2hRp_2g1BQImqyuswXZKY2DD-s3bQClN3clms4KDqdtTyXsWYLLd1wyrriHRsQnNbYpC1EqjwDyNGLTXHMVXKbeUefj5AwkYLnb77HgLc0IW7nFQwaOLB01n0OsHuhWZeUiilCDsiV76B_8MF0CAwEAAaOCBJEwggSNMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAdoGCCsGAQUFBwEBBIIBzDCCAcgwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDEuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDQuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwHQYDVR0OBBYEFBIs_XIgrlYGjVV6tC88QEhsK39fMA4GA1UdDwEB_wQEAwIFoDCCATUGA1UdHwSCASwwggEoMIIBJKCCASCgggEchkJodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMB8GA1UdIwQYMBaAFEijrWB1am_sYPNpVdEAsTJX_GzkMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAgEAoWGeh2L-xOp4WFwNcK7-42nE8XWzyiVfNq-en8umv6B7FIlZBqRTSHucIlGoZqT7uEkuOIkyfwKUKMHeX3kte0w5f4gSgSX-JsexZj509BqurtDEgPbEjh9zUpbDAM7sODNvfiZ0HVF6sREKDyDIRGhYl_C7qO6FPNUH0wiEMRNI92WewkvN5kxHFBO56OS26He5ElMpeDPNifRXSj2RrthZNiLhtVNqOXCXV8HvAO-8PBPQGpetO260pqROBjblZfst9LCba3YKdZ8o2ojOeG5_ANB5mSX3bsBsY2ULkbRKgNBi5AXJ7q0-n01yM6-uiSvZ8wrkHLfDJ6KlzSDTLJpoVa8AUeZoPEhJgyQInNCPK5nFOD-F1QNRwQj-B-s7y16iUVZiLZ3hkxODdrbMjfPRL2P3DYn1cg-jZVq0xDX1aSlRyQq6qi9xZ9RfBPeOrsZ3SHGm0XIJdlqtaYt0Evo6fWKiFXuJ-H6nf5Qy8sLTk2q160CH2IgsW5_tA0n0ySGt5n-9j610wwPdH6ImEQ1jli9U8Ur82WjB7qQhpmYPuHOyytAGttfk1271zkw5TOpkzJfGWvT5zYv436XCj6pouSk2GJmG1iR-9pO4kPK1LWp3ujV-IXZjP_-xg0wwwsvc0BDJJZZk4tElY91ySFzLXlN8QfTH67VHl7D8ILg&s=HfO3pl9gCla6Pfav5WoGGXd7OXithFZLFNGBTry7yArWsf7FkksYyjBytjmdS0NlAzWffApzlz7nUkJENdxFMRIw2FvfTPsVlk7LDPhbztD0B209-zprDloivQKoOFG3ghxdog4TGJ273gcEh8zsSodoeUOO0hleP_xUdZ2TP8iWdO5sT1UCKvVp1UepQxSB5Oms_NHgGoOsOKNW8Aj9FbppTbCfsd9jcQRyB5dIT6r65kHLm9YG2G-SYoCZm2ewQYwNI0KWTs8RWUPXYrdWkzBfGwII9QgSMVtzABi6uVnGfWBq_LApwhwjZWfSDeT2At5XtAmr7IOr4x9z645Myw&h=Cg7Sk0Mpe9cWOGBPXOk6BFP2KfTT9nL70KnHN4L5Y_g + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005/operationStatus/NDA5NTs1MzE2MThiNS1iOTFhLTQwNmYtOTE5ZS00NTVlMDc3ZjA5ZWY=?api-version=2026-05-01&t=639202078774601718&c=MIIH9TCCBt2gAwIBAgIRAKnTo6mKeliSYj1GLETof4IwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVUyQyBDQSAwMTAeFw0yNjA3MDIxNTU4NDNaFw0yNjA5MjcyMTU4NDNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAlDQMyX5eVlNoyHQy97t41xstx7ISW3Jpt0fmktBr-SytLFjS2PEwnW3DFpc-bQgfDfHkKP0_FRLvm_mazEvS5KYzyX6nFjGqQTX3SfneJV5jo7nOwYnQHFTbkg0Dngz7AipTBy6yAiQqKMhRo_D-N4o3stwmKHeA0tAiEOx4G_PiAZBVgwqD_hS-porAKnsf-m7-vYsa-g9Cw0SQ2t7YIFgfqGifFcAH79L7QF5n4-toqH20MDZrR10dXpjNK50DvRiltXMo7xC198sVfC6ISY8hDbiFDpsKgL_lz-pJ2kyYJNyq1NUfS79AS70Bkl13eaOYbl8go_Oo41Ma5ArEgQIDAQABo4IE8jCCBO4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7Mv1WvWn7sAfft9pF9lwNBkNam0wHwYDVR0jBBgwFoAUz1EBqulDLGR2G0rwqsDykvhPw7swggHiBgNVHR8EggHZMIIB1TB1oHOgcYZvaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHegdaBzhnFodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyZXVhcC9jcmxzL2NjbWVlYXN0dXMyZXVhcHBraS9jY21lZWFzdHVzMmV1YXBpY2EwMS82NS9jdXJyZW50LmNybDBmoGSgYoZgaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHugeaB3hnVodHRwOi8vY2NtZWVhc3R1czJldWFwcGtpLmVhc3R1czJldWFwLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJldWFwaWNhMDEvNjUvY3VycmVudC5jcmwwggHnBggrBgEFBQcBAQSCAdkwggHVMHgGCCsGAQUFBzAChmxodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwegYIKwYBBQUHMAKGbmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NhY2VydHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxL2NlcnQuY2VyMGkGCCsGAQUFBzAChl1odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwcgYIKwYBBQUHMAKGZmh0dHA6Ly9jY21lZWFzdHVzMmV1YXBwa2kuZWFzdHVzMmV1YXAucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmV1YXBpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAndPCPc-CmjHOQpHPVSFI4dsJ3mAAA9L0QPDWwmXXvm66R08WToYQA9QCpkqxZEzl69AhSTR5x65hpeRv8xhwwj57QIuBD6rfMRghZH83T4x3bdOI4KmhFi_uY_52-cou5_xf0DyGAI_C77U5rC8TmVil8EsUCojV8rWkZXUBQSKZMaC1gzmzWW3pgKG9zwbD6J1M_7PW6f_zhE9KvGfBrLALoabdK0H_in5p3CyRMQee9pXSpsictb8cyfBIRU1fRSNmLnOjVSlF_Ll20gYIhnHvetGUxWU0EE9gWSJVUtwbqJjCeDouKPwe2UYUosoETTC7iluHZc0PV9EMfunH2w&s=eKRhRzd3vR4vOHo4IrtQFhduLUCra0blQulm0NI2b-ilzmK2XoBVThOqVu1doUQeVLDLzGobI_E1DyW9-jCMoucmM8EsXbt0rYyR0ZN7SyMu-R6XP8M5pngXzL31sX4LCN7PSQ0atZ35_lzwV37GOkqMElWkRbBIv9_P6HIfPdBm27Wfm73YLQ_XW0TfjXtEywONiKSXosoBdHWMSlC7UPDeh4T1Xa4Lbm3vtHH8Wr_5OlDg3UM1jxO5ElIUAKU7lCEfpH99VO7SQzx18gKHcRvau4tAly4qxJosP4SkITsGR0cbuqjWMNhi96O_j3BGTB8ES4HAcauxg7ydqwlqyw&h=NilmRMfE1DAjOnvIj7XwCeB6uUrMw98IdX4R0REHjqA response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005/operationStatus/NDA5NTtjMzY2YzZjOC1kYTBkLTQ1YjMtYjI5NC0yZmQxMDgzYzYwYjg=\",\r\n - \ \"name\": \"NDA5NTtjMzY2YzZjOC1kYTBkLTQ1YjMtYjI5NC0yZmQxMDgzYzYwYjg=\",\r\n + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005/operationStatus/NDA5NTs1MzE2MThiNS1iOTFhLTQwNmYtOTE5ZS00NTVlMDc3ZjA5ZWY=\",\r\n + \ \"name\": \"NDA5NTs1MzE2MThiNS1iOTFhLTQwNmYtOTE5ZS00NTVlMDc3ZjA5ZWY=\",\r\n \ \"status\": \"Succeeded\"\r\n}" headers: cache-control: @@ -2625,7 +2732,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 27 Oct 2025 13:58:07 GMT + - Tue, 21 Jul 2026 05:18:59 GMT expires: - '-1' pragma: @@ -2637,11 +2744,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=12f8ea5c-1212-449e-b31c-0a574f43076e/eastus2euap/0aa56d4e-0738-4ad2-bb27-a2db58026c46 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=352782de-cadf-4f14-ad97-08cd2617ef55/eastus2euap/36057f1e-3686-4ac7-b229-8d5d3673ed29 x-ms-throttling-version: - v2 x-msedge-ref: - - 'Ref A: F438D2CD0097406285575C1B568CB8F2 Ref B: JKT201051406023 Ref C: 2025-10-27T13:58:08Z' + - 'Ref A: 2EF5C362C08F4728A863E015C233636C Ref B: PNQ231110908029 Ref C: 2026-07-21T05:18:58Z' status: code: 200 message: OK @@ -2659,21 +2766,21 @@ interactions: ParameterSetName: - -n -g --immutability-state --cross-subscription-restore-state User-Agent: - - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.11.9 (Windows-10-10.0.26200-SP0) + - AZURECLI/2.88.0 azsdk-python-core/1.39.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005?api-version=2025-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005?api-version=2026-05-01 response: body: - string: '{"location":"eastus2euap","name":"clitest-vault000005","etag":"W/\"datetime''2025-10-27T13%3A58%3A06.8506332Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","monitoringSettings":{"azureMonitorAlertSettings":{"alertsForAllJobFailures":"Enabled","alertsForAllReplicationIssues":"Enabled","alertsForAllFailoverIssues":"Enabled"},"classicAlertSettings":{"alertsForCriticalOperations":"Enabled","emailNotificationsForSiteRecovery":"Enabled"}},"backupStorageVersion":"Unassigned","securitySettings":{"immutabilitySettings":{"state":"Unlocked"},"softDeleteSettings":{"softDeleteRetentionPeriodInDays":14,"softDeleteState":"AlwaysON","enhancedSecurityState":"AlwaysON"},"multiUserAuthorization":"Disabled","sourceScanConfiguration":{"state":"Disabled"}},"redundancySettings":{"standardTierStorageRedundancy":"GeoRedundant","crossRegionRestore":"Disabled"},"secureScore":"Adequate","bcdrSecurityLevel":"Good","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"PermanentlyDisabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' + string: '{"location":"eastus2euap","name":"clitest-vault000005","etag":"W/\"datetime''2026-07-21T05%3A17%3A58.2653841Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","monitoringSettings":{"azureMonitorAlertSettings":{"alertsForAllJobFailures":"Enabled","alertsForAllReplicationIssues":"Enabled","alertsForAllFailoverIssues":"Enabled"},"classicAlertSettings":{"alertsForCriticalOperations":"Enabled","emailNotificationsForSiteRecovery":"Enabled"}},"costManagementSettings":{"granularityLevel":"VaultLevel"},"backupStorageVersion":"Unassigned","securitySettings":{"immutabilitySettings":{"state":"Unlocked","configuration":{"type":"AsPerPolicy"}},"softDeleteSettings":{"softDeleteRetentionPeriodInDays":14,"softDeleteState":"AlwaysON","enhancedSecurityState":"AlwaysON"},"multiUserAuthorization":"Disabled","sourceScanConfiguration":{"state":"Disabled"}},"redundancySettings":{"standardTierStorageRedundancy":"GeoRedundant","crossRegionRestore":"Disabled"},"secureScore":"Adequate","bcdrSecurityLevel":"Good","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"PermanentlyDisabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' headers: cache-control: - no-cache content-length: - - '1366' + - '1464' content-type: - application/json; charset=utf-8 date: - - Mon, 27 Oct 2025 13:58:09 GMT + - Tue, 21 Jul 2026 05:18:59 GMT expires: - '-1' pragma: @@ -2687,7 +2794,7 @@ interactions: x-ms-throttling-version: - v2 x-msedge-ref: - - 'Ref A: 39035EB04C964BE3B153C5E63BF79201 Ref B: JKT201051407036 Ref C: 2025-10-27T13:58:09Z' + - 'Ref A: 06217C3532214067B1D6DD75F3AA5082 Ref B: PNQ231110906029 Ref C: 2026-07-21T05:18:59Z' status: code: 200 message: OK @@ -2695,37 +2802,33 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - backup vault delete + - backup vault update Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - - -n -g -y + - -n -g --cost-management-granularity User-Agent: - - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.11.9 (Windows-10-10.0.26200-SP0) - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005?api-version=2025-08-01 + - AZURECLI/2.88.0 azsdk-python-core/1.39.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000004?api-version=2026-05-01 response: body: - string: '' + string: '{"location":"eastus2euap","name":"clitest-vault000004","etag":"W/\"datetime''2026-07-21T05%3A02%3A12.4980463Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","monitoringSettings":{"azureMonitorAlertSettings":{"alertsForAllJobFailures":"Enabled","alertsForAllReplicationIssues":"Enabled","alertsForAllFailoverIssues":"Enabled"},"classicAlertSettings":{"alertsForCriticalOperations":"Enabled","emailNotificationsForSiteRecovery":"Enabled"}},"costManagementSettings":{"granularityLevel":"VaultLevel"},"backupStorageVersion":"Unassigned","securitySettings":{"softDeleteSettings":{"softDeleteRetentionPeriodInDays":14,"softDeleteState":"AlwaysON","enhancedSecurityState":"AlwaysON"},"multiUserAuthorization":"Disabled","sourceScanConfiguration":{"state":"Disabled"}},"redundancySettings":{"standardTierStorageRedundancy":"GeoRedundant","crossRegionRestore":"Disabled"},"secureScore":"Adequate","bcdrSecurityLevel":"Good","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000004","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005/operationStatus/MTAyMztkZDVmY2ZlMy0yODI0LTQ4MjQtOTBiZC02MjhkMjFjYWU4NGE=?api-version=2025-08-01&t=638971702924612975&c=MIIIpDCCBoygAwIBAgITFgIdx-8P5Q2flkVe0wABAh3H7zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUxMDIwMTM0ODIxWhcNMjYwMTE4MTM0ODIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALJsx40wbBQQVymBKxEYB3QsXs7DWrmkLk1cvGC9Oh6ZUsiS6z4fZ9KUiL7u4Cb1R-5gfYTplSDkCfn9Y776fzY9tgxKTFF2KMooWQSUUNfMYuwrWFbbHGDx79k-SN6J44MhkxgVnvirjK5cOgtR1YwGjnk0x5Ea3-szYPplTQi12yBEDft-JR3YCKn54jq1stV1W2hRp_2g1BQImqyuswXZKY2DD-s3bQClN3clms4KDqdtTyXsWYLLd1wyrriHRsQnNbYpC1EqjwDyNGLTXHMVXKbeUefj5AwkYLnb77HgLc0IW7nFQwaOLB01n0OsHuhWZeUiilCDsiV76B_8MF0CAwEAAaOCBJEwggSNMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAdoGCCsGAQUFBwEBBIIBzDCCAcgwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDEuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDQuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwHQYDVR0OBBYEFBIs_XIgrlYGjVV6tC88QEhsK39fMA4GA1UdDwEB_wQEAwIFoDCCATUGA1UdHwSCASwwggEoMIIBJKCCASCgggEchkJodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMB8GA1UdIwQYMBaAFEijrWB1am_sYPNpVdEAsTJX_GzkMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAgEAoWGeh2L-xOp4WFwNcK7-42nE8XWzyiVfNq-en8umv6B7FIlZBqRTSHucIlGoZqT7uEkuOIkyfwKUKMHeX3kte0w5f4gSgSX-JsexZj509BqurtDEgPbEjh9zUpbDAM7sODNvfiZ0HVF6sREKDyDIRGhYl_C7qO6FPNUH0wiEMRNI92WewkvN5kxHFBO56OS26He5ElMpeDPNifRXSj2RrthZNiLhtVNqOXCXV8HvAO-8PBPQGpetO260pqROBjblZfst9LCba3YKdZ8o2ojOeG5_ANB5mSX3bsBsY2ULkbRKgNBi5AXJ7q0-n01yM6-uiSvZ8wrkHLfDJ6KlzSDTLJpoVa8AUeZoPEhJgyQInNCPK5nFOD-F1QNRwQj-B-s7y16iUVZiLZ3hkxODdrbMjfPRL2P3DYn1cg-jZVq0xDX1aSlRyQq6qi9xZ9RfBPeOrsZ3SHGm0XIJdlqtaYt0Evo6fWKiFXuJ-H6nf5Qy8sLTk2q160CH2IgsW5_tA0n0ySGt5n-9j610wwPdH6ImEQ1jli9U8Ur82WjB7qQhpmYPuHOyytAGttfk1271zkw5TOpkzJfGWvT5zYv436XCj6pouSk2GJmG1iR-9pO4kPK1LWp3ujV-IXZjP_-xg0wwwsvc0BDJJZZk4tElY91ySFzLXlN8QfTH67VHl7D8ILg&s=kIiYdt69HuqhbSDA9u-HzyHI_O7t0kniy_9On2QY6tByNATkPdONZSecFjZ8-f8_jNe-YPAXycq_OB5336f40HBiMxxYNWfaNbD_aSwIoWiBtaoUNB1-4X_xV-SG7E1xH2xzd8UBZzDejXDLVNEAzHAenitEYBukyDKyOFiWra32Ma5ifyomJ72eBGoGIzfaTE00moG-fm_9Cm-gkvhMEje4mx2u-0QJfWbWDoul8OMHL2WiwcC-GCoK0q4I9P-4jV5GOzj6OPMkO9I3mBQkhz_ebMBWSMK7_vtE0KtMhS8Z9tQhuvIqPzuzsI5lhhZWVjeChG6YU1UfLtYDzM8QbQ&h=IKxPI5LsEryaQm5Yd39d_eq11aOYdvOFeYsDjN0FJrc cache-control: - no-cache content-length: - - '0' + - '1369' + content-type: + - application/json; charset=utf-8 date: - - Mon, 27 Oct 2025 13:58:11 GMT + - Tue, 21 Jul 2026 05:19:00 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005/operationResults/MTAyMztkZDVmY2ZlMy0yODI0LTQ4MjQtOTBiZC02MjhkMjFjYWU4NGE=?api-version=2025-08-01&t=638971702924769114&c=MIIIpDCCBoygAwIBAgITFgIdx-8P5Q2flkVe0wABAh3H7zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUxMDIwMTM0ODIxWhcNMjYwMTE4MTM0ODIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALJsx40wbBQQVymBKxEYB3QsXs7DWrmkLk1cvGC9Oh6ZUsiS6z4fZ9KUiL7u4Cb1R-5gfYTplSDkCfn9Y776fzY9tgxKTFF2KMooWQSUUNfMYuwrWFbbHGDx79k-SN6J44MhkxgVnvirjK5cOgtR1YwGjnk0x5Ea3-szYPplTQi12yBEDft-JR3YCKn54jq1stV1W2hRp_2g1BQImqyuswXZKY2DD-s3bQClN3clms4KDqdtTyXsWYLLd1wyrriHRsQnNbYpC1EqjwDyNGLTXHMVXKbeUefj5AwkYLnb77HgLc0IW7nFQwaOLB01n0OsHuhWZeUiilCDsiV76B_8MF0CAwEAAaOCBJEwggSNMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAdoGCCsGAQUFBwEBBIIBzDCCAcgwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDEuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDQuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwHQYDVR0OBBYEFBIs_XIgrlYGjVV6tC88QEhsK39fMA4GA1UdDwEB_wQEAwIFoDCCATUGA1UdHwSCASwwggEoMIIBJKCCASCgggEchkJodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMB8GA1UdIwQYMBaAFEijrWB1am_sYPNpVdEAsTJX_GzkMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAgEAoWGeh2L-xOp4WFwNcK7-42nE8XWzyiVfNq-en8umv6B7FIlZBqRTSHucIlGoZqT7uEkuOIkyfwKUKMHeX3kte0w5f4gSgSX-JsexZj509BqurtDEgPbEjh9zUpbDAM7sODNvfiZ0HVF6sREKDyDIRGhYl_C7qO6FPNUH0wiEMRNI92WewkvN5kxHFBO56OS26He5ElMpeDPNifRXSj2RrthZNiLhtVNqOXCXV8HvAO-8PBPQGpetO260pqROBjblZfst9LCba3YKdZ8o2ojOeG5_ANB5mSX3bsBsY2ULkbRKgNBi5AXJ7q0-n01yM6-uiSvZ8wrkHLfDJ6KlzSDTLJpoVa8AUeZoPEhJgyQInNCPK5nFOD-F1QNRwQj-B-s7y16iUVZiLZ3hkxODdrbMjfPRL2P3DYn1cg-jZVq0xDX1aSlRyQq6qi9xZ9RfBPeOrsZ3SHGm0XIJdlqtaYt0Evo6fWKiFXuJ-H6nf5Qy8sLTk2q160CH2IgsW5_tA0n0ySGt5n-9j610wwPdH6ImEQ1jli9U8Ur82WjB7qQhpmYPuHOyytAGttfk1271zkw5TOpkzJfGWvT5zYv436XCj6pouSk2GJmG1iR-9pO4kPK1LWp3ujV-IXZjP_-xg0wwwsvc0BDJJZZk4tElY91ySFzLXlN8QfTH67VHl7D8ILg&s=KufGJGFxLnpIUT2HSnBhwsjkPodO45SjTnyOA9Za600Op63jW1jEK06FLYBZ6ECzZcXxr_FmRI_DU1GsULPtVzNC4SFTyy-QIV4wn0gqgEMQ85MmS-G2-6qAGB6pyqHDFD8RV4xOQzJrVdN2Q8eC52KfoaTrLs-fVdHgCvESucCEfLn7_FDURqF7mBBIAMKOTYjcavaR3PeX5e1NE2wX9NXyy34M2yvFdBYwuVivpsycGdpUOdZ7c5ET8arSkYZ2xZi-jDuWsXN49NVyF7fjZivGro8kcAcBBDsXeyOwv4iZrT7B9B04BO6wkKufnts4LkuFxBnzakouYNft0g2i7A&h=HbgiabVelsz7OGZCkArsfccdcgdjL4rQ2hNlcHgnb4I pragma: - no-cache strict-transport-security: @@ -2734,50 +2837,50 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=12f8ea5c-1212-449e-b31c-0a574f43076e/eastus2euap/259b40ec-036f-4862-ab5e-690490af23af - x-ms-ratelimit-remaining-subscription-resource-requests: - - '199' x-ms-throttling-version: - - v1 + - v2 x-msedge-ref: - - 'Ref A: 2078DC106D9744A1ACF8AA7B3607D294 Ref B: JKT201051406060 Ref C: 2025-10-27T13:58:11Z' + - 'Ref A: 07AE7500B186480191934DED24B82EBA Ref B: PNQ231110908023 Ref C: 2026-07-21T05:19:01Z' status: - code: 202 - message: Accepted + code: 200 + message: OK - request: - body: null + body: '{"properties": {"costManagementSettings": {"granularityLevel": "ProtectedItemWithParentTag"}}}' headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - backup vault delete + - backup vault update Connection: - keep-alive + Content-Length: + - '94' + Content-Type: + - application/json ParameterSetName: - - -n -g -y + - -n -g --cost-management-granularity User-Agent: - - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.11.9 (Windows-10-10.0.26200-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005/operationStatus/MTAyMztkZDVmY2ZlMy0yODI0LTQ4MjQtOTBiZC02MjhkMjFjYWU4NGE=?api-version=2025-08-01&t=638971702924612975&c=MIIIpDCCBoygAwIBAgITFgIdx-8P5Q2flkVe0wABAh3H7zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUxMDIwMTM0ODIxWhcNMjYwMTE4MTM0ODIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALJsx40wbBQQVymBKxEYB3QsXs7DWrmkLk1cvGC9Oh6ZUsiS6z4fZ9KUiL7u4Cb1R-5gfYTplSDkCfn9Y776fzY9tgxKTFF2KMooWQSUUNfMYuwrWFbbHGDx79k-SN6J44MhkxgVnvirjK5cOgtR1YwGjnk0x5Ea3-szYPplTQi12yBEDft-JR3YCKn54jq1stV1W2hRp_2g1BQImqyuswXZKY2DD-s3bQClN3clms4KDqdtTyXsWYLLd1wyrriHRsQnNbYpC1EqjwDyNGLTXHMVXKbeUefj5AwkYLnb77HgLc0IW7nFQwaOLB01n0OsHuhWZeUiilCDsiV76B_8MF0CAwEAAaOCBJEwggSNMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAdoGCCsGAQUFBwEBBIIBzDCCAcgwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDEuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDQuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwHQYDVR0OBBYEFBIs_XIgrlYGjVV6tC88QEhsK39fMA4GA1UdDwEB_wQEAwIFoDCCATUGA1UdHwSCASwwggEoMIIBJKCCASCgggEchkJodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMB8GA1UdIwQYMBaAFEijrWB1am_sYPNpVdEAsTJX_GzkMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAgEAoWGeh2L-xOp4WFwNcK7-42nE8XWzyiVfNq-en8umv6B7FIlZBqRTSHucIlGoZqT7uEkuOIkyfwKUKMHeX3kte0w5f4gSgSX-JsexZj509BqurtDEgPbEjh9zUpbDAM7sODNvfiZ0HVF6sREKDyDIRGhYl_C7qO6FPNUH0wiEMRNI92WewkvN5kxHFBO56OS26He5ElMpeDPNifRXSj2RrthZNiLhtVNqOXCXV8HvAO-8PBPQGpetO260pqROBjblZfst9LCba3YKdZ8o2ojOeG5_ANB5mSX3bsBsY2ULkbRKgNBi5AXJ7q0-n01yM6-uiSvZ8wrkHLfDJ6KlzSDTLJpoVa8AUeZoPEhJgyQInNCPK5nFOD-F1QNRwQj-B-s7y16iUVZiLZ3hkxODdrbMjfPRL2P3DYn1cg-jZVq0xDX1aSlRyQq6qi9xZ9RfBPeOrsZ3SHGm0XIJdlqtaYt0Evo6fWKiFXuJ-H6nf5Qy8sLTk2q160CH2IgsW5_tA0n0ySGt5n-9j610wwPdH6ImEQ1jli9U8Ur82WjB7qQhpmYPuHOyytAGttfk1271zkw5TOpkzJfGWvT5zYv436XCj6pouSk2GJmG1iR-9pO4kPK1LWp3ujV-IXZjP_-xg0wwwsvc0BDJJZZk4tElY91ySFzLXlN8QfTH67VHl7D8ILg&s=kIiYdt69HuqhbSDA9u-HzyHI_O7t0kniy_9On2QY6tByNATkPdONZSecFjZ8-f8_jNe-YPAXycq_OB5336f40HBiMxxYNWfaNbD_aSwIoWiBtaoUNB1-4X_xV-SG7E1xH2xzd8UBZzDejXDLVNEAzHAenitEYBukyDKyOFiWra32Ma5ifyomJ72eBGoGIzfaTE00moG-fm_9Cm-gkvhMEje4mx2u-0QJfWbWDoul8OMHL2WiwcC-GCoK0q4I9P-4jV5GOzj6OPMkO9I3mBQkhz_ebMBWSMK7_vtE0KtMhS8Z9tQhuvIqPzuzsI5lhhZWVjeChG6YU1UfLtYDzM8QbQ&h=IKxPI5LsEryaQm5Yd39d_eq11aOYdvOFeYsDjN0FJrc + - AZURECLI/2.88.0 azsdk-python-core/1.39.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) + method: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000004?api-version=2026-05-01 response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005/operationStatus/MTAyMztkZDVmY2ZlMy0yODI0LTQ4MjQtOTBiZC02MjhkMjFjYWU4NGE=\",\r\n - \ \"name\": \"MTAyMztkZDVmY2ZlMy0yODI0LTQ4MjQtOTBiZC02MjhkMjFjYWU4NGE=\",\r\n - \ \"status\": \"Succeeded\"\r\n}" + string: '' headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000004/operationStatus/NDA5NTs4NzAzNTJiMy02NjE0LTRhNzUtOTliZS04MzU1OWYzMGRmOTk=?api-version=2026-05-01&t=639202079427891630&c=MIIH9TCCBt2gAwIBAgIRAKnTo6mKeliSYj1GLETof4IwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVUyQyBDQSAwMTAeFw0yNjA3MDIxNTU4NDNaFw0yNjA5MjcyMTU4NDNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAlDQMyX5eVlNoyHQy97t41xstx7ISW3Jpt0fmktBr-SytLFjS2PEwnW3DFpc-bQgfDfHkKP0_FRLvm_mazEvS5KYzyX6nFjGqQTX3SfneJV5jo7nOwYnQHFTbkg0Dngz7AipTBy6yAiQqKMhRo_D-N4o3stwmKHeA0tAiEOx4G_PiAZBVgwqD_hS-porAKnsf-m7-vYsa-g9Cw0SQ2t7YIFgfqGifFcAH79L7QF5n4-toqH20MDZrR10dXpjNK50DvRiltXMo7xC198sVfC6ISY8hDbiFDpsKgL_lz-pJ2kyYJNyq1NUfS79AS70Bkl13eaOYbl8go_Oo41Ma5ArEgQIDAQABo4IE8jCCBO4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7Mv1WvWn7sAfft9pF9lwNBkNam0wHwYDVR0jBBgwFoAUz1EBqulDLGR2G0rwqsDykvhPw7swggHiBgNVHR8EggHZMIIB1TB1oHOgcYZvaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHegdaBzhnFodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyZXVhcC9jcmxzL2NjbWVlYXN0dXMyZXVhcHBraS9jY21lZWFzdHVzMmV1YXBpY2EwMS82NS9jdXJyZW50LmNybDBmoGSgYoZgaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHugeaB3hnVodHRwOi8vY2NtZWVhc3R1czJldWFwcGtpLmVhc3R1czJldWFwLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJldWFwaWNhMDEvNjUvY3VycmVudC5jcmwwggHnBggrBgEFBQcBAQSCAdkwggHVMHgGCCsGAQUFBzAChmxodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwegYIKwYBBQUHMAKGbmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NhY2VydHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxL2NlcnQuY2VyMGkGCCsGAQUFBzAChl1odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwcgYIKwYBBQUHMAKGZmh0dHA6Ly9jY21lZWFzdHVzMmV1YXBwa2kuZWFzdHVzMmV1YXAucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmV1YXBpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAndPCPc-CmjHOQpHPVSFI4dsJ3mAAA9L0QPDWwmXXvm66R08WToYQA9QCpkqxZEzl69AhSTR5x65hpeRv8xhwwj57QIuBD6rfMRghZH83T4x3bdOI4KmhFi_uY_52-cou5_xf0DyGAI_C77U5rC8TmVil8EsUCojV8rWkZXUBQSKZMaC1gzmzWW3pgKG9zwbD6J1M_7PW6f_zhE9KvGfBrLALoabdK0H_in5p3CyRMQee9pXSpsictb8cyfBIRU1fRSNmLnOjVSlF_Ll20gYIhnHvetGUxWU0EE9gWSJVUtwbqJjCeDouKPwe2UYUosoETTC7iluHZc0PV9EMfunH2w&s=hvb8rZLfnp98TJWwGj4e4Hr5K0xdRNuZ-V-USWCfVIrSKMHxwsnlq2OBJ15i2yTrbKP0j9wLNA0lmSpmVzARO7SwfWSEE32uJ2ER1m8FJ6zP0z_cpfr-AjWed1NQQNQ4jBm0y3pCrbW3ZxUz750vfUkYiiIfNiGMxPmRmLKXyLEV5aUmq7Sw1gvmDuQUsax8-bYuevSgckAb0cVdUg3qRat984Q3oqgjBuVM5dseKwHZv_TwLqkNqd3tc7ysXzdBD3JMblw6KAGUlrn17CDdZy8sgw4XCEhDTVy5hcSB8aYjfvZuaaix3rAkwIwlEfbkMfZBerVfeDOQCnzRhWnyoQ&h=DCJ_JCi1MxRB7QDrvipGrh89goyHa4oVMGDZQeS3gvs cache-control: - no-cache content-length: - - '345' - content-type: - - application/json; charset=utf-8 + - '0' date: - - Mon, 27 Oct 2025 13:58:15 GMT + - Tue, 21 Jul 2026 05:19:02 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000004/operationResults/NDA5NTs4NzAzNTJiMy02NjE0LTRhNzUtOTliZS04MzU1OWYzMGRmOTk=?api-version=2026-05-01&t=639202079428047866&c=MIIH9TCCBt2gAwIBAgIRAKnTo6mKeliSYj1GLETof4IwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVUyQyBDQSAwMTAeFw0yNjA3MDIxNTU4NDNaFw0yNjA5MjcyMTU4NDNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAlDQMyX5eVlNoyHQy97t41xstx7ISW3Jpt0fmktBr-SytLFjS2PEwnW3DFpc-bQgfDfHkKP0_FRLvm_mazEvS5KYzyX6nFjGqQTX3SfneJV5jo7nOwYnQHFTbkg0Dngz7AipTBy6yAiQqKMhRo_D-N4o3stwmKHeA0tAiEOx4G_PiAZBVgwqD_hS-porAKnsf-m7-vYsa-g9Cw0SQ2t7YIFgfqGifFcAH79L7QF5n4-toqH20MDZrR10dXpjNK50DvRiltXMo7xC198sVfC6ISY8hDbiFDpsKgL_lz-pJ2kyYJNyq1NUfS79AS70Bkl13eaOYbl8go_Oo41Ma5ArEgQIDAQABo4IE8jCCBO4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7Mv1WvWn7sAfft9pF9lwNBkNam0wHwYDVR0jBBgwFoAUz1EBqulDLGR2G0rwqsDykvhPw7swggHiBgNVHR8EggHZMIIB1TB1oHOgcYZvaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHegdaBzhnFodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyZXVhcC9jcmxzL2NjbWVlYXN0dXMyZXVhcHBraS9jY21lZWFzdHVzMmV1YXBpY2EwMS82NS9jdXJyZW50LmNybDBmoGSgYoZgaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHugeaB3hnVodHRwOi8vY2NtZWVhc3R1czJldWFwcGtpLmVhc3R1czJldWFwLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJldWFwaWNhMDEvNjUvY3VycmVudC5jcmwwggHnBggrBgEFBQcBAQSCAdkwggHVMHgGCCsGAQUFBzAChmxodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwegYIKwYBBQUHMAKGbmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NhY2VydHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxL2NlcnQuY2VyMGkGCCsGAQUFBzAChl1odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwcgYIKwYBBQUHMAKGZmh0dHA6Ly9jY21lZWFzdHVzMmV1YXBwa2kuZWFzdHVzMmV1YXAucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmV1YXBpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAndPCPc-CmjHOQpHPVSFI4dsJ3mAAA9L0QPDWwmXXvm66R08WToYQA9QCpkqxZEzl69AhSTR5x65hpeRv8xhwwj57QIuBD6rfMRghZH83T4x3bdOI4KmhFi_uY_52-cou5_xf0DyGAI_C77U5rC8TmVil8EsUCojV8rWkZXUBQSKZMaC1gzmzWW3pgKG9zwbD6J1M_7PW6f_zhE9KvGfBrLALoabdK0H_in5p3CyRMQee9pXSpsictb8cyfBIRU1fRSNmLnOjVSlF_Ll20gYIhnHvetGUxWU0EE9gWSJVUtwbqJjCeDouKPwe2UYUosoETTC7iluHZc0PV9EMfunH2w&s=XXJL0YC-pdULT6jp8Xy0Xg-dEEJXRX-c6D092MYocnxZSNoKIx1c1DMS5ubhdevYLiv1sW8R173bbliBPsnZehojU232TBPVCEtSqBtCPYxEwop5YbFWd8iHmFIl63pl0IjqvVD7GHCP0iLeK9Ld4ZydY1OsXJ7aiEKS9n1vz7JSn25SFpods-GaKiXPlvDbKDa0Pdz-mkN5oCpuNGbXawJ1TvBGirFSFqRx05aTb4LlinP2kAvPTNrPKgGHVvF2joCFik4LSVCX95WDbAJrg5Yp_tG-J7uzLdX8F8TQal5d90rKgoAYKI6oRiATC2vBHBokDf_KuD7v1RjvxZSyFQ&h=1m4XvD1F-KJXThymlNHltfGMga5z-d1hKSbYdYpyzTY pragma: - no-cache strict-transport-security: @@ -2787,14 +2890,522 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=12f8ea5c-1212-449e-b31c-0a574f43076e/southeastasia/3b7a5657-79ca-4659-80f7-a8c6efd1f852 - x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=352782de-cadf-4f14-ad97-08cd2617ef55/eastus2euap/16bc92ca-8afb-44b2-beca-b61746ddbe4c + x-ms-ratelimit-remaining-subscription-resource-requests: + - '799' + x-ms-throttling-version: + - v1 x-msedge-ref: - - 'Ref A: DE1111D2578445B19C88F48FE68A6FAC Ref B: JKT201051407060 Ref C: 2025-10-27T13:58:14Z' + - 'Ref A: 9FD5491333964F968CA5A6D31F32061A Ref B: PNQ231110906060 Ref C: 2026-07-21T05:19:01Z' status: - code: 200 - message: OK + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - backup vault update + Connection: + - keep-alive + ParameterSetName: + - -n -g --cost-management-granularity + User-Agent: + - AZURECLI/2.88.0 azsdk-python-core/1.39.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000004/operationStatus/NDA5NTs4NzAzNTJiMy02NjE0LTRhNzUtOTliZS04MzU1OWYzMGRmOTk=?api-version=2026-05-01&t=639202079427891630&c=MIIH9TCCBt2gAwIBAgIRAKnTo6mKeliSYj1GLETof4IwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVUyQyBDQSAwMTAeFw0yNjA3MDIxNTU4NDNaFw0yNjA5MjcyMTU4NDNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAlDQMyX5eVlNoyHQy97t41xstx7ISW3Jpt0fmktBr-SytLFjS2PEwnW3DFpc-bQgfDfHkKP0_FRLvm_mazEvS5KYzyX6nFjGqQTX3SfneJV5jo7nOwYnQHFTbkg0Dngz7AipTBy6yAiQqKMhRo_D-N4o3stwmKHeA0tAiEOx4G_PiAZBVgwqD_hS-porAKnsf-m7-vYsa-g9Cw0SQ2t7YIFgfqGifFcAH79L7QF5n4-toqH20MDZrR10dXpjNK50DvRiltXMo7xC198sVfC6ISY8hDbiFDpsKgL_lz-pJ2kyYJNyq1NUfS79AS70Bkl13eaOYbl8go_Oo41Ma5ArEgQIDAQABo4IE8jCCBO4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7Mv1WvWn7sAfft9pF9lwNBkNam0wHwYDVR0jBBgwFoAUz1EBqulDLGR2G0rwqsDykvhPw7swggHiBgNVHR8EggHZMIIB1TB1oHOgcYZvaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHegdaBzhnFodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyZXVhcC9jcmxzL2NjbWVlYXN0dXMyZXVhcHBraS9jY21lZWFzdHVzMmV1YXBpY2EwMS82NS9jdXJyZW50LmNybDBmoGSgYoZgaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHugeaB3hnVodHRwOi8vY2NtZWVhc3R1czJldWFwcGtpLmVhc3R1czJldWFwLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJldWFwaWNhMDEvNjUvY3VycmVudC5jcmwwggHnBggrBgEFBQcBAQSCAdkwggHVMHgGCCsGAQUFBzAChmxodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwegYIKwYBBQUHMAKGbmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NhY2VydHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxL2NlcnQuY2VyMGkGCCsGAQUFBzAChl1odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwcgYIKwYBBQUHMAKGZmh0dHA6Ly9jY21lZWFzdHVzMmV1YXBwa2kuZWFzdHVzMmV1YXAucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmV1YXBpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAndPCPc-CmjHOQpHPVSFI4dsJ3mAAA9L0QPDWwmXXvm66R08WToYQA9QCpkqxZEzl69AhSTR5x65hpeRv8xhwwj57QIuBD6rfMRghZH83T4x3bdOI4KmhFi_uY_52-cou5_xf0DyGAI_C77U5rC8TmVil8EsUCojV8rWkZXUBQSKZMaC1gzmzWW3pgKG9zwbD6J1M_7PW6f_zhE9KvGfBrLALoabdK0H_in5p3CyRMQee9pXSpsictb8cyfBIRU1fRSNmLnOjVSlF_Ll20gYIhnHvetGUxWU0EE9gWSJVUtwbqJjCeDouKPwe2UYUosoETTC7iluHZc0PV9EMfunH2w&s=hvb8rZLfnp98TJWwGj4e4Hr5K0xdRNuZ-V-USWCfVIrSKMHxwsnlq2OBJ15i2yTrbKP0j9wLNA0lmSpmVzARO7SwfWSEE32uJ2ER1m8FJ6zP0z_cpfr-AjWed1NQQNQ4jBm0y3pCrbW3ZxUz750vfUkYiiIfNiGMxPmRmLKXyLEV5aUmq7Sw1gvmDuQUsax8-bYuevSgckAb0cVdUg3qRat984Q3oqgjBuVM5dseKwHZv_TwLqkNqd3tc7ysXzdBD3JMblw6KAGUlrn17CDdZy8sgw4XCEhDTVy5hcSB8aYjfvZuaaix3rAkwIwlEfbkMfZBerVfeDOQCnzRhWnyoQ&h=DCJ_JCi1MxRB7QDrvipGrh89goyHa4oVMGDZQeS3gvs + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000004/operationStatus/NDA5NTs4NzAzNTJiMy02NjE0LTRhNzUtOTliZS04MzU1OWYzMGRmOTk=\",\r\n + \ \"name\": \"NDA5NTs4NzAzNTJiMy02NjE0LTRhNzUtOTliZS04MzU1OWYzMGRmOTk=\",\r\n + \ \"status\": \"InProgress\"\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000004/operationStatus/NDA5NTs4NzAzNTJiMy02NjE0LTRhNzUtOTliZS04MzU1OWYzMGRmOTk=?api-version=2026-05-01&t=639202079439610567&c=MIIH9TCCBt2gAwIBAgIRAKnTo6mKeliSYj1GLETof4IwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVUyQyBDQSAwMTAeFw0yNjA3MDIxNTU4NDNaFw0yNjA5MjcyMTU4NDNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAlDQMyX5eVlNoyHQy97t41xstx7ISW3Jpt0fmktBr-SytLFjS2PEwnW3DFpc-bQgfDfHkKP0_FRLvm_mazEvS5KYzyX6nFjGqQTX3SfneJV5jo7nOwYnQHFTbkg0Dngz7AipTBy6yAiQqKMhRo_D-N4o3stwmKHeA0tAiEOx4G_PiAZBVgwqD_hS-porAKnsf-m7-vYsa-g9Cw0SQ2t7YIFgfqGifFcAH79L7QF5n4-toqH20MDZrR10dXpjNK50DvRiltXMo7xC198sVfC6ISY8hDbiFDpsKgL_lz-pJ2kyYJNyq1NUfS79AS70Bkl13eaOYbl8go_Oo41Ma5ArEgQIDAQABo4IE8jCCBO4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7Mv1WvWn7sAfft9pF9lwNBkNam0wHwYDVR0jBBgwFoAUz1EBqulDLGR2G0rwqsDykvhPw7swggHiBgNVHR8EggHZMIIB1TB1oHOgcYZvaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHegdaBzhnFodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyZXVhcC9jcmxzL2NjbWVlYXN0dXMyZXVhcHBraS9jY21lZWFzdHVzMmV1YXBpY2EwMS82NS9jdXJyZW50LmNybDBmoGSgYoZgaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHugeaB3hnVodHRwOi8vY2NtZWVhc3R1czJldWFwcGtpLmVhc3R1czJldWFwLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJldWFwaWNhMDEvNjUvY3VycmVudC5jcmwwggHnBggrBgEFBQcBAQSCAdkwggHVMHgGCCsGAQUFBzAChmxodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwegYIKwYBBQUHMAKGbmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NhY2VydHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxL2NlcnQuY2VyMGkGCCsGAQUFBzAChl1odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwcgYIKwYBBQUHMAKGZmh0dHA6Ly9jY21lZWFzdHVzMmV1YXBwa2kuZWFzdHVzMmV1YXAucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmV1YXBpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAndPCPc-CmjHOQpHPVSFI4dsJ3mAAA9L0QPDWwmXXvm66R08WToYQA9QCpkqxZEzl69AhSTR5x65hpeRv8xhwwj57QIuBD6rfMRghZH83T4x3bdOI4KmhFi_uY_52-cou5_xf0DyGAI_C77U5rC8TmVil8EsUCojV8rWkZXUBQSKZMaC1gzmzWW3pgKG9zwbD6J1M_7PW6f_zhE9KvGfBrLALoabdK0H_in5p3CyRMQee9pXSpsictb8cyfBIRU1fRSNmLnOjVSlF_Ll20gYIhnHvetGUxWU0EE9gWSJVUtwbqJjCeDouKPwe2UYUosoETTC7iluHZc0PV9EMfunH2w&s=TsqZomjS1Ysan2MMEdlp1psy_AgmK8JwMW6B95xrgtLmxWSj3EaT1ZhK0yjwPESgQubClfDz5TrsKJPI2U8LhxXkFm7GUD-sSmFETAgI3GlvftraieZn3mCWkwEdnOlfec7q9uixbhdXPJA8ocivJGbRxyJiEbPPZ9Ath5UwYUOzAq-9LvDlI8-gsaa6v33c9WkyDbvqcNqgDeySM09AYMgLayRzzioAlJxDA3flXMrExG_42sJ0_PV2YeZgO8zvcX-VJP4C6yR2fWblfRmlX1RgsNEFyuxskrD-Gwl1A9UpS2H6iGVCgeo167DODocIo7lPGLoMZ3xAAy0T0-JFvg&h=6JrmcT7L1foDDrvPY7PnHxwQMc_a9W4_bGw0f1_CUjg + cache-control: + - no-cache + content-length: + - '346' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 21 Jul 2026 05:19:03 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000004/operationResults/NDA5NTs4NzAzNTJiMy02NjE0LTRhNzUtOTliZS04MzU1OWYzMGRmOTk=?api-version=2026-05-01&t=639202079439610567&c=MIIH9TCCBt2gAwIBAgIRAKnTo6mKeliSYj1GLETof4IwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVUyQyBDQSAwMTAeFw0yNjA3MDIxNTU4NDNaFw0yNjA5MjcyMTU4NDNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAlDQMyX5eVlNoyHQy97t41xstx7ISW3Jpt0fmktBr-SytLFjS2PEwnW3DFpc-bQgfDfHkKP0_FRLvm_mazEvS5KYzyX6nFjGqQTX3SfneJV5jo7nOwYnQHFTbkg0Dngz7AipTBy6yAiQqKMhRo_D-N4o3stwmKHeA0tAiEOx4G_PiAZBVgwqD_hS-porAKnsf-m7-vYsa-g9Cw0SQ2t7YIFgfqGifFcAH79L7QF5n4-toqH20MDZrR10dXpjNK50DvRiltXMo7xC198sVfC6ISY8hDbiFDpsKgL_lz-pJ2kyYJNyq1NUfS79AS70Bkl13eaOYbl8go_Oo41Ma5ArEgQIDAQABo4IE8jCCBO4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7Mv1WvWn7sAfft9pF9lwNBkNam0wHwYDVR0jBBgwFoAUz1EBqulDLGR2G0rwqsDykvhPw7swggHiBgNVHR8EggHZMIIB1TB1oHOgcYZvaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHegdaBzhnFodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyZXVhcC9jcmxzL2NjbWVlYXN0dXMyZXVhcHBraS9jY21lZWFzdHVzMmV1YXBpY2EwMS82NS9jdXJyZW50LmNybDBmoGSgYoZgaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHugeaB3hnVodHRwOi8vY2NtZWVhc3R1czJldWFwcGtpLmVhc3R1czJldWFwLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJldWFwaWNhMDEvNjUvY3VycmVudC5jcmwwggHnBggrBgEFBQcBAQSCAdkwggHVMHgGCCsGAQUFBzAChmxodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwegYIKwYBBQUHMAKGbmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NhY2VydHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxL2NlcnQuY2VyMGkGCCsGAQUFBzAChl1odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwcgYIKwYBBQUHMAKGZmh0dHA6Ly9jY21lZWFzdHVzMmV1YXBwa2kuZWFzdHVzMmV1YXAucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmV1YXBpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAndPCPc-CmjHOQpHPVSFI4dsJ3mAAA9L0QPDWwmXXvm66R08WToYQA9QCpkqxZEzl69AhSTR5x65hpeRv8xhwwj57QIuBD6rfMRghZH83T4x3bdOI4KmhFi_uY_52-cou5_xf0DyGAI_C77U5rC8TmVil8EsUCojV8rWkZXUBQSKZMaC1gzmzWW3pgKG9zwbD6J1M_7PW6f_zhE9KvGfBrLALoabdK0H_in5p3CyRMQee9pXSpsictb8cyfBIRU1fRSNmLnOjVSlF_Ll20gYIhnHvetGUxWU0EE9gWSJVUtwbqJjCeDouKPwe2UYUosoETTC7iluHZc0PV9EMfunH2w&s=BQ5rg3uyHqVcQBC0mffqF7ydbUDJj19dH3ytfea5kojJ1kHcLG0781AZDuGKC8ZMb1vVFT6zzLdJccx6lmJKGTP6BxboOzJ5Tm269nBj1m45zu2UrvYw9YU0KwZ1KNiNzRc__UH2pDIR4BTM-k3svXywin5vYCf6DdNlwVbr0aADKe5k2iZtzk9_x6cQ2EQD0jpRaQqjQBR7_NJWPdsFLC1u4CkmeaUnoIxVHza9LKB-w4AWksMn1ADi4KsZ-BFxhkVjhJ4YL29g0Swarb71TcO10PmsK_yqe7ypYn2EB6bQeQf-Aw75_w_Wz135_eWgx3msZEyN1DVYEcMoWQDldQ&h=hGxI-VXHION_EENXe4cpk3wMGKEF3flK6ihWOGmOEeM + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=352782de-cadf-4f14-ad97-08cd2617ef55/eastus2euap/b3b2efe7-1b32-4419-88e2-6d654857e024 + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: B277D1C672BF4E1B8C46E3864E4F8EEC Ref B: PNQ231110907052 Ref C: 2026-07-21T05:19:03Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - backup vault update + Connection: + - keep-alive + ParameterSetName: + - -n -g --cost-management-granularity + User-Agent: + - AZURECLI/2.88.0 azsdk-python-core/1.39.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000004/operationStatus/NDA5NTs4NzAzNTJiMy02NjE0LTRhNzUtOTliZS04MzU1OWYzMGRmOTk=?api-version=2026-05-01&t=639202079427891630&c=MIIH9TCCBt2gAwIBAgIRAKnTo6mKeliSYj1GLETof4IwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVUyQyBDQSAwMTAeFw0yNjA3MDIxNTU4NDNaFw0yNjA5MjcyMTU4NDNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAlDQMyX5eVlNoyHQy97t41xstx7ISW3Jpt0fmktBr-SytLFjS2PEwnW3DFpc-bQgfDfHkKP0_FRLvm_mazEvS5KYzyX6nFjGqQTX3SfneJV5jo7nOwYnQHFTbkg0Dngz7AipTBy6yAiQqKMhRo_D-N4o3stwmKHeA0tAiEOx4G_PiAZBVgwqD_hS-porAKnsf-m7-vYsa-g9Cw0SQ2t7YIFgfqGifFcAH79L7QF5n4-toqH20MDZrR10dXpjNK50DvRiltXMo7xC198sVfC6ISY8hDbiFDpsKgL_lz-pJ2kyYJNyq1NUfS79AS70Bkl13eaOYbl8go_Oo41Ma5ArEgQIDAQABo4IE8jCCBO4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7Mv1WvWn7sAfft9pF9lwNBkNam0wHwYDVR0jBBgwFoAUz1EBqulDLGR2G0rwqsDykvhPw7swggHiBgNVHR8EggHZMIIB1TB1oHOgcYZvaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHegdaBzhnFodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyZXVhcC9jcmxzL2NjbWVlYXN0dXMyZXVhcHBraS9jY21lZWFzdHVzMmV1YXBpY2EwMS82NS9jdXJyZW50LmNybDBmoGSgYoZgaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHugeaB3hnVodHRwOi8vY2NtZWVhc3R1czJldWFwcGtpLmVhc3R1czJldWFwLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJldWFwaWNhMDEvNjUvY3VycmVudC5jcmwwggHnBggrBgEFBQcBAQSCAdkwggHVMHgGCCsGAQUFBzAChmxodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwegYIKwYBBQUHMAKGbmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NhY2VydHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxL2NlcnQuY2VyMGkGCCsGAQUFBzAChl1odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwcgYIKwYBBQUHMAKGZmh0dHA6Ly9jY21lZWFzdHVzMmV1YXBwa2kuZWFzdHVzMmV1YXAucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmV1YXBpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAndPCPc-CmjHOQpHPVSFI4dsJ3mAAA9L0QPDWwmXXvm66R08WToYQA9QCpkqxZEzl69AhSTR5x65hpeRv8xhwwj57QIuBD6rfMRghZH83T4x3bdOI4KmhFi_uY_52-cou5_xf0DyGAI_C77U5rC8TmVil8EsUCojV8rWkZXUBQSKZMaC1gzmzWW3pgKG9zwbD6J1M_7PW6f_zhE9KvGfBrLALoabdK0H_in5p3CyRMQee9pXSpsictb8cyfBIRU1fRSNmLnOjVSlF_Ll20gYIhnHvetGUxWU0EE9gWSJVUtwbqJjCeDouKPwe2UYUosoETTC7iluHZc0PV9EMfunH2w&s=hvb8rZLfnp98TJWwGj4e4Hr5K0xdRNuZ-V-USWCfVIrSKMHxwsnlq2OBJ15i2yTrbKP0j9wLNA0lmSpmVzARO7SwfWSEE32uJ2ER1m8FJ6zP0z_cpfr-AjWed1NQQNQ4jBm0y3pCrbW3ZxUz750vfUkYiiIfNiGMxPmRmLKXyLEV5aUmq7Sw1gvmDuQUsax8-bYuevSgckAb0cVdUg3qRat984Q3oqgjBuVM5dseKwHZv_TwLqkNqd3tc7ysXzdBD3JMblw6KAGUlrn17CDdZy8sgw4XCEhDTVy5hcSB8aYjfvZuaaix3rAkwIwlEfbkMfZBerVfeDOQCnzRhWnyoQ&h=DCJ_JCi1MxRB7QDrvipGrh89goyHa4oVMGDZQeS3gvs + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000004/operationStatus/NDA5NTs4NzAzNTJiMy02NjE0LTRhNzUtOTliZS04MzU1OWYzMGRmOTk=\",\r\n + \ \"name\": \"NDA5NTs4NzAzNTJiMy02NjE0LTRhNzUtOTliZS04MzU1OWYzMGRmOTk=\",\r\n + \ \"status\": \"Succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '345' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 21 Jul 2026 05:20:04 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=352782de-cadf-4f14-ad97-08cd2617ef55/eastus2euap/eac903f2-5cf1-4edf-859e-e6c749f8eb92 + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 2DFDFD7BCE3D4CD28B21E101FB5DAE65 Ref B: PNQ231110908042 Ref C: 2026-07-21T05:20:04Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - backup vault update + Connection: + - keep-alive + ParameterSetName: + - -n -g --cost-management-granularity + User-Agent: + - AZURECLI/2.88.0 azsdk-python-core/1.39.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000004?api-version=2026-05-01 + response: + body: + string: '{"location":"eastus2euap","name":"clitest-vault000004","etag":"W/\"datetime''2026-07-21T05%3A19%3A05.2282235Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","monitoringSettings":{"azureMonitorAlertSettings":{"alertsForAllJobFailures":"Enabled","alertsForAllReplicationIssues":"Enabled","alertsForAllFailoverIssues":"Enabled"},"classicAlertSettings":{"alertsForCriticalOperations":"Enabled","emailNotificationsForSiteRecovery":"Enabled"}},"costManagementSettings":{"granularityLevel":"ProtectedItemWithParentTag"},"backupStorageVersion":"Unassigned","securitySettings":{"softDeleteSettings":{"softDeleteRetentionPeriodInDays":14,"softDeleteState":"AlwaysON","enhancedSecurityState":"AlwaysON"},"multiUserAuthorization":"Disabled","sourceScanConfiguration":{"state":"Disabled"}},"redundancySettings":{"standardTierStorageRedundancy":"GeoRedundant","crossRegionRestore":"Disabled"},"secureScore":"Adequate","bcdrSecurityLevel":"Good","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000004","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' + headers: + cache-control: + - no-cache + content-length: + - '1385' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 21 Jul 2026 05:20:05 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: B26B55A494C04C21BB0C93B79EF25B7A Ref B: PNQ231110909031 Ref C: 2026-07-21T05:20:05Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup vault update + Connection: + - keep-alive + ParameterSetName: + - -n -g --cost-management-granularity + User-Agent: + - AZURECLI/2.88.0 azsdk-python-core/1.39.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005?api-version=2026-05-01 + response: + body: + string: '{"location":"eastus2euap","name":"clitest-vault000005","etag":"W/\"datetime''2026-07-21T05%3A17%3A58.2653841Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","monitoringSettings":{"azureMonitorAlertSettings":{"alertsForAllJobFailures":"Enabled","alertsForAllReplicationIssues":"Enabled","alertsForAllFailoverIssues":"Enabled"},"classicAlertSettings":{"alertsForCriticalOperations":"Enabled","emailNotificationsForSiteRecovery":"Enabled"}},"costManagementSettings":{"granularityLevel":"VaultLevel"},"backupStorageVersion":"Unassigned","securitySettings":{"immutabilitySettings":{"state":"Unlocked","configuration":{"type":"AsPerPolicy"}},"softDeleteSettings":{"softDeleteRetentionPeriodInDays":14,"softDeleteState":"AlwaysON","enhancedSecurityState":"AlwaysON"},"multiUserAuthorization":"Disabled","sourceScanConfiguration":{"state":"Disabled"}},"redundancySettings":{"standardTierStorageRedundancy":"GeoRedundant","crossRegionRestore":"Disabled"},"secureScore":"Adequate","bcdrSecurityLevel":"Good","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"PermanentlyDisabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' + headers: + cache-control: + - no-cache + content-length: + - '1464' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 21 Jul 2026 05:20:07 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: A26875F013E34D1C8CEC464FB1856A06 Ref B: PNQ231110908062 Ref C: 2026-07-21T05:20:07Z' + status: + code: 200 + message: OK +- request: + body: '{"properties": {"costManagementSettings": {"granularityLevel": "ProtectedItemLevel"}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup vault update + Connection: + - keep-alive + Content-Length: + - '86' + Content-Type: + - application/json + ParameterSetName: + - -n -g --cost-management-granularity + User-Agent: + - AZURECLI/2.88.0 azsdk-python-core/1.39.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) + method: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005?api-version=2026-05-01 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005/operationStatus/NDA5NTs2NGI3YTc3My05MjIyLTQ4MDAtYjc1Yy1lMDFjYjQzODlmYjQ=?api-version=2026-05-01&t=639202080083437554&c=MIIH9TCCBt2gAwIBAgIRAKnTo6mKeliSYj1GLETof4IwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVUyQyBDQSAwMTAeFw0yNjA3MDIxNTU4NDNaFw0yNjA5MjcyMTU4NDNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAlDQMyX5eVlNoyHQy97t41xstx7ISW3Jpt0fmktBr-SytLFjS2PEwnW3DFpc-bQgfDfHkKP0_FRLvm_mazEvS5KYzyX6nFjGqQTX3SfneJV5jo7nOwYnQHFTbkg0Dngz7AipTBy6yAiQqKMhRo_D-N4o3stwmKHeA0tAiEOx4G_PiAZBVgwqD_hS-porAKnsf-m7-vYsa-g9Cw0SQ2t7YIFgfqGifFcAH79L7QF5n4-toqH20MDZrR10dXpjNK50DvRiltXMo7xC198sVfC6ISY8hDbiFDpsKgL_lz-pJ2kyYJNyq1NUfS79AS70Bkl13eaOYbl8go_Oo41Ma5ArEgQIDAQABo4IE8jCCBO4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7Mv1WvWn7sAfft9pF9lwNBkNam0wHwYDVR0jBBgwFoAUz1EBqulDLGR2G0rwqsDykvhPw7swggHiBgNVHR8EggHZMIIB1TB1oHOgcYZvaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHegdaBzhnFodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyZXVhcC9jcmxzL2NjbWVlYXN0dXMyZXVhcHBraS9jY21lZWFzdHVzMmV1YXBpY2EwMS82NS9jdXJyZW50LmNybDBmoGSgYoZgaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHugeaB3hnVodHRwOi8vY2NtZWVhc3R1czJldWFwcGtpLmVhc3R1czJldWFwLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJldWFwaWNhMDEvNjUvY3VycmVudC5jcmwwggHnBggrBgEFBQcBAQSCAdkwggHVMHgGCCsGAQUFBzAChmxodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwegYIKwYBBQUHMAKGbmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NhY2VydHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxL2NlcnQuY2VyMGkGCCsGAQUFBzAChl1odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwcgYIKwYBBQUHMAKGZmh0dHA6Ly9jY21lZWFzdHVzMmV1YXBwa2kuZWFzdHVzMmV1YXAucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmV1YXBpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAndPCPc-CmjHOQpHPVSFI4dsJ3mAAA9L0QPDWwmXXvm66R08WToYQA9QCpkqxZEzl69AhSTR5x65hpeRv8xhwwj57QIuBD6rfMRghZH83T4x3bdOI4KmhFi_uY_52-cou5_xf0DyGAI_C77U5rC8TmVil8EsUCojV8rWkZXUBQSKZMaC1gzmzWW3pgKG9zwbD6J1M_7PW6f_zhE9KvGfBrLALoabdK0H_in5p3CyRMQee9pXSpsictb8cyfBIRU1fRSNmLnOjVSlF_Ll20gYIhnHvetGUxWU0EE9gWSJVUtwbqJjCeDouKPwe2UYUosoETTC7iluHZc0PV9EMfunH2w&s=N6xAjYwa1oCKFEE2iXLFJDvQXtsuOJlbLWj4G4v6Sp_6mXZ6bQ0J1J7OJR8p90hyy5bdeP5YK5HIrtzSzM3RvnJQO3zohpC905ivUVoxVY2Qfv2cJYblH-MNNQAGDAMYGHryYkZecFvgFOFfLuH8A57vIybyQgUKO_TlDVxZ4CiS43yCYvFdr46sYevhadrG62ftfglignBVLLVVfEl40k5mAXo9dRjf6lX-exGPT2Q0Dr19xnhfD8x5kJdJ0lZs5VQPJQkOfOAPBUUjRsBEWnv4MAISWeIpYYXBm0guJlj58yvUh6-fuke3UyZu_y3nq_JQZ77bbkUSKUG0qOAC9w&h=raB4Bsrcpdo_pjXMFzqF_h5-kkb0R-UdoREYmFImp8Y + cache-control: + - no-cache + content-length: + - '0' + date: + - Tue, 21 Jul 2026 05:20:08 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005/operationResults/NDA5NTs2NGI3YTc3My05MjIyLTQ4MDAtYjc1Yy1lMDFjYjQzODlmYjQ=?api-version=2026-05-01&t=639202080083437554&c=MIIH9TCCBt2gAwIBAgIRAKnTo6mKeliSYj1GLETof4IwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVUyQyBDQSAwMTAeFw0yNjA3MDIxNTU4NDNaFw0yNjA5MjcyMTU4NDNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAlDQMyX5eVlNoyHQy97t41xstx7ISW3Jpt0fmktBr-SytLFjS2PEwnW3DFpc-bQgfDfHkKP0_FRLvm_mazEvS5KYzyX6nFjGqQTX3SfneJV5jo7nOwYnQHFTbkg0Dngz7AipTBy6yAiQqKMhRo_D-N4o3stwmKHeA0tAiEOx4G_PiAZBVgwqD_hS-porAKnsf-m7-vYsa-g9Cw0SQ2t7YIFgfqGifFcAH79L7QF5n4-toqH20MDZrR10dXpjNK50DvRiltXMo7xC198sVfC6ISY8hDbiFDpsKgL_lz-pJ2kyYJNyq1NUfS79AS70Bkl13eaOYbl8go_Oo41Ma5ArEgQIDAQABo4IE8jCCBO4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7Mv1WvWn7sAfft9pF9lwNBkNam0wHwYDVR0jBBgwFoAUz1EBqulDLGR2G0rwqsDykvhPw7swggHiBgNVHR8EggHZMIIB1TB1oHOgcYZvaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHegdaBzhnFodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyZXVhcC9jcmxzL2NjbWVlYXN0dXMyZXVhcHBraS9jY21lZWFzdHVzMmV1YXBpY2EwMS82NS9jdXJyZW50LmNybDBmoGSgYoZgaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHugeaB3hnVodHRwOi8vY2NtZWVhc3R1czJldWFwcGtpLmVhc3R1czJldWFwLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJldWFwaWNhMDEvNjUvY3VycmVudC5jcmwwggHnBggrBgEFBQcBAQSCAdkwggHVMHgGCCsGAQUFBzAChmxodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwegYIKwYBBQUHMAKGbmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NhY2VydHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxL2NlcnQuY2VyMGkGCCsGAQUFBzAChl1odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwcgYIKwYBBQUHMAKGZmh0dHA6Ly9jY21lZWFzdHVzMmV1YXBwa2kuZWFzdHVzMmV1YXAucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmV1YXBpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAndPCPc-CmjHOQpHPVSFI4dsJ3mAAA9L0QPDWwmXXvm66R08WToYQA9QCpkqxZEzl69AhSTR5x65hpeRv8xhwwj57QIuBD6rfMRghZH83T4x3bdOI4KmhFi_uY_52-cou5_xf0DyGAI_C77U5rC8TmVil8EsUCojV8rWkZXUBQSKZMaC1gzmzWW3pgKG9zwbD6J1M_7PW6f_zhE9KvGfBrLALoabdK0H_in5p3CyRMQee9pXSpsictb8cyfBIRU1fRSNmLnOjVSlF_Ll20gYIhnHvetGUxWU0EE9gWSJVUtwbqJjCeDouKPwe2UYUosoETTC7iluHZc0PV9EMfunH2w&s=Wq38axPaejT8b1xvpIuI2WIq1CfHoJfVtaFnwk2rWuCUwWr9ofHQiGzu8--yFrvTZXJH6LgmA35Rb8elP25htQxtwAifeTpkikXEwPHksvjFvJhXt5DJaYhYPkmPYVPe9vQ1QGm-frk_KnZr9DYNKiwDtyA4u5bmIOGUczuz_1QxV4FiaHZa5ZjKR4D3tlHLNR6VhBfiW3Pu5H8OEFyBJZMtIuwZTCIiTAC5CVkG8rsCSbOXXOCHy2_wJjySKWUu49kz9B-hNf_MDmg3vXvcF9sr-ZpzROesIrVWeDy872VJZ1F0mHj5jVZv2cGtNrsMjZ7LSZSQvNCvRShJ5FxoPA&h=hEu1t2lPhMI-P-vRtVux_0B4TS0Koa57innG_xJ1xrc + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=352782de-cadf-4f14-ad97-08cd2617ef55/eastus2euap/efed40b2-f050-419c-9c5d-a4e9c7bc7248 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '799' + x-ms-throttling-version: + - v1 + x-msedge-ref: + - 'Ref A: 3E8E6300EBFE4C4E9C303B223F1219A9 Ref B: PNQ231110909052 Ref C: 2026-07-21T05:20:07Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - backup vault update + Connection: + - keep-alive + ParameterSetName: + - -n -g --cost-management-granularity + User-Agent: + - AZURECLI/2.88.0 azsdk-python-core/1.39.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005/operationStatus/NDA5NTs2NGI3YTc3My05MjIyLTQ4MDAtYjc1Yy1lMDFjYjQzODlmYjQ=?api-version=2026-05-01&t=639202080083437554&c=MIIH9TCCBt2gAwIBAgIRAKnTo6mKeliSYj1GLETof4IwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVUyQyBDQSAwMTAeFw0yNjA3MDIxNTU4NDNaFw0yNjA5MjcyMTU4NDNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAlDQMyX5eVlNoyHQy97t41xstx7ISW3Jpt0fmktBr-SytLFjS2PEwnW3DFpc-bQgfDfHkKP0_FRLvm_mazEvS5KYzyX6nFjGqQTX3SfneJV5jo7nOwYnQHFTbkg0Dngz7AipTBy6yAiQqKMhRo_D-N4o3stwmKHeA0tAiEOx4G_PiAZBVgwqD_hS-porAKnsf-m7-vYsa-g9Cw0SQ2t7YIFgfqGifFcAH79L7QF5n4-toqH20MDZrR10dXpjNK50DvRiltXMo7xC198sVfC6ISY8hDbiFDpsKgL_lz-pJ2kyYJNyq1NUfS79AS70Bkl13eaOYbl8go_Oo41Ma5ArEgQIDAQABo4IE8jCCBO4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7Mv1WvWn7sAfft9pF9lwNBkNam0wHwYDVR0jBBgwFoAUz1EBqulDLGR2G0rwqsDykvhPw7swggHiBgNVHR8EggHZMIIB1TB1oHOgcYZvaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHegdaBzhnFodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyZXVhcC9jcmxzL2NjbWVlYXN0dXMyZXVhcHBraS9jY21lZWFzdHVzMmV1YXBpY2EwMS82NS9jdXJyZW50LmNybDBmoGSgYoZgaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHugeaB3hnVodHRwOi8vY2NtZWVhc3R1czJldWFwcGtpLmVhc3R1czJldWFwLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJldWFwaWNhMDEvNjUvY3VycmVudC5jcmwwggHnBggrBgEFBQcBAQSCAdkwggHVMHgGCCsGAQUFBzAChmxodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwegYIKwYBBQUHMAKGbmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NhY2VydHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxL2NlcnQuY2VyMGkGCCsGAQUFBzAChl1odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwcgYIKwYBBQUHMAKGZmh0dHA6Ly9jY21lZWFzdHVzMmV1YXBwa2kuZWFzdHVzMmV1YXAucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmV1YXBpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAndPCPc-CmjHOQpHPVSFI4dsJ3mAAA9L0QPDWwmXXvm66R08WToYQA9QCpkqxZEzl69AhSTR5x65hpeRv8xhwwj57QIuBD6rfMRghZH83T4x3bdOI4KmhFi_uY_52-cou5_xf0DyGAI_C77U5rC8TmVil8EsUCojV8rWkZXUBQSKZMaC1gzmzWW3pgKG9zwbD6J1M_7PW6f_zhE9KvGfBrLALoabdK0H_in5p3CyRMQee9pXSpsictb8cyfBIRU1fRSNmLnOjVSlF_Ll20gYIhnHvetGUxWU0EE9gWSJVUtwbqJjCeDouKPwe2UYUosoETTC7iluHZc0PV9EMfunH2w&s=N6xAjYwa1oCKFEE2iXLFJDvQXtsuOJlbLWj4G4v6Sp_6mXZ6bQ0J1J7OJR8p90hyy5bdeP5YK5HIrtzSzM3RvnJQO3zohpC905ivUVoxVY2Qfv2cJYblH-MNNQAGDAMYGHryYkZecFvgFOFfLuH8A57vIybyQgUKO_TlDVxZ4CiS43yCYvFdr46sYevhadrG62ftfglignBVLLVVfEl40k5mAXo9dRjf6lX-exGPT2Q0Dr19xnhfD8x5kJdJ0lZs5VQPJQkOfOAPBUUjRsBEWnv4MAISWeIpYYXBm0guJlj58yvUh6-fuke3UyZu_y3nq_JQZ77bbkUSKUG0qOAC9w&h=raB4Bsrcpdo_pjXMFzqF_h5-kkb0R-UdoREYmFImp8Y + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005/operationStatus/NDA5NTs2NGI3YTc3My05MjIyLTQ4MDAtYjc1Yy1lMDFjYjQzODlmYjQ=\",\r\n + \ \"name\": \"NDA5NTs2NGI3YTc3My05MjIyLTQ4MDAtYjc1Yy1lMDFjYjQzODlmYjQ=\",\r\n + \ \"status\": \"Succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '345' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 21 Jul 2026 05:20:09 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=352782de-cadf-4f14-ad97-08cd2617ef55/eastus2euap/3777bf45-9fe5-43ab-ae0a-245c422a5e1c + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 0BB8AC46207E414A96DC14628CA0C120 Ref B: PNQ231110908036 Ref C: 2026-07-21T05:20:09Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - backup vault update + Connection: + - keep-alive + ParameterSetName: + - -n -g --cost-management-granularity + User-Agent: + - AZURECLI/2.88.0 azsdk-python-core/1.39.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005?api-version=2026-05-01 + response: + body: + string: '{"location":"eastus2euap","name":"clitest-vault000005","etag":"W/\"datetime''2026-07-21T05%3A20%3A09.1627743Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","monitoringSettings":{"azureMonitorAlertSettings":{"alertsForAllJobFailures":"Enabled","alertsForAllReplicationIssues":"Enabled","alertsForAllFailoverIssues":"Enabled"},"classicAlertSettings":{"alertsForCriticalOperations":"Enabled","emailNotificationsForSiteRecovery":"Enabled"}},"costManagementSettings":{"granularityLevel":"ProtectedItemLevel"},"backupStorageVersion":"Unassigned","securitySettings":{"immutabilitySettings":{"state":"Unlocked","configuration":{"type":"AsPerPolicy"}},"softDeleteSettings":{"softDeleteRetentionPeriodInDays":14,"softDeleteState":"AlwaysON","enhancedSecurityState":"AlwaysON"},"multiUserAuthorization":"Disabled","sourceScanConfiguration":{"state":"Disabled"}},"redundancySettings":{"standardTierStorageRedundancy":"GeoRedundant","crossRegionRestore":"Disabled"},"secureScore":"Adequate","bcdrSecurityLevel":"Good","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"PermanentlyDisabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' + headers: + cache-control: + - no-cache + content-length: + - '1472' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 21 Jul 2026 05:20:10 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 43E413A67731405BA372731595E18877 Ref B: PNQ231110906029 Ref C: 2026-07-21T05:20:10Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - backup vault delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -n -g -y + User-Agent: + - AZURECLI/2.88.0 azsdk-python-core/1.39.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005?api-version=2026-05-01 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005/operationStatus/MTAyMzs0OTYyNTA5NC0xZDNlLTRlZjQtODU4Mi02MWU3ODE1Zjg2ZDE=?api-version=2026-05-01&t=639202080125514000&c=MIIH9TCCBt2gAwIBAgIRAKnTo6mKeliSYj1GLETof4IwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVUyQyBDQSAwMTAeFw0yNjA3MDIxNTU4NDNaFw0yNjA5MjcyMTU4NDNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAlDQMyX5eVlNoyHQy97t41xstx7ISW3Jpt0fmktBr-SytLFjS2PEwnW3DFpc-bQgfDfHkKP0_FRLvm_mazEvS5KYzyX6nFjGqQTX3SfneJV5jo7nOwYnQHFTbkg0Dngz7AipTBy6yAiQqKMhRo_D-N4o3stwmKHeA0tAiEOx4G_PiAZBVgwqD_hS-porAKnsf-m7-vYsa-g9Cw0SQ2t7YIFgfqGifFcAH79L7QF5n4-toqH20MDZrR10dXpjNK50DvRiltXMo7xC198sVfC6ISY8hDbiFDpsKgL_lz-pJ2kyYJNyq1NUfS79AS70Bkl13eaOYbl8go_Oo41Ma5ArEgQIDAQABo4IE8jCCBO4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7Mv1WvWn7sAfft9pF9lwNBkNam0wHwYDVR0jBBgwFoAUz1EBqulDLGR2G0rwqsDykvhPw7swggHiBgNVHR8EggHZMIIB1TB1oHOgcYZvaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHegdaBzhnFodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyZXVhcC9jcmxzL2NjbWVlYXN0dXMyZXVhcHBraS9jY21lZWFzdHVzMmV1YXBpY2EwMS82NS9jdXJyZW50LmNybDBmoGSgYoZgaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHugeaB3hnVodHRwOi8vY2NtZWVhc3R1czJldWFwcGtpLmVhc3R1czJldWFwLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJldWFwaWNhMDEvNjUvY3VycmVudC5jcmwwggHnBggrBgEFBQcBAQSCAdkwggHVMHgGCCsGAQUFBzAChmxodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwegYIKwYBBQUHMAKGbmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NhY2VydHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxL2NlcnQuY2VyMGkGCCsGAQUFBzAChl1odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwcgYIKwYBBQUHMAKGZmh0dHA6Ly9jY21lZWFzdHVzMmV1YXBwa2kuZWFzdHVzMmV1YXAucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmV1YXBpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAndPCPc-CmjHOQpHPVSFI4dsJ3mAAA9L0QPDWwmXXvm66R08WToYQA9QCpkqxZEzl69AhSTR5x65hpeRv8xhwwj57QIuBD6rfMRghZH83T4x3bdOI4KmhFi_uY_52-cou5_xf0DyGAI_C77U5rC8TmVil8EsUCojV8rWkZXUBQSKZMaC1gzmzWW3pgKG9zwbD6J1M_7PW6f_zhE9KvGfBrLALoabdK0H_in5p3CyRMQee9pXSpsictb8cyfBIRU1fRSNmLnOjVSlF_Ll20gYIhnHvetGUxWU0EE9gWSJVUtwbqJjCeDouKPwe2UYUosoETTC7iluHZc0PV9EMfunH2w&s=PHMWAgbAgkeK4EM0cIX3tMBf9Bw87aKAz3qEm82yqovkzO2fHFJY7do4gV1JhNvJu7Vy7474_S1XKTCuuPxppfipsrOXHpPqr5TUZsWgbuHNurbR0BZJGaZrCbgDFInKmZHthgHm2dimsNqTFsMIowyx3ljBNPfkun61qxjFvurPnva2Fgoi3rebhgPTPxbvYkAgH78V2VGXSGtSijBDQYQdYw4geYa0U_PFuWCiepnkxp3q6mQOwg1YF_LdlkRBiR8cuZdHHjPvhLhw7dsCisS2iuMwyRtH2nz_UZWiTBh6SK6Vfk1gA1S3oU8X5H0-DSvwaAYmVk8LPrba9s4KmQ&h=AaaX1Qvr_Oq7WtDF9j05QZrgG1WnDcAVizM8w4WRAfA + cache-control: + - no-cache + content-length: + - '0' + date: + - Tue, 21 Jul 2026 05:20:12 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005/operationResults/MTAyMzs0OTYyNTA5NC0xZDNlLTRlZjQtODU4Mi02MWU3ODE1Zjg2ZDE=?api-version=2026-05-01&t=639202080125514000&c=MIIH9TCCBt2gAwIBAgIRAKnTo6mKeliSYj1GLETof4IwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVUyQyBDQSAwMTAeFw0yNjA3MDIxNTU4NDNaFw0yNjA5MjcyMTU4NDNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAlDQMyX5eVlNoyHQy97t41xstx7ISW3Jpt0fmktBr-SytLFjS2PEwnW3DFpc-bQgfDfHkKP0_FRLvm_mazEvS5KYzyX6nFjGqQTX3SfneJV5jo7nOwYnQHFTbkg0Dngz7AipTBy6yAiQqKMhRo_D-N4o3stwmKHeA0tAiEOx4G_PiAZBVgwqD_hS-porAKnsf-m7-vYsa-g9Cw0SQ2t7YIFgfqGifFcAH79L7QF5n4-toqH20MDZrR10dXpjNK50DvRiltXMo7xC198sVfC6ISY8hDbiFDpsKgL_lz-pJ2kyYJNyq1NUfS79AS70Bkl13eaOYbl8go_Oo41Ma5ArEgQIDAQABo4IE8jCCBO4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7Mv1WvWn7sAfft9pF9lwNBkNam0wHwYDVR0jBBgwFoAUz1EBqulDLGR2G0rwqsDykvhPw7swggHiBgNVHR8EggHZMIIB1TB1oHOgcYZvaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHegdaBzhnFodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyZXVhcC9jcmxzL2NjbWVlYXN0dXMyZXVhcHBraS9jY21lZWFzdHVzMmV1YXBpY2EwMS82NS9jdXJyZW50LmNybDBmoGSgYoZgaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHugeaB3hnVodHRwOi8vY2NtZWVhc3R1czJldWFwcGtpLmVhc3R1czJldWFwLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJldWFwaWNhMDEvNjUvY3VycmVudC5jcmwwggHnBggrBgEFBQcBAQSCAdkwggHVMHgGCCsGAQUFBzAChmxodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwegYIKwYBBQUHMAKGbmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NhY2VydHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxL2NlcnQuY2VyMGkGCCsGAQUFBzAChl1odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwcgYIKwYBBQUHMAKGZmh0dHA6Ly9jY21lZWFzdHVzMmV1YXBwa2kuZWFzdHVzMmV1YXAucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmV1YXBpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAndPCPc-CmjHOQpHPVSFI4dsJ3mAAA9L0QPDWwmXXvm66R08WToYQA9QCpkqxZEzl69AhSTR5x65hpeRv8xhwwj57QIuBD6rfMRghZH83T4x3bdOI4KmhFi_uY_52-cou5_xf0DyGAI_C77U5rC8TmVil8EsUCojV8rWkZXUBQSKZMaC1gzmzWW3pgKG9zwbD6J1M_7PW6f_zhE9KvGfBrLALoabdK0H_in5p3CyRMQee9pXSpsictb8cyfBIRU1fRSNmLnOjVSlF_Ll20gYIhnHvetGUxWU0EE9gWSJVUtwbqJjCeDouKPwe2UYUosoETTC7iluHZc0PV9EMfunH2w&s=TZWjk1aqw9HEMNTKvRRimRyO64WIRYhT9_PTlesYJdVGUTUjjFHU9LTesdGnX92XzsXMhWTx2lItkz2vYFv_0yOcL7RVP_2WXficCTj90a27CEdFRQDvghuNVrEHFLI4RmV1A8VrgcPmXeLWyi-zj2brmSVGzGgluJAZXAPfKU5twIK_TBfYDE4wLeNvbnOeS9VvUhnITnMVHry5C1FX6yBY-T25BUO9wJy9CL2Jd-vhI9wcT9qOA_mw-RY2ZcCwRhvlG0oYhs6BnZbez2L6UNdlC-0afEvEaysgZHt-wpc98U1gEY_NfKS0FhH1MOEQUR7IHD3Z0YMMFtWVCd1-Hw&h=61Sfy7iFPoY7-Fl3YCOUXBgsXF53zMSAlvQzZqqlXDk + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=352782de-cadf-4f14-ad97-08cd2617ef55/eastus2euap/ef201eee-7ebf-479e-9ebc-bbc6d6fe5907 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '199' + x-ms-throttling-version: + - v1 + x-msedge-ref: + - 'Ref A: 5C3975CC2C1D42569E78A008FD8CAFD4 Ref B: PNQ231110908062 Ref C: 2026-07-21T05:20:11Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - backup vault delete + Connection: + - keep-alive + ParameterSetName: + - -n -g -y + User-Agent: + - AZURECLI/2.88.0 azsdk-python-core/1.39.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005/operationStatus/MTAyMzs0OTYyNTA5NC0xZDNlLTRlZjQtODU4Mi02MWU3ODE1Zjg2ZDE=?api-version=2026-05-01&t=639202080125514000&c=MIIH9TCCBt2gAwIBAgIRAKnTo6mKeliSYj1GLETof4IwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVUyQyBDQSAwMTAeFw0yNjA3MDIxNTU4NDNaFw0yNjA5MjcyMTU4NDNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAlDQMyX5eVlNoyHQy97t41xstx7ISW3Jpt0fmktBr-SytLFjS2PEwnW3DFpc-bQgfDfHkKP0_FRLvm_mazEvS5KYzyX6nFjGqQTX3SfneJV5jo7nOwYnQHFTbkg0Dngz7AipTBy6yAiQqKMhRo_D-N4o3stwmKHeA0tAiEOx4G_PiAZBVgwqD_hS-porAKnsf-m7-vYsa-g9Cw0SQ2t7YIFgfqGifFcAH79L7QF5n4-toqH20MDZrR10dXpjNK50DvRiltXMo7xC198sVfC6ISY8hDbiFDpsKgL_lz-pJ2kyYJNyq1NUfS79AS70Bkl13eaOYbl8go_Oo41Ma5ArEgQIDAQABo4IE8jCCBO4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7Mv1WvWn7sAfft9pF9lwNBkNam0wHwYDVR0jBBgwFoAUz1EBqulDLGR2G0rwqsDykvhPw7swggHiBgNVHR8EggHZMIIB1TB1oHOgcYZvaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHegdaBzhnFodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyZXVhcC9jcmxzL2NjbWVlYXN0dXMyZXVhcHBraS9jY21lZWFzdHVzMmV1YXBpY2EwMS82NS9jdXJyZW50LmNybDBmoGSgYoZgaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHugeaB3hnVodHRwOi8vY2NtZWVhc3R1czJldWFwcGtpLmVhc3R1czJldWFwLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJldWFwaWNhMDEvNjUvY3VycmVudC5jcmwwggHnBggrBgEFBQcBAQSCAdkwggHVMHgGCCsGAQUFBzAChmxodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwegYIKwYBBQUHMAKGbmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NhY2VydHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxL2NlcnQuY2VyMGkGCCsGAQUFBzAChl1odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwcgYIKwYBBQUHMAKGZmh0dHA6Ly9jY21lZWFzdHVzMmV1YXBwa2kuZWFzdHVzMmV1YXAucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmV1YXBpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAndPCPc-CmjHOQpHPVSFI4dsJ3mAAA9L0QPDWwmXXvm66R08WToYQA9QCpkqxZEzl69AhSTR5x65hpeRv8xhwwj57QIuBD6rfMRghZH83T4x3bdOI4KmhFi_uY_52-cou5_xf0DyGAI_C77U5rC8TmVil8EsUCojV8rWkZXUBQSKZMaC1gzmzWW3pgKG9zwbD6J1M_7PW6f_zhE9KvGfBrLALoabdK0H_in5p3CyRMQee9pXSpsictb8cyfBIRU1fRSNmLnOjVSlF_Ll20gYIhnHvetGUxWU0EE9gWSJVUtwbqJjCeDouKPwe2UYUosoETTC7iluHZc0PV9EMfunH2w&s=PHMWAgbAgkeK4EM0cIX3tMBf9Bw87aKAz3qEm82yqovkzO2fHFJY7do4gV1JhNvJu7Vy7474_S1XKTCuuPxppfipsrOXHpPqr5TUZsWgbuHNurbR0BZJGaZrCbgDFInKmZHthgHm2dimsNqTFsMIowyx3ljBNPfkun61qxjFvurPnva2Fgoi3rebhgPTPxbvYkAgH78V2VGXSGtSijBDQYQdYw4geYa0U_PFuWCiepnkxp3q6mQOwg1YF_LdlkRBiR8cuZdHHjPvhLhw7dsCisS2iuMwyRtH2nz_UZWiTBh6SK6Vfk1gA1S3oU8X5H0-DSvwaAYmVk8LPrba9s4KmQ&h=AaaX1Qvr_Oq7WtDF9j05QZrgG1WnDcAVizM8w4WRAfA + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005/operationStatus/MTAyMzs0OTYyNTA5NC0xZDNlLTRlZjQtODU4Mi02MWU3ODE1Zjg2ZDE=\",\r\n + \ \"name\": \"MTAyMzs0OTYyNTA5NC0xZDNlLTRlZjQtODU4Mi02MWU3ODE1Zjg2ZDE=\",\r\n + \ \"status\": \"InProgress\"\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005/operationStatus/MTAyMzs0OTYyNTA5NC0xZDNlLTRlZjQtODU4Mi02MWU3ODE1Zjg2ZDE=?api-version=2026-05-01&t=639202080133369819&c=MIIH9TCCBt2gAwIBAgIRAKnTo6mKeliSYj1GLETof4IwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVUyQyBDQSAwMTAeFw0yNjA3MDIxNTU4NDNaFw0yNjA5MjcyMTU4NDNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAlDQMyX5eVlNoyHQy97t41xstx7ISW3Jpt0fmktBr-SytLFjS2PEwnW3DFpc-bQgfDfHkKP0_FRLvm_mazEvS5KYzyX6nFjGqQTX3SfneJV5jo7nOwYnQHFTbkg0Dngz7AipTBy6yAiQqKMhRo_D-N4o3stwmKHeA0tAiEOx4G_PiAZBVgwqD_hS-porAKnsf-m7-vYsa-g9Cw0SQ2t7YIFgfqGifFcAH79L7QF5n4-toqH20MDZrR10dXpjNK50DvRiltXMo7xC198sVfC6ISY8hDbiFDpsKgL_lz-pJ2kyYJNyq1NUfS79AS70Bkl13eaOYbl8go_Oo41Ma5ArEgQIDAQABo4IE8jCCBO4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7Mv1WvWn7sAfft9pF9lwNBkNam0wHwYDVR0jBBgwFoAUz1EBqulDLGR2G0rwqsDykvhPw7swggHiBgNVHR8EggHZMIIB1TB1oHOgcYZvaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHegdaBzhnFodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyZXVhcC9jcmxzL2NjbWVlYXN0dXMyZXVhcHBraS9jY21lZWFzdHVzMmV1YXBpY2EwMS82NS9jdXJyZW50LmNybDBmoGSgYoZgaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHugeaB3hnVodHRwOi8vY2NtZWVhc3R1czJldWFwcGtpLmVhc3R1czJldWFwLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJldWFwaWNhMDEvNjUvY3VycmVudC5jcmwwggHnBggrBgEFBQcBAQSCAdkwggHVMHgGCCsGAQUFBzAChmxodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwegYIKwYBBQUHMAKGbmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NhY2VydHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxL2NlcnQuY2VyMGkGCCsGAQUFBzAChl1odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwcgYIKwYBBQUHMAKGZmh0dHA6Ly9jY21lZWFzdHVzMmV1YXBwa2kuZWFzdHVzMmV1YXAucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmV1YXBpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAndPCPc-CmjHOQpHPVSFI4dsJ3mAAA9L0QPDWwmXXvm66R08WToYQA9QCpkqxZEzl69AhSTR5x65hpeRv8xhwwj57QIuBD6rfMRghZH83T4x3bdOI4KmhFi_uY_52-cou5_xf0DyGAI_C77U5rC8TmVil8EsUCojV8rWkZXUBQSKZMaC1gzmzWW3pgKG9zwbD6J1M_7PW6f_zhE9KvGfBrLALoabdK0H_in5p3CyRMQee9pXSpsictb8cyfBIRU1fRSNmLnOjVSlF_Ll20gYIhnHvetGUxWU0EE9gWSJVUtwbqJjCeDouKPwe2UYUosoETTC7iluHZc0PV9EMfunH2w&s=FT2mRrcF8VZd5g632M6uq1j_Pc6WiVaLRwr90XkOdOiiCKMuSY7t1_33acyf7t7kPQ70TzV39kFhGK7ZMRnBV_m2LemZ_6nyT4oozU301eiucfJvQ5bkq1JMNHhdj39z338ooNm3Zxp4GHNzDWYQJgnDaoD9MZrfsxWme1G1Gg-0enY1qtC5W-tLaU2UC5P2IKaQXjWTXQxuTkpBdFCkYHQEdfjCIi4w8t6SOpr-i5GlDe-yl4wfFNmW88FXMkVLsFrsmVIg148rlaCZWOSAexEoEvEsUrWd3KgAvbn2BCZnCp5QNhuK6JUnXqE4JYBb24zKUvxMBisWiL4A4FGHSg&h=GMxkdsiDJCGqKn24Vcp2spGyCXElXRPMKBBc1C9u_fE + cache-control: + - no-cache + content-length: + - '346' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 21 Jul 2026 05:20:13 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005/operationResults/MTAyMzs0OTYyNTA5NC0xZDNlLTRlZjQtODU4Mi02MWU3ODE1Zjg2ZDE=?api-version=2026-05-01&t=639202080133526096&c=MIIH9TCCBt2gAwIBAgIRAKnTo6mKeliSYj1GLETof4IwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVUyQyBDQSAwMTAeFw0yNjA3MDIxNTU4NDNaFw0yNjA5MjcyMTU4NDNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAlDQMyX5eVlNoyHQy97t41xstx7ISW3Jpt0fmktBr-SytLFjS2PEwnW3DFpc-bQgfDfHkKP0_FRLvm_mazEvS5KYzyX6nFjGqQTX3SfneJV5jo7nOwYnQHFTbkg0Dngz7AipTBy6yAiQqKMhRo_D-N4o3stwmKHeA0tAiEOx4G_PiAZBVgwqD_hS-porAKnsf-m7-vYsa-g9Cw0SQ2t7YIFgfqGifFcAH79L7QF5n4-toqH20MDZrR10dXpjNK50DvRiltXMo7xC198sVfC6ISY8hDbiFDpsKgL_lz-pJ2kyYJNyq1NUfS79AS70Bkl13eaOYbl8go_Oo41Ma5ArEgQIDAQABo4IE8jCCBO4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7Mv1WvWn7sAfft9pF9lwNBkNam0wHwYDVR0jBBgwFoAUz1EBqulDLGR2G0rwqsDykvhPw7swggHiBgNVHR8EggHZMIIB1TB1oHOgcYZvaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHegdaBzhnFodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyZXVhcC9jcmxzL2NjbWVlYXN0dXMyZXVhcHBraS9jY21lZWFzdHVzMmV1YXBpY2EwMS82NS9jdXJyZW50LmNybDBmoGSgYoZgaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHugeaB3hnVodHRwOi8vY2NtZWVhc3R1czJldWFwcGtpLmVhc3R1czJldWFwLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJldWFwaWNhMDEvNjUvY3VycmVudC5jcmwwggHnBggrBgEFBQcBAQSCAdkwggHVMHgGCCsGAQUFBzAChmxodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwegYIKwYBBQUHMAKGbmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NhY2VydHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxL2NlcnQuY2VyMGkGCCsGAQUFBzAChl1odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwcgYIKwYBBQUHMAKGZmh0dHA6Ly9jY21lZWFzdHVzMmV1YXBwa2kuZWFzdHVzMmV1YXAucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmV1YXBpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAndPCPc-CmjHOQpHPVSFI4dsJ3mAAA9L0QPDWwmXXvm66R08WToYQA9QCpkqxZEzl69AhSTR5x65hpeRv8xhwwj57QIuBD6rfMRghZH83T4x3bdOI4KmhFi_uY_52-cou5_xf0DyGAI_C77U5rC8TmVil8EsUCojV8rWkZXUBQSKZMaC1gzmzWW3pgKG9zwbD6J1M_7PW6f_zhE9KvGfBrLALoabdK0H_in5p3CyRMQee9pXSpsictb8cyfBIRU1fRSNmLnOjVSlF_Ll20gYIhnHvetGUxWU0EE9gWSJVUtwbqJjCeDouKPwe2UYUosoETTC7iluHZc0PV9EMfunH2w&s=HLq7ds_y2Jz3qcpzrGyl7ucjEqhUMQ3a7eoNk1Cm5v-fXICM8o9rMinfi4uV3M--vfaGcWoTOUsnbcFIA_DUUH-3kYdiyRywaeogp1KQRKZaKxcJHKSzd_uwNNFJynHgW98X_lzZc0Hatxhdq5Cgf5PQv-4krhMoaI1h_X-2_8vaEstT9GuZrHapIBXdsBGV8JSWsvUtWXuhhrYfxrdcdNgl51Ok7_C5qM2VD7B-SiStKaGbWzZHiiVgXh9KOtbLF66ccelo8BTDArPNrUqCRg1-kB_HJ0rNsW4ARxThudX0QGylagBAru0oUSSoRg1BFcCogsSzMqt9ivLT-T0vsg&h=8ozXKXyh9vXZ1ElojLE6OJlD1UJb2CKY4MTNc5uyZmU + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=352782de-cadf-4f14-ad97-08cd2617ef55/eastus2euap/04664459-6a86-4525-89d5-ca7019a5aeef + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 238D0F06A76944C89872D3F34D3AC644 Ref B: PNQ231110906060 Ref C: 2026-07-21T05:20:13Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - backup vault delete + Connection: + - keep-alive + ParameterSetName: + - -n -g -y + User-Agent: + - AZURECLI/2.88.0 azsdk-python-core/1.39.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005/operationStatus/MTAyMzs0OTYyNTA5NC0xZDNlLTRlZjQtODU4Mi02MWU3ODE1Zjg2ZDE=?api-version=2026-05-01&t=639202080125514000&c=MIIH9TCCBt2gAwIBAgIRAKnTo6mKeliSYj1GLETof4IwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVUyQyBDQSAwMTAeFw0yNjA3MDIxNTU4NDNaFw0yNjA5MjcyMTU4NDNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAlDQMyX5eVlNoyHQy97t41xstx7ISW3Jpt0fmktBr-SytLFjS2PEwnW3DFpc-bQgfDfHkKP0_FRLvm_mazEvS5KYzyX6nFjGqQTX3SfneJV5jo7nOwYnQHFTbkg0Dngz7AipTBy6yAiQqKMhRo_D-N4o3stwmKHeA0tAiEOx4G_PiAZBVgwqD_hS-porAKnsf-m7-vYsa-g9Cw0SQ2t7YIFgfqGifFcAH79L7QF5n4-toqH20MDZrR10dXpjNK50DvRiltXMo7xC198sVfC6ISY8hDbiFDpsKgL_lz-pJ2kyYJNyq1NUfS79AS70Bkl13eaOYbl8go_Oo41Ma5ArEgQIDAQABo4IE8jCCBO4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7Mv1WvWn7sAfft9pF9lwNBkNam0wHwYDVR0jBBgwFoAUz1EBqulDLGR2G0rwqsDykvhPw7swggHiBgNVHR8EggHZMIIB1TB1oHOgcYZvaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHegdaBzhnFodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyZXVhcC9jcmxzL2NjbWVlYXN0dXMyZXVhcHBraS9jY21lZWFzdHVzMmV1YXBpY2EwMS82NS9jdXJyZW50LmNybDBmoGSgYoZgaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHugeaB3hnVodHRwOi8vY2NtZWVhc3R1czJldWFwcGtpLmVhc3R1czJldWFwLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJldWFwaWNhMDEvNjUvY3VycmVudC5jcmwwggHnBggrBgEFBQcBAQSCAdkwggHVMHgGCCsGAQUFBzAChmxodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwegYIKwYBBQUHMAKGbmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NhY2VydHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxL2NlcnQuY2VyMGkGCCsGAQUFBzAChl1odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwcgYIKwYBBQUHMAKGZmh0dHA6Ly9jY21lZWFzdHVzMmV1YXBwa2kuZWFzdHVzMmV1YXAucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmV1YXBpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAndPCPc-CmjHOQpHPVSFI4dsJ3mAAA9L0QPDWwmXXvm66R08WToYQA9QCpkqxZEzl69AhSTR5x65hpeRv8xhwwj57QIuBD6rfMRghZH83T4x3bdOI4KmhFi_uY_52-cou5_xf0DyGAI_C77U5rC8TmVil8EsUCojV8rWkZXUBQSKZMaC1gzmzWW3pgKG9zwbD6J1M_7PW6f_zhE9KvGfBrLALoabdK0H_in5p3CyRMQee9pXSpsictb8cyfBIRU1fRSNmLnOjVSlF_Ll20gYIhnHvetGUxWU0EE9gWSJVUtwbqJjCeDouKPwe2UYUosoETTC7iluHZc0PV9EMfunH2w&s=PHMWAgbAgkeK4EM0cIX3tMBf9Bw87aKAz3qEm82yqovkzO2fHFJY7do4gV1JhNvJu7Vy7474_S1XKTCuuPxppfipsrOXHpPqr5TUZsWgbuHNurbR0BZJGaZrCbgDFInKmZHthgHm2dimsNqTFsMIowyx3ljBNPfkun61qxjFvurPnva2Fgoi3rebhgPTPxbvYkAgH78V2VGXSGtSijBDQYQdYw4geYa0U_PFuWCiepnkxp3q6mQOwg1YF_LdlkRBiR8cuZdHHjPvhLhw7dsCisS2iuMwyRtH2nz_UZWiTBh6SK6Vfk1gA1S3oU8X5H0-DSvwaAYmVk8LPrba9s4KmQ&h=AaaX1Qvr_Oq7WtDF9j05QZrgG1WnDcAVizM8w4WRAfA + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005/operationStatus/MTAyMzs0OTYyNTA5NC0xZDNlLTRlZjQtODU4Mi02MWU3ODE1Zjg2ZDE=\",\r\n + \ \"name\": \"MTAyMzs0OTYyNTA5NC0xZDNlLTRlZjQtODU4Mi02MWU3ODE1Zjg2ZDE=\",\r\n + \ \"status\": \"Succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '345' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 21 Jul 2026 05:21:13 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=352782de-cadf-4f14-ad97-08cd2617ef55/eastus2euap/6bb4a500-50ea-438a-b3ea-7378579b06e2 + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 4C81AC76289949858E99955A88D9423B Ref B: PNQ231110907036 Ref C: 2026-07-21T05:21:14Z' + status: + code: 200 + message: OK - request: body: null headers: @@ -2807,31 +3418,27 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.11.9 (Windows-10-10.0.26200-SP0) + - AZURECLI/2.88.0 azsdk-python-core/1.39.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/vaults?api-version=2025-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/vaults?api-version=2026-05-01 response: body: - string: "{\"value\":[{\"location\":\"westus\",\"name\":\"tesy\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A06%3A40.564801Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayethImmutability/providers/Microsoft.RecoveryServices/vaults/tesy\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus\",\"name\":\"afsexistingvault1\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A09%3A25.0314013Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Disabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/afstests/providers/Microsoft.RecoveryServices/vaults/afsexistingvault1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus\",\"name\":\"akkanasePOC1\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A16%3A40.500841Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanase/providers/Microsoft.RecoveryServices/vaults/akkanasePOC1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus\",\"name\":\"akkanasePOC2\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A16%3A44.6345236Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanase/providers/Microsoft.RecoveryServices/vaults/akkanasePOC2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus\",\"name\":\"akkanaseTestPOC1\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A17%3A03.3060516Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanase/providers/Microsoft.RecoveryServices/vaults/akkanaseTestPOC1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus\",\"name\":\"getputv1policyvault\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A17%3A07.9974204Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanase/providers/Microsoft.RecoveryServices/vaults/getputv1policyvault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus\",\"name\":\"testVauttCreate\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A17%3A10.7049017Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanase/providers/Microsoft.RecoveryServices/vaults/testVauttCreate\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus\",\"name\":\"akkanaseAFSCRR\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A17%3A15.2353618Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseAFSTest/providers/Microsoft.RecoveryServices/vaults/akkanaseAFSCRR\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus\",\"name\":\"akkanaseCMKNew\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A23%3A26.001218Z'\\\"\",\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"93207892-ddfb-48c8-8d48-30c199c8a001\",\"type\":\"SystemAssigned, + string: "{\"value\":[{\"location\":\"westus\",\"name\":\"tesy\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A06%3A40.564801Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayethImmutability/providers/Microsoft.RecoveryServices/vaults/tesy\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus\",\"name\":\"afsexistingvault1\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A09%3A25.0314013Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Disabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/afstests/providers/Microsoft.RecoveryServices/vaults/afsexistingvault1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus\",\"name\":\"akkanasePOC1\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A16%3A40.500841Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanase/providers/Microsoft.RecoveryServices/vaults/akkanasePOC1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus\",\"name\":\"akkanasePOC2\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A16%3A44.6345236Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanase/providers/Microsoft.RecoveryServices/vaults/akkanasePOC2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus\",\"name\":\"akkanaseTestPOC1\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A17%3A03.3060516Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanase/providers/Microsoft.RecoveryServices/vaults/akkanaseTestPOC1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus\",\"name\":\"getputv1policyvault\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A17%3A07.9974204Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanase/providers/Microsoft.RecoveryServices/vaults/getputv1policyvault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus\",\"name\":\"testVauttCreate\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A17%3A10.7049017Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanase/providers/Microsoft.RecoveryServices/vaults/testVauttCreate\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus\",\"name\":\"akkanaseAFSCRR\",\"etag\":\"W/\\\"datetime'2026-05-18T11%3A55%3A01.7885134Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseAFSTest/providers/Microsoft.RecoveryServices/vaults/akkanaseAFSCRR\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus\",\"name\":\"akkanaseCMKNew\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A23%3A26.001218Z'\\\"\",\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"93207892-ddfb-48c8-8d48-30c199c8a001\",\"type\":\"SystemAssigned, UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/hiagarg/providers/microsoft.managedidentity/userassignedidentities/cmk-pstest-msi1\":{\"clientId\":\"cc17dc91-0ffc-41c4-9f4b-b7b61fa9f4e8\",\"principalId\":\"79e6360a-251c-4431-b817-a7fff3ac5c91\"},\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vepothir-rg-ram-sub/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vepothir-identity-1\":{\"clientId\":\"5909ae61-fd85-4404-9e0b-60709b84e067\",\"principalId\":\"f6d28ffe-fbc2-4e9c-9bc1-f3e3585223c0\"}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":{\"keyVaultProperties\":{\"keyUri\":\"https://akkanasecmk1.vault.azure.net/keys/testKeyj\"},\"kekIdentity\":{\"useSystemAssignedIdentity\":true,\"userAssignedIdentity\":null},\"infrastructureEncryption\":\"Disabled\"},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseCMK/providers/Microsoft.RecoveryServices/vaults/akkanaseCMKNew\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus\",\"name\":\"akkanaseCMKSystem\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A23%3A27.9161435Z'\\\"\",\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"2afe8612-6c52-4e9c-95c7-32b82becbe55\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":{\"keyVaultProperties\":{\"keyUri\":\"https://akkanasecmk1.vault.azure.net/keys/testKey\"},\"kekIdentity\":{\"useSystemAssignedIdentity\":true,\"userAssignedIdentity\":null},\"infrastructureEncryption\":\"Enabled\"},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseCMK/providers/Microsoft.RecoveryServices/vaults/akkanaseCMKSystem\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus\",\"name\":\"akkanaseUser\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A23%3A33.8668009Z'\\\"\",\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/hiagarg/providers/microsoft.managedidentity/userassignedidentities/cmk-pstest-msi1\":{\"clientId\":\"cc17dc91-0ffc-41c4-9f4b-b7b61fa9f4e8\",\"principalId\":\"79e6360a-251c-4431-b817-a7fff3ac5c91\"}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":{\"keyVaultProperties\":{\"keyUri\":\"https://akkanasecmk1.vault.azure.net/keys/testKey\"},\"kekIdentity\":{\"useSystemAssignedIdentity\":false,\"userAssignedIdentity\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/hiagarg/providers/microsoft.managedidentity/userassignedidentities/cmk-pstest-msi1\"},\"infrastructureEncryption\":\"Disabled\"},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseCMK/providers/Microsoft.RecoveryServices/vaults/akkanaseUser\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus\",\"name\":\"test1\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A23%3A35.7277553Z'\\\"\",\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"92cd2c74-f998-4f3f-8148-0167b5a2bb76\",\"type\":\"SystemAssigned, - UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cmk.system/providers/microsoft.managedidentity/userassignedidentities/identity1\":{\"clientId\":\"73571b84-6f37-4bdd-a60f-1121cb5d31d7\",\"principalId\":\"13a05d1f-eae9-47ae-944f-46270c95d12e\"}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":{\"keyVaultProperties\":{\"keyUri\":\"https://akkanasecmk1.vault.azure.net/keys/testKey\"},\"kekIdentity\":{\"useSystemAssignedIdentity\":true,\"userAssignedIdentity\":null},\"infrastructureEncryption\":\"Enabled\"},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseCMK/providers/Microsoft.RecoveryServices/vaults/test1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus\",\"name\":\"akkanaseTestfad\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A26%3A35.7536224Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseTest/providers/Microsoft.RecoveryServices/vaults/akkanaseTestfad\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus\",\"name\":\"akkanaseWestUS1\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A33%3A27.4454397Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseWestUS1/providers/Microsoft.RecoveryServices/vaults/akkanaseWestUS1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus\",\"name\":\"akkanaseWestUS10\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A33%3A28.1820269Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseWestUS1/providers/Microsoft.RecoveryServices/vaults/akkanaseWestUS10\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus\",\"name\":\"akkanaseWestUS2\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A33%3A29.3473732Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseWestUS1/providers/Microsoft.RecoveryServices/vaults/akkanaseWestUS2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus\",\"name\":\"akkanaseWestUS3\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A33%3A31.3182681Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseWestUS1/providers/Microsoft.RecoveryServices/vaults/akkanaseWestUS3\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus\",\"name\":\"akkanaseWestUS4\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A33%3A31.9369204Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseWestUS1/providers/Microsoft.RecoveryServices/vaults/akkanaseWestUS4\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus\",\"name\":\"akkanaseWestUS5\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A33%3A32.8833893Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseWestUS1/providers/Microsoft.RecoveryServices/vaults/akkanaseWestUS5\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus\",\"name\":\"akkanaseWestUS6\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A33%3A34.6893769Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseWestUS1/providers/Microsoft.RecoveryServices/vaults/akkanaseWestUS6\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus\",\"name\":\"akkanaseWestUS7\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A33%3A35.9186867Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseWestUS1/providers/Microsoft.RecoveryServices/vaults/akkanaseWestUS7\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus\",\"name\":\"akkanaseWestUS8\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A33%3A37.1599907Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseWestUS1/providers/Microsoft.RecoveryServices/vaults/akkanaseWestUS8\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus\",\"name\":\"akkanaseWestUS9\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A33%3A38.5112331Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseWestUS1/providers/Microsoft.RecoveryServices/vaults/akkanaseWestUS9\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus\",\"name\":\"crrclitestvault\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A54%3A55.9111418Z'\\\"\",\"tags\":{\"Owner\":\"akneema\",\"Purpose\":\"Testing\",\"MABUsed\":\"Yes\",\"DeleteBy\":\"12-9999\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-rg/providers/Microsoft.RecoveryServices/vaults/crrclitestvault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus\",\"name\":\"testvault\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A55%3A01.0392636Z'\\\"\",\"tags\":{\"Purpose\":\"Testing\",\"Owner\":\"akneema\",\"MABUsed\":\"Yes\",\"DeleteBy\":\"12-9999\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-rg-donotuse/providers/Microsoft.RecoveryServices/vaults/testvault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus\",\"name\":\"clitest-vaultkltcogipylb\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A42%3A11.6470499Z'\\\"\",\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"a48e45c3-38eb-45b5-bbfd-24d3ff15f0ef\",\"type\":\"SystemAssigned, - UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg7pyzsjevhwekdbuqz553tg6kgb6slt5rnpfllucxn5hfwmjf2ajkuvi2gbdaaxgwv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity1lo6xcwqhnfjlvnrua4ltft5sexv2vwbdq\":{\"clientId\":\"da517d21-5e7b-44b8-a1d4-da442e04819f\",\"principalId\":\"1a4e49c1-5ead-4089-8842-6387e7c47da9\"}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":{\"keyVaultProperties\":{\"keyUri\":\"https://clitest4kre3xyccj6wppnp5.vault.azure.net/keys/clitest-key2gsboyck4/d8a2e0b5cba343e1a32c8bd7bee8b126\"},\"kekIdentity\":{\"useSystemAssignedIdentity\":true,\"userAssignedIdentity\":null},\"infrastructureEncryption\":\"Enabled\"},\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg7pyzsjevhwekdbuqz553tg6kgb6slt5rnpfllucxn5hfwmjf2ajkuvi2gbdaaxgwv/providers/Microsoft.RecoveryServices/vaults/clitest-vaultkltcogipylb\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"westus\",\"name\":\"clitest-vaultpi3bphhnc7w\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A42%3A13.5979579Z'\\\"\",\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"ee053635-13b1-4b0d-9a7e-13c424ba7627\",\"type\":\"SystemAssigned, - UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg7pyzsjevhwekdbuqz553tg6kgb6slt5rnpfllucxn5hfwmjf2ajkuvi2gbdaaxgwv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity1lo6xcwqhnfjlvnrua4ltft5sexv2vwbdq\":{\"clientId\":\"da517d21-5e7b-44b8-a1d4-da442e04819f\",\"principalId\":\"1a4e49c1-5ead-4089-8842-6387e7c47da9\"},\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg7pyzsjevhwekdbuqz553tg6kgb6slt5rnpfllucxn5hfwmjf2ajkuvi2gbdaaxgwv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity2rirallpzdiewl22mxvqokxo33nnpipxka\":{\"clientId\":\"4f600a01-5528-4de0-a35a-b50eae847d9c\",\"principalId\":\"b9ced4e4-c763-4812-a0f5-c0ecb4badecf\"}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":{\"keyVaultProperties\":{\"keyUri\":\"https://clitest4kre3xyccj6wppnp5.vault.azure.net/keys/clitest-key1xw646q72/f836215d18ed48c98b611bc697d395ae\"},\"kekIdentity\":{\"useSystemAssignedIdentity\":true,\"userAssignedIdentity\":null},\"infrastructureEncryption\":\"Disabled\"},\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg7pyzsjevhwekdbuqz553tg6kgb6slt5rnpfllucxn5hfwmjf2ajkuvi2gbdaaxgwv/providers/Microsoft.RecoveryServices/vaults/clitest-vaultpi3bphhnc7w\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"westus\",\"name\":\"clitest-vaultdyw7fgmguvo\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A46%3A12.7718859Z'\\\"\",\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgdzpzsaihvvk3ol7ruhv26iuemblmnbqkpfy4wnc3nlfqvyeb35exxm4ysury32tyd/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity137pbjy65i54ed7o3i2qo7c2wzk6ygda2h\":{\"clientId\":\"c126e597-db35-4f69-8a05-d3090fb49e2e\",\"principalId\":\"f0d76384-52d5-4702-a329-4ce942b74b9e\"},\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgdzpzsaihvvk3ol7ruhv26iuemblmnbqkpfy4wnc3nlfqvyeb35exxm4ysury32tyd/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity2nv45p6srizmxurnkwwa4lgmqil4vo7p57\":{\"clientId\":\"62b3a5f2-8bbe-4316-a0fd-ae363fb14e9d\",\"principalId\":\"0a35a6cc-9b72-46cf-ae32-24bf27872442\"}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgdzpzsaihvvk3ol7ruhv26iuemblmnbqkpfy4wnc3nlfqvyeb35exxm4ysury32tyd/providers/Microsoft.RecoveryServices/vaults/clitest-vaultdyw7fgmguvo\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"westus\",\"name\":\"clitest-vaultgygpgj2xlir\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A46%3A15.0386132Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgdzpzsaihvvk3ol7ruhv26iuemblmnbqkpfy4wnc3nlfqvyeb35exxm4ysury32tyd/providers/Microsoft.RecoveryServices/vaults/clitest-vaultgygpgj2xlir\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"westus\",\"name\":\"clitest-vaultbx5ncqebt57\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A49%3A54.1116336Z'\\\"\",\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"39333047-6338-4750-a11e-8bf98e1c5dc8\",\"type\":\"SystemAssigned, - UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgt4bwy2odwqpl5qjklfiw4fnboib54hcj355pcqo655z5fz557jkqd2u32iqs2yrp4/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity1gpugoskgl2axtmnb2k2bqpmfzxgkmkevt\":{\"clientId\":\"f192ea24-4baa-4087-b243-c94e82bf63bd\",\"principalId\":\"8135ce01-e807-4040-ae9f-e0528580d646\"}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgt4bwy2odwqpl5qjklfiw4fnboib54hcj355pcqo655z5fz557jkqd2u32iqs2yrp4/providers/Microsoft.RecoveryServices/vaults/clitest-vaultbx5ncqebt57\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"westus\",\"name\":\"clitest-vaultxl76coo2may\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A49%3A55.6187868Z'\\\"\",\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"3fe3cce3-eea1-4397-8bdc-fda70f24163e\",\"type\":\"SystemAssigned, - UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgt4bwy2odwqpl5qjklfiw4fnboib54hcj355pcqo655z5fz557jkqd2u32iqs2yrp4/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity1gpugoskgl2axtmnb2k2bqpmfzxgkmkevt\":{\"clientId\":\"f192ea24-4baa-4087-b243-c94e82bf63bd\",\"principalId\":\"8135ce01-e807-4040-ae9f-e0528580d646\"},\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgt4bwy2odwqpl5qjklfiw4fnboib54hcj355pcqo655z5fz557jkqd2u32iqs2yrp4/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity2hrwglegaa7y3punjjpn3crvlmevtl6ygb\":{\"clientId\":\"a53ebe9f-dd02-4ff8-b6d3-056ef1a9030b\",\"principalId\":\"f37c3ca0-5046-437c-8474-8dfbc2a4d3ab\"}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":{\"keyVaultProperties\":{\"keyUri\":\"https://clitestetgq2n3rvrqaje2f4.vault.azure.net/keys/clitest-key22tys3fvv/b93ffa9bd5e0404c9a118efdb65583ae\"},\"kekIdentity\":{\"useSystemAssignedIdentity\":true,\"userAssignedIdentity\":null},\"infrastructureEncryption\":\"Disabled\"},\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgt4bwy2odwqpl5qjklfiw4fnboib54hcj355pcqo655z5fz557jkqd2u32iqs2yrp4/providers/Microsoft.RecoveryServices/vaults/clitest-vaultxl76coo2may\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"westus\",\"name\":\"iaasvmsqlworkloadexistingvault3\",\"etag\":\"W/\\\"datetime'2025-08-14T15%3A03%3A44.2106635Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault3\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus\",\"name\":\"saphana-clitest-vault2\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A10%3A47.8307987Z'\\\"\",\"tags\":{\"Owner\":\"akneema\",\"Purpose\":\"Testing\",\"DeleteBy\":\"12-9999\",\"MABUsed\":\"Yes\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/saphana-clitest-rg/providers/Microsoft.RecoveryServices/vaults/saphana-clitest-vault2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus\",\"name\":\"CopilotDemoVault\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A11%3A41.9055626Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/CopilotDemoVault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus\",\"name\":\"zwestusvault\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A34%3A53.5279513Z'\\\"\",\"tags\":{\"Owner\":\"zubairabid\",\"Purpose\":\"CRR - Testing\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zubairRG/providers/Microsoft.RecoveryServices/vaults/zwestusvault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"asdfsdf\",\"etag\":\"W/\\\"datetime'2025-08-14T09%3A56%3A49.340401Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/accessibility/providers/Microsoft.RecoveryServices/vaults/asdfsdf\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"adigupt-sql-archieve-vault\",\"etag\":\"W/\\\"datetime'2025-08-14T09%3A56%3A49.939061Z'\\\"\",\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"4c768a8a-6899-43cf-987d-8d4aaf231102\",\"type\":\"SystemAssigned, - UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzSecPackAutoConfigRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/AzSecPackAutoConfigUA-centraluseuap\":{\"clientId\":\"33ad67f7-e81a-403a-8874-7ca0f1e610ea\",\"principalId\":\"0a2484e3-df35-472e-a56f-9a83c91ec847\"}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":null,\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adigupt-east-us-rg/providers/Microsoft.RecoveryServices/vaults/adigupt-sql-archieve-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"testab\",\"etag\":\"W/\\\"datetime'2025-08-14T09%3A56%3A50.7336136Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adigupt-east-us-rg/providers/Microsoft.RecoveryServices/vaults/testab/privateEndpointConnections/testabc.3520943893222067065.backup.f32db09b-be28-4c27-9483-0c5dcd94b666\",\"name\":\"testabc.3520943893222067065.backup.f32db09b-be28-4c27-9483-0c5dcd94b666\",\"type\":\"Microsoft.RecoveryServices/vaults/privateEndpointConnections\",\"location\":\"eastus\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpoint\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adigupt-east-us-rg/providers/Microsoft.Network/privateEndpoints/testabc\"},\"groupIds\":[\"AzureBackup\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"None\",\"actionsRequired\":\"None\"}}}],\"privateEndpointStateForBackup\":\"Enabled\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adigupt-east-us-rg/providers/Microsoft.RecoveryServices/vaults/testab\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"eusvault\",\"etag\":\"W/\\\"datetime'2025-08-14T09%3A56%3A56.9540972Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adigupt-ecy-rg/providers/Microsoft.RecoveryServices/vaults/eusvault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"blobbackupvaulteus\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A03%3A42.2640495Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Disabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/blobbackupvaulteus\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"sdfafdf\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A05%3A36.5654553Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AdkayethBugbash/providers/Microsoft.RecoveryServices/vaults/sdfafdf\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"test123abc123\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A06%3A25.3438899Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AdkayethBugbash/providers/Microsoft.RecoveryServices/vaults/test123abc123\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"sdfsdfsdf\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A06%3A34.9704501Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayethImmutability/providers/Microsoft.RecoveryServices/vaults/sdfsdfsdf\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"Myclivault\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A14%3A59.531612Z'\\\"\",\"tags\":{\"MABUsed\":\"Yes\",\"Owner\":\"t-shjoshi\",\"Purpose\":\"Testing\",\"DeleteBy\":\"12-2099\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Disabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Disabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/afstests/providers/Microsoft.RecoveryServices/vaults/Myclivault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"akkanaseEastUSPOC1\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A24%3A27.761933Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseEastUS1/providers/Microsoft.RecoveryServices/vaults/akkanaseEastUSPOC1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"akkanaseEastUSPOC10\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A24%3A29.8117616Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseEastUS1/providers/Microsoft.RecoveryServices/vaults/akkanaseEastUSPOC10\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"akkanaseEastUSPOC2\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A24%3A31.362875Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseEastUS1/providers/Microsoft.RecoveryServices/vaults/akkanaseEastUSPOC2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"akkanaseEastUSPOC3\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A24%3A32.9149884Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseEastUS1/providers/Microsoft.RecoveryServices/vaults/akkanaseEastUSPOC3\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"akkanaseEastUSPOC4\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A24%3A34.3611628Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseEastUS1/providers/Microsoft.RecoveryServices/vaults/akkanaseEastUSPOC4\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"akkanaseEastUSPOC5\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A24%3A36.5249255Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseEastUS1/providers/Microsoft.RecoveryServices/vaults/akkanaseEastUSPOC5\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"akkanaseEastUSPOC6\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A24%3A38.0300657Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseEastUS1/providers/Microsoft.RecoveryServices/vaults/akkanaseEastUSPOC6\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"akkanaseEastUSPOC7\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A24%3A40.7675008Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseEastUS1/providers/Microsoft.RecoveryServices/vaults/akkanaseEastUSPOC7\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"akkanaseEastUSPOC8\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A24%3A43.3160444Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseEastUS1/providers/Microsoft.RecoveryServices/vaults/akkanaseEastUSPOC8\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"akkanaseEastUSPOC9\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A24%3A45.6067355Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseEastUS1/providers/Microsoft.RecoveryServices/vaults/akkanaseEastUSPOC9\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"akkanasePOC1\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A24%3A56.8223233Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanasePOC/providers/Microsoft.RecoveryServices/vaults/akkanasePOC1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"akkanaseTest2321\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A26%3A31.7082153Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":null,\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseTest/providers/Microsoft.RecoveryServices/vaults/akkanaseTest2321\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"amit-replicated-item\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A43%3A27.1290441Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amitranjan/providers/Microsoft.RecoveryServices/vaults/amit-replicated-item\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"ankureustest2\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A43%3A32.715873Z'\\\"\",\"tags\":{\"Owner\":\"ankur\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurRG137/providers/Microsoft.RecoveryServices/vaults/ankureustest2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"RSV1110\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A58%3A48.7180252Z'\\\"\",\"tags\":{\"Owner\":\"ankur\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurRG137/providers/Microsoft.RecoveryServices/vaults/RSV1110\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"arohijain-backupvault\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A15%3A10.3115104Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/arohijain-rg/providers/Microsoft.RecoveryServices/vaults/arohijain-backupvault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"donotuse-v1workloadtest-bvt-ecy-cross-vault\",\"etag\":\"W/\\\"datetime'2025-08-14T12%3A31%3A12.9051615Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/donotuse-v1workloadtest-bvt-ecy-cross-rg/providers/Microsoft.RecoveryServices/vaults/donotuse-v1workloadtest-bvt-ecy-cross-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"sqlvaultf3ac75\",\"etag\":\"W/\\\"datetime'2025-08-14T12%3A31%3A13.2229797Z'\\\"\",\"tags\":{\"MAB - Used\":\"Yes\",\"Owner\":\"Workload Backup team;vintib\",\"Purpose\":\"WorkloadBackup-SwaggerTest\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dontusesqlrg/providers/Microsoft.RecoveryServices/vaults/sqlvaultf3ac75\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"gvjreddy-test-eus-vault\",\"etag\":\"W/\\\"datetime'2025-08-14T12%3A46%3A36.5183341Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":null,\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-test-eus-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"gvjreddy-test-vault-20230714-1416\",\"etag\":\"W/\\\"datetime'2025-08-14T12%3A46%3A43.0536182Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-test-vault-20230714-1416\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"hsrtest\",\"etag\":\"W/\\\"datetime'2025-08-14T12%3A46%3A52.1614382Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hanarg2/providers/Microsoft.RecoveryServices/vaults/hsrtest\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"hiaga-zrs-vault\",\"etag\":\"W/\\\"datetime'2025-09-16T04%3A25%3A54.3138917Z'\\\"\",\"tags\":{\"MABUsed\":\"yes\",\"Purpose\":\"testing\",\"Owner\":\"hiaga\",\"DeleteBy\":\"01-2099\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-zrs-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"hiagaAlerts1\",\"etag\":\"W/\\\"datetime'2025-08-14T12%3A46%3A57.4114527Z'\\\"\",\"tags\":{\"MABUsed\":\"yes\",\"Owner\":\"hiaga\",\"Purpose\":\"testing\",\"DeleteBy\":\"01-2099\"},\"identity\":{\"type\":\"None\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaAlerts1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"hiagaCRRDES-testvault\",\"etag\":\"W/\\\"datetime'2025-08-14T12%3A47%3A01.8059528Z'\\\"\",\"tags\":{\"MABUsed\":\"yes\",\"Owner\":\"hiaga\",\"Purpose\":\"testing\",\"DeleteBy\":\"01-2099\"},\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"2703a374-5394-4e85-ad37-c60a4711c97d\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":{\"keyVaultProperties\":{\"keyUri\":\"https://hiagakveus1.vault.azure.net/keys/hiagaKey\"},\"kekIdentity\":{\"useSystemAssignedIdentity\":true,\"userAssignedIdentity\":null},\"infrastructureEncryption\":\"Disabled\"},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaCRRDES-testvault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"hiagaVaultCredEUS\",\"etag\":\"W/\\\"datetime'2025-08-14T12%3A47%3A34.4833602Z'\\\"\",\"tags\":{\"MABUsed\":\"yes\",\"Owner\":\"hiaga\",\"Purpose\":\"testing\",\"DeleteBy\":\"01-2099\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVaultCredEUS\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"ianna-afs-vault-1\",\"etag\":\"W/\\\"datetime'2025-10-10T18%3A28%3A15.7228028Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iannafs-pstest-sa-rg-1/providers/Microsoft.RecoveryServices/vaults/ianna-afs-vault-1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"ianna-afs-vault2\",\"etag\":\"W/\\\"datetime'2025-10-13T23%3A49%3A17.7063063Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iannafs-pstest-sa-rg-2/providers/Microsoft.RecoveryServices/vaults/ianna-afs-vault2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"defaultvault\",\"etag\":\"W/\\\"datetime'2025-08-14T15%3A45%3A14.1627815Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raghavchugh-rg/providers/Microsoft.RecoveryServices/vaults/defaultvault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"iaasvm-bug-test-primary\",\"etag\":\"W/\\\"datetime'2025-08-14T15%3A45%3A14.6135236Z'\\\"\",\"tags\":{\"CreatedOn\":\"2025-07-15T05:05:15.5434378Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raghavchugh-rg/providers/Microsoft.RecoveryServices/vaults/iaasvm-bug-test-primary\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"hotfixTest11\",\"etag\":\"W/\\\"datetime'2025-08-14T15%3A55%3A10.241975Z'\\\"\",\"tags\":{\"Owner\":\"ishanjindal\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redundancyTestingVault/providers/Microsoft.RecoveryServices/vaults/hotfixTest11\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"simran-tets\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A31%3A50.7584035Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/simran-test/providers/Microsoft.RecoveryServices/vaults/simran-tets\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"test\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A33%3A38.3690694Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vault-create-test-rg/providers/Microsoft.RecoveryServices/vaults/test\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"vepothir-del-10\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A34%3A01.6427991Z'\\\"\",\"tags\":{\"Owner\":\"vepothir\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vepothir-rg-ram-sub/providers/Microsoft.RecoveryServices/vaults/vepothir-del-10\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"vepothir-vault-eastUs-Functional-Testing-sub\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A34%3A02.4103616Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vepothir-rg-ram-sub/providers/Microsoft.RecoveryServices/vaults/vepothir-vault-eastUs-Functional-Testing-sub\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"vepothir122-3\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A34%3A00.9302054Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vepothir-rg-ram-sub/providers/Microsoft.RecoveryServices/vaults/vepothir122-3\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"northeurope\",\"name\":\"akkanaseNorthEurope1\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A24%3A50.909375Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseNorthEurope1/providers/Microsoft.RecoveryServices/vaults/akkanaseNorthEurope1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"northeurope\",\"name\":\"akkanaseNorthEurope10\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A24%3A51.9597731Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseNorthEurope1/providers/Microsoft.RecoveryServices/vaults/akkanaseNorthEurope10\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"northeurope\",\"name\":\"akkanaseNorthEurope2\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A24%3A52.58802Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseNorthEurope1/providers/Microsoft.RecoveryServices/vaults/akkanaseNorthEurope2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"northeurope\",\"name\":\"akkanaseNorthEurope3\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A24%3A52.9832871Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseNorthEurope1/providers/Microsoft.RecoveryServices/vaults/akkanaseNorthEurope3\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"northeurope\",\"name\":\"akkanaseNorthEurope4\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A24%3A53.3785558Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseNorthEurope1/providers/Microsoft.RecoveryServices/vaults/akkanaseNorthEurope4\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"northeurope\",\"name\":\"akkanaseNorthEurope5\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A24%3A53.6822242Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseNorthEurope1/providers/Microsoft.RecoveryServices/vaults/akkanaseNorthEurope5\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"northeurope\",\"name\":\"akkanaseNorthEurope6\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A24%3A54.4508561Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseNorthEurope1/providers/Microsoft.RecoveryServices/vaults/akkanaseNorthEurope6\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"northeurope\",\"name\":\"akkanaseNorthEurope7\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A24%3A54.8829626Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseNorthEurope1/providers/Microsoft.RecoveryServices/vaults/akkanaseNorthEurope7\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"northeurope\",\"name\":\"akkanaseNorthEurope8\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A24%3A55.7700756Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseNorthEurope1/providers/Microsoft.RecoveryServices/vaults/akkanaseNorthEurope8\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"northeurope\",\"name\":\"akkanaseNorthEurope9\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A24%3A56.0179895Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseNorthEurope1/providers/Microsoft.RecoveryServices/vaults/akkanaseNorthEurope9\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"northeurope\",\"name\":\"testing123\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A03%3A32.094997Z'\\\"\",\"tags\":{\"Owner\":\"ishanjindal\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redundancyTestingVault/providers/Microsoft.RecoveryServices/vaults/testing123\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westeurope\",\"name\":\"test435465\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A04%3A06.491094Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/test435465\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westeurope\",\"name\":\"akkanaseWestEurope1\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A31%3A46.8187305Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseWestEurope1/providers/Microsoft.RecoveryServices/vaults/akkanaseWestEurope1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westeurope\",\"name\":\"akkanaseWestEurope10\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A31%3A49.2610357Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseWestEurope1/providers/Microsoft.RecoveryServices/vaults/akkanaseWestEurope10\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westeurope\",\"name\":\"akkanaseWestEurope2\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A31%3A50.4010435Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseWestEurope1/providers/Microsoft.RecoveryServices/vaults/akkanaseWestEurope2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westeurope\",\"name\":\"akkanaseWestEurope3\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A31%3A53.8479485Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseWestEurope1/providers/Microsoft.RecoveryServices/vaults/akkanaseWestEurope3\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westeurope\",\"name\":\"akkanaseWestEurope4\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A31%3A55.7874542Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseWestEurope1/providers/Microsoft.RecoveryServices/vaults/akkanaseWestEurope4\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westeurope\",\"name\":\"akkanaseWestEurope5\",\"etag\":\"W/\\\"datetime'2025-08-28T10%3A13%3A28.4230065Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseWestEurope1/providers/Microsoft.RecoveryServices/vaults/akkanaseWestEurope5\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westeurope\",\"name\":\"akkanaseWestEurope6\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A31%3A59.0641045Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseWestEurope1/providers/Microsoft.RecoveryServices/vaults/akkanaseWestEurope6\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westeurope\",\"name\":\"akkanaseWestEurope7\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A31%3A59.7978915Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseWestEurope1/providers/Microsoft.RecoveryServices/vaults/akkanaseWestEurope7\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westeurope\",\"name\":\"akkanaseWestEurope8\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A32%3A01.9653986Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseWestEurope1/providers/Microsoft.RecoveryServices/vaults/akkanaseWestEurope8\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westeurope\",\"name\":\"akkanaseWestEurope9\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A32%3A03.2398177Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseWestEurope1/providers/Microsoft.RecoveryServices/vaults/akkanaseWestEurope9\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westeurope\",\"name\":\"akneema-we-vault\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A42%3A22.1019806Z'\\\"\",\"tags\":{\"Owner\":\"akneema\",\"Purpose\":\"Testing\",\"DeleteBy\":\"12-9999\",\"MABUsed\":\"Yes\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema-we-rg/providers/Microsoft.RecoveryServices/vaults/akneema-we-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westeurope\",\"name\":\"ankurVault1219\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A43%3A29.1024445Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurResourceGuard1/providers/Microsoft.RecoveryServices/vaults/ankurVault1219\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westeurope\",\"name\":\"ankurVault12191\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A43%3A29.5703948Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurResourceGuard1/providers/Microsoft.RecoveryServices/vaults/ankurVault12191\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westeurope\",\"name\":\"ankurVault121911\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A43%3A30.4604951Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurResourceGuard1/providers/Microsoft.RecoveryServices/vaults/ankurVault121911\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westeurope\",\"name\":\"ankurVault121911219\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A43%3A31.1783504Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurResourceGuard1/providers/Microsoft.RecoveryServices/vaults/ankurVault121911219\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westeurope\",\"name\":\"dmbvtsource222\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A55%3A44.9240182Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmbvtrgwe222/providers/Microsoft.RecoveryServices/vaults/dmbvtsource222\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"westeurope\",\"name\":\"dmbvtsource907\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A56%3A17.9225318Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmbvtrgwe907/providers/Microsoft.RecoveryServices/vaults/dmbvtsource907\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"westeurope\",\"name\":\"gvjreddy-test-vault-we\",\"etag\":\"W/\\\"datetime'2025-08-14T12%3A46%3A46.9760078Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":null,\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-test-vault-we\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westeurope\",\"name\":\"gvjreddy-test-we-vault-tbd\",\"etag\":\"W/\\\"datetime'2025-08-14T12%3A46%3A48.8468163Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-test-we-vault-tbd\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westeurope\",\"name\":\"rsv-payas\",\"etag\":\"W/\\\"datetime'2025-08-14T15%3A43%3A09.2031199Z'\\\"\",\"tags\":{\"Owner\":\"payalsinghal\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/payalsinghal/providers/Microsoft.RecoveryServices/vaults/rsv-payas\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"akkanaseTestabc\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A26%3A33.9173102Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseTest/providers/Microsoft.RecoveryServices/vaults/akkanaseTestabc\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"seavault\",\"etag\":\"W/\\\"datetime'2025-10-14T05%3A59%3A56.1285916Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amitranjan/providers/Microsoft.RecoveryServices/vaults/seavault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"amitsae\",\"etag\":\"W/\\\"datetime'2025-10-21T07%3A16%3A24.9192532Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amitranjansae/providers/Microsoft.RecoveryServices/vaults/amitsae\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"mkheranizrs\",\"etag\":\"W/\\\"datetime'2025-08-14T15%3A42%3A11.293903Z'\\\"\",\"tags\":{\"Owner\":\"mkherani\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mkherani/providers/Microsoft.RecoveryServices/vaults/mkheranizrs\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southcentralus\",\"name\":\"akkanaseSouthCentralUS1\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A24%3A57.2418486Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseSouthCentralUS1/providers/Microsoft.RecoveryServices/vaults/akkanaseSouthCentralUS1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southcentralus\",\"name\":\"akkanaseSouthCentralUS10\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A24%3A59.7259398Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseSouthCentralUS1/providers/Microsoft.RecoveryServices/vaults/akkanaseSouthCentralUS10\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southcentralus\",\"name\":\"akkanaseSouthCentralUS2\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A24%3A59.9390042Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseSouthCentralUS1/providers/Microsoft.RecoveryServices/vaults/akkanaseSouthCentralUS2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southcentralus\",\"name\":\"akkanaseSouthCentralUS3\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A25%3A00.8181428Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseSouthCentralUS1/providers/Microsoft.RecoveryServices/vaults/akkanaseSouthCentralUS3\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southcentralus\",\"name\":\"akkanaseSouthCentralUS4\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A25%3A01.4882001Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseSouthCentralUS1/providers/Microsoft.RecoveryServices/vaults/akkanaseSouthCentralUS4\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southcentralus\",\"name\":\"akkanaseSouthCentralUS5\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A25%3A02.5306241Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseSouthCentralUS1/providers/Microsoft.RecoveryServices/vaults/akkanaseSouthCentralUS5\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southcentralus\",\"name\":\"akkanaseSouthCentralUS6\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A25%3A02.8482286Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseSouthCentralUS1/providers/Microsoft.RecoveryServices/vaults/akkanaseSouthCentralUS6\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southcentralus\",\"name\":\"akkanaseSouthCentralUS7\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A25%3A03.7104428Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseSouthCentralUS1/providers/Microsoft.RecoveryServices/vaults/akkanaseSouthCentralUS7\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southcentralus\",\"name\":\"akkanaseSouthCentralUS8\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A25%3A04.1923255Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseSouthCentralUS1/providers/Microsoft.RecoveryServices/vaults/akkanaseSouthCentralUS8\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southcentralus\",\"name\":\"akkanaseSouthCentralUS9\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A25%3A05.0366181Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseSouthCentralUS1/providers/Microsoft.RecoveryServices/vaults/akkanaseSouthCentralUS9\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"japaneast\",\"name\":\"testPe\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A32%3A26.1328588Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_japaneast_1/providers/Microsoft.RecoveryServices/vaults/testPe/privateEndpointConnections/akkanaseTest.1623882292348111020.backup.f808191e-870e-4908-b2aa-7e6673b76a80\",\"name\":\"akkanaseTest.1623882292348111020.backup.f808191e-870e-4908-b2aa-7e6673b76a80\",\"type\":\"Microsoft.RecoveryServices/vaults/privateEndpointConnections\",\"location\":\"japaneast\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpoint\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_japaneast_1/providers/Microsoft.Network/privateEndpoints/akkanaseTest\"},\"groupIds\":[\"AzureBackup\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"None\",\"actionsRequired\":\"None\"}}}],\"privateEndpointStateForBackup\":\"Enabled\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_japaneast_1/providers/Microsoft.RecoveryServices/vaults/testPe\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"japaneast\",\"name\":\"vault142\",\"etag\":\"W/\\\"datetime'2025-08-14T15%3A44%3A07.1695084Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prnookal-prod/providers/Microsoft.RecoveryServices/vaults/vault142\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"japaneast\",\"name\":\"vault335\",\"etag\":\"W/\\\"datetime'2025-08-14T15%3A45%3A11.6496781Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prnookal-prod/providers/Microsoft.RecoveryServices/vaults/vault335\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2\",\"name\":\"akkanaseTest321\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A02%3A27.8429629Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/akkanaseTest321\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2\",\"name\":\"akkanaseTest3215\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A02%3A31.5029507Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/akkanaseTest3215\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2\",\"name\":\"akkanaseTest3232\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A02%3A32.619067Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/akkanaseTest3232\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2\",\"name\":\"blobbackupeus2\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A03%3A38.7595796Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Disabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Disabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/blobbackupeus2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2\",\"name\":\"test321231\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A04%3A05.4068946Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/test321231\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2\",\"name\":\"akkanaseTest32\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A12%3A09.0423473Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/afstests/providers/Microsoft.RecoveryServices/vaults/akkanaseTest32\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2\",\"name\":\"akkanaseTest132123\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A26%3A30.9885737Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseTest/providers/Microsoft.RecoveryServices/vaults/akkanaseTest132123\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2\",\"name\":\"akkanaseTest543\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A26%3A32.8235247Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseTest/providers/Microsoft.RecoveryServices/vaults/akkanaseTest543\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2\",\"name\":\"asfaf\",\"etag\":\"W/\\\"datetime'2025-09-17T07%3A51%3A28.2155491Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amitranjan/providers/Microsoft.RecoveryServices/vaults/asfaf\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2\",\"name\":\"testing11\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A03%3A30.8806986Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redundancyTestingVault/providers/Microsoft.RecoveryServices/vaults/testing11\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2\",\"name\":\"sarathhanalargedbtargetvault\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A15%3A57.7823186Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarathhanalargedbtargetvault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centralindia\",\"name\":\"akkanaseCentralIndia1\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A22%3A02.3944417Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseCentralIndia1/providers/Microsoft.RecoveryServices/vaults/akkanaseCentralIndia1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centralindia\",\"name\":\"akkanaseCentralIndia10\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A22%3A06.3481766Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseCentralIndia1/providers/Microsoft.RecoveryServices/vaults/akkanaseCentralIndia10\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centralindia\",\"name\":\"akkanaseCentralIndia2\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A22%3A08.4019999Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseCentralIndia1/providers/Microsoft.RecoveryServices/vaults/akkanaseCentralIndia2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centralindia\",\"name\":\"akkanaseCentralIndia3\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A22%3A11.2033953Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseCentralIndia1/providers/Microsoft.RecoveryServices/vaults/akkanaseCentralIndia3\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centralindia\",\"name\":\"akkanaseCentralIndia4\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A22%3A13.0123583Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseCentralIndia1/providers/Microsoft.RecoveryServices/vaults/akkanaseCentralIndia4\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centralindia\",\"name\":\"akkanaseCentralIndia5\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A22%3A14.2146696Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseCentralIndia1/providers/Microsoft.RecoveryServices/vaults/akkanaseCentralIndia5\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centralindia\",\"name\":\"akkanaseCentralIndia6\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A22%3A15.0022189Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseCentralIndia1/providers/Microsoft.RecoveryServices/vaults/akkanaseCentralIndia6\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centralindia\",\"name\":\"akkanaseCentralIndia7\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A22%3A16.2704927Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseCentralIndia1/providers/Microsoft.RecoveryServices/vaults/akkanaseCentralIndia7\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centralindia\",\"name\":\"akkanaseCentralIndia8\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A22%3A17.8395951Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseCentralIndia1/providers/Microsoft.RecoveryServices/vaults/akkanaseCentralIndia8\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centralindia\",\"name\":\"akkanaseCentralIndia9\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A22%3A20.4031257Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseCentralIndia1/providers/Microsoft.RecoveryServices/vaults/akkanaseCentralIndia9\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centralindia\",\"name\":\"akkanaseCentralIndiaPOC1\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A22%3A23.9660847Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseCentralIndia1/providers/Microsoft.RecoveryServices/vaults/akkanaseCentralIndiaPOC1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centralindia\",\"name\":\"akkanaseCentralIndiaPOC10\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A22%3A28.4105395Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseCentralIndia1/providers/Microsoft.RecoveryServices/vaults/akkanaseCentralIndiaPOC10\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centralindia\",\"name\":\"akkanaseCentralIndiaPOC2\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A22%3A34.1032786Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseCentralIndia1/providers/Microsoft.RecoveryServices/vaults/akkanaseCentralIndiaPOC2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centralindia\",\"name\":\"akkanaseCentralIndiaPOC3\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A22%3A47.9893249Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseCentralIndia1/providers/Microsoft.RecoveryServices/vaults/akkanaseCentralIndiaPOC3\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centralindia\",\"name\":\"akkanaseCentralIndiaPOC4\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A22%3A55.2391718Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseCentralIndia1/providers/Microsoft.RecoveryServices/vaults/akkanaseCentralIndiaPOC4\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centralindia\",\"name\":\"akkanaseCentralIndiaPOC5\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A23%3A00.9718885Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseCentralIndia1/providers/Microsoft.RecoveryServices/vaults/akkanaseCentralIndiaPOC5\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centralindia\",\"name\":\"akkanaseCentralIndiaPOC6\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A23%3A16.3430825Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseCentralIndia1/providers/Microsoft.RecoveryServices/vaults/akkanaseCentralIndiaPOC6\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centralindia\",\"name\":\"akkanaseCentralIndiaPOC7\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A23%3A18.4808588Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseCentralIndia1/providers/Microsoft.RecoveryServices/vaults/akkanaseCentralIndiaPOC7\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centralindia\",\"name\":\"akkanaseCentralIndiaPOC8\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A23%3A19.8870531Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseCentralIndia1/providers/Microsoft.RecoveryServices/vaults/akkanaseCentralIndiaPOC8\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centralindia\",\"name\":\"akkanaseCentralIndiaPOC9\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A23%3A21.174316Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseCentralIndia1/providers/Microsoft.RecoveryServices/vaults/akkanaseCentralIndiaPOC9\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centralindia\",\"name\":\"mkheranidesktopbackup\",\"etag\":\"W/\\\"datetime'2025-08-14T15%3A42%3A26.1191469Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mkheranibackup/providers/Microsoft.RecoveryServices/vaults/mkheranidesktopbackup\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southindia\",\"name\":\"akkanaseTest32146\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A02%3A30.3055455Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/akkanaseTest32146\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southindia\",\"name\":\"SouthIndia123\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A03%3A50.0343807Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/SouthIndia123\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southindia\",\"name\":\"akkanaseSouthIndia1\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A25%3A06.0516966Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseSouthIndia1/providers/Microsoft.RecoveryServices/vaults/akkanaseSouthIndia1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southindia\",\"name\":\"akkanaseSouthIndia10\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A25%3A08.0310282Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseSouthIndia1/providers/Microsoft.RecoveryServices/vaults/akkanaseSouthIndia10\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southindia\",\"name\":\"akkanaseSouthIndia2\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A25%3A09.4498149Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseSouthIndia1/providers/Microsoft.RecoveryServices/vaults/akkanaseSouthIndia2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southindia\",\"name\":\"akkanaseSouthIndia3\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A25%3A10.4066247Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseSouthIndia1/providers/Microsoft.RecoveryServices/vaults/akkanaseSouthIndia3\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southindia\",\"name\":\"akkanaseSouthIndia4\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A25%3A11.6073667Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseSouthIndia1/providers/Microsoft.RecoveryServices/vaults/akkanaseSouthIndia4\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southindia\",\"name\":\"akkanaseSouthIndia5\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A25%3A12.0384784Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseSouthIndia1/providers/Microsoft.RecoveryServices/vaults/akkanaseSouthIndia5\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southindia\",\"name\":\"akkanaseSouthIndia6\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A25%3A13.688254Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseSouthIndia1/providers/Microsoft.RecoveryServices/vaults/akkanaseSouthIndia6\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southindia\",\"name\":\"akkanaseSouthIndia7\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A25%3A14.5504778Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseSouthIndia1/providers/Microsoft.RecoveryServices/vaults/akkanaseSouthIndia7\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southindia\",\"name\":\"akkanaseSouthIndia8\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A25%3A15.9264522Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseSouthIndia1/providers/Microsoft.RecoveryServices/vaults/akkanaseSouthIndia8\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southindia\",\"name\":\"akkanaseSouthIndia9\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A25%3A16.370508Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseSouthIndia1/providers/Microsoft.RecoveryServices/vaults/akkanaseSouthIndia9\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southindia\",\"name\":\"mkheranilaptop\",\"etag\":\"W/\\\"datetime'2025-08-14T15%3A43%3A01.4719623Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mkheranibackup/providers/Microsoft.RecoveryServices/vaults/mkheranilaptop\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westindia\",\"name\":\"adkamuamfa\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A06%3A49.9663385Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/afstests/providers/Microsoft.RecoveryServices/vaults/adkamuamfa\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westindia\",\"name\":\"akkanaseTest124\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A26%3A29.5589913Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseTest/providers/Microsoft.RecoveryServices/vaults/akkanaseTest124\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westindia\",\"name\":\"akkanaseWestIndia1\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A32%3A05.8266853Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseWestIndia1/providers/Microsoft.RecoveryServices/vaults/akkanaseWestIndia1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westindia\",\"name\":\"akkanaseWestIndia10\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A32%3A07.5046617Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseWestIndia1/providers/Microsoft.RecoveryServices/vaults/akkanaseWestIndia10\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westindia\",\"name\":\"akkanaseWestIndia2\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A32%3A11.2243938Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseWestIndia1/providers/Microsoft.RecoveryServices/vaults/akkanaseWestIndia2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westindia\",\"name\":\"akkanaseWestIndia3\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A33%3A10.4633108Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseWestIndia1/providers/Microsoft.RecoveryServices/vaults/akkanaseWestIndia3\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westindia\",\"name\":\"akkanaseWestIndia4\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A33%3A15.249399Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseWestIndia1/providers/Microsoft.RecoveryServices/vaults/akkanaseWestIndia4\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westindia\",\"name\":\"akkanaseWestIndia5\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A33%3A17.4620533Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseWestIndia1/providers/Microsoft.RecoveryServices/vaults/akkanaseWestIndia5\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westindia\",\"name\":\"akkanaseWestIndia6\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A33%3A19.3419105Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseWestIndia1/providers/Microsoft.RecoveryServices/vaults/akkanaseWestIndia6\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westindia\",\"name\":\"akkanaseWestIndia7\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A33%3A21.3187072Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseWestIndia1/providers/Microsoft.RecoveryServices/vaults/akkanaseWestIndia7\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westindia\",\"name\":\"akkanaseWestIndia8\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A33%3A23.3214892Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseWestIndia1/providers/Microsoft.RecoveryServices/vaults/akkanaseWestIndia8\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westindia\",\"name\":\"akkanaseWestIndia9\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A33%3A25.5081596Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseWestIndia1/providers/Microsoft.RecoveryServices/vaults/akkanaseWestIndia9\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"canadacentral\",\"name\":\"akkanaseCanadaCentral1\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A21%3A42.4186813Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseCanadaCentral1/providers/Microsoft.RecoveryServices/vaults/akkanaseCanadaCentral1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"canadacentral\",\"name\":\"akkanaseCanadaCentral10\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A21%3A43.0113433Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseCanadaCentral1/providers/Microsoft.RecoveryServices/vaults/akkanaseCanadaCentral10\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"canadacentral\",\"name\":\"akkanaseCanadaCentral2\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A21%3A44.5124885Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseCanadaCentral1/providers/Microsoft.RecoveryServices/vaults/akkanaseCanadaCentral2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"canadacentral\",\"name\":\"akkanaseCanadaCentral3\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A21%3A45.4979267Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseCanadaCentral1/providers/Microsoft.RecoveryServices/vaults/akkanaseCanadaCentral3\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"canadacentral\",\"name\":\"akkanaseCanadaCentral4\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A21%3A47.6527003Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseCanadaCentral1/providers/Microsoft.RecoveryServices/vaults/akkanaseCanadaCentral4\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"canadacentral\",\"name\":\"akkanaseCanadaCentral5\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A21%3A48.1144387Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseCanadaCentral1/providers/Microsoft.RecoveryServices/vaults/akkanaseCanadaCentral5\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"canadacentral\",\"name\":\"akkanaseCanadaCentral6\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A21%3A49.1938222Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseCanadaCentral1/providers/Microsoft.RecoveryServices/vaults/akkanaseCanadaCentral6\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"canadacentral\",\"name\":\"akkanaseCanadaCentral7\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A21%3A50.2742072Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseCanadaCentral1/providers/Microsoft.RecoveryServices/vaults/akkanaseCanadaCentral7\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"canadacentral\",\"name\":\"akkanaseCanadaCentral8\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A21%3A51.3845747Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseCanadaCentral1/providers/Microsoft.RecoveryServices/vaults/akkanaseCanadaCentral8\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"canadacentral\",\"name\":\"akkanaseCanadaCentral9\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A21%3A52.8617338Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseCanadaCentral1/providers/Microsoft.RecoveryServices/vaults/akkanaseCanadaCentral9\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westcentralus\",\"name\":\"mkheraniabclgrsv\",\"etag\":\"W/\\\"datetime'2025-08-14T15%3A42%3A17.2470764Z'\\\"\",\"tags\":{\"Owner\":\"mkherani\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mkheraniabclonghaul/providers/Microsoft.RecoveryServices/vaults/mkheraniabclgrsv\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westcentralus\",\"name\":\"vault177\",\"etag\":\"W/\\\"datetime'2025-08-14T15%3A45%3A12.3200534Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prnookal-wcus/providers/Microsoft.RecoveryServices/vaults/vault177\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus2\",\"name\":\"adkTestVault\",\"etag\":\"W/\\\"datetime'2025-08-14T09%3A57%3A26.6668359Z'\\\"\",\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"6034d1e5-7135-44c0-87b0-a63ef3249374\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Disabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/adkTestVault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus2\",\"name\":\"akkanase\",\"etag\":\"W/\\\"datetime'2025-08-14T09%3A57%3A30.8952665Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/akkanase\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus2\",\"name\":\"akkanaseTes3t32\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A02%3A15.9484593Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/akkanaseTes3t32\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus2\",\"name\":\"akkanaseTest1\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A02%3A20.0175893Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/akkanaseTest1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus2\",\"name\":\"akkanaseTest1231\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A02%3A22.1273236Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/akkanaseTest1231\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus2\",\"name\":\"akkanaseTestdf\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A02%3A37.3385227Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/akkanaseTestdf\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus2\",\"name\":\"NewVault32\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A03%3A45.7072734Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/NewVault32\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus2\",\"name\":\"SSSSS\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A03%3A51.686017Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Disabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/SSSSS\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus2\",\"name\":\"test123Akash\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A04%3A03.3428252Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/test123Akash\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus2\",\"name\":\"test54342\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A04%3A20.4855399Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/test54342\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus2\",\"name\":\"testabcdaef\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A04%3A35.917768Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/testabcdaef\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus2\",\"name\":\"xxzc\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A05%3A25.1495616Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Disabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Disabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/xxzc\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus2\",\"name\":\"akkanaseWestUS21\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A33%3A39.090427Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseWestUS2/providers/Microsoft.RecoveryServices/vaults/akkanaseWestUS21\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus2\",\"name\":\"akkanaseWestUS210\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A33%3A39.869008Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseWestUS2/providers/Microsoft.RecoveryServices/vaults/akkanaseWestUS210\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus2\",\"name\":\"akkanaseWestUS22\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A33%3A40.5141741Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseWestUS2/providers/Microsoft.RecoveryServices/vaults/akkanaseWestUS22\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus2\",\"name\":\"akkanaseWestUS23\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A33%3A41.5336973Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseWestUS2/providers/Microsoft.RecoveryServices/vaults/akkanaseWestUS23\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus2\",\"name\":\"akkanaseWestUS24\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A33%3A41.9399135Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseWestUS2/providers/Microsoft.RecoveryServices/vaults/akkanaseWestUS24\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus2\",\"name\":\"akkanaseWestUS25\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A33%3A42.9763618Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseWestUS2/providers/Microsoft.RecoveryServices/vaults/akkanaseWestUS25\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus2\",\"name\":\"akkanaseWestUS26\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A33%3A43.7768462Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseWestUS2/providers/Microsoft.RecoveryServices/vaults/akkanaseWestUS26\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus2\",\"name\":\"akkanaseWestUS27\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A33%3A44.6997935Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseWestUS2/providers/Microsoft.RecoveryServices/vaults/akkanaseWestUS27\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus2\",\"name\":\"akkanaseWestUS28\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A33%3A45.3160862Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseWestUS2/providers/Microsoft.RecoveryServices/vaults/akkanaseWestUS28\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus2\",\"name\":\"akkanaseWestUS29\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A33%3A46.2091644Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseWestUS2/providers/Microsoft.RecoveryServices/vaults/akkanaseWestUS29\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus2\",\"name\":\"copilot-testing\",\"etag\":\"W/\\\"datetime'2025-08-14T13%3A02%3A48.8777062Z'\\\"\",\"tags\":{\"AutoAddedTagsSpendMgmt\":\"Owner\",\"Owner\":\"akkanase\",\"CreatedOn\":\"2025-06-27T05:38:54.6130913Z\"},\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagarg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cmk-pstest-msi1\":{\"clientId\":\"cc17dc91-0ffc-41c4-9f4b-b7b61fa9f4e8\",\"principalId\":\"79e6360a-251c-4431-b817-a7fff3ac5c91\"}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":{\"keyVaultProperties\":{\"keyUri\":\"https://cmk-pstest-keyvault.vault.azure.net/keys/cmk-pstest-key/5569d5a163ee474cad2da4ac334af9d7\"},\"kekIdentity\":{\"useSystemAssignedIdentity\":false,\"userAssignedIdentity\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagarg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cmk-pstest-msi1\"},\"infrastructureEncryption\":\"Enabled\"},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvm.vmbackup-eastasia/providers/Microsoft.RecoveryServices/vaults/copilot-testing\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus2\",\"name\":\"raghav-cmk-test\",\"etag\":\"W/\\\"datetime'2025-09-03T06%3A45%3A51.3661029Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raghavchugh-westus2/providers/Microsoft.RecoveryServices/vaults/raghav-cmk-test\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus2\",\"name\":\"vepothir-cli\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A33%3A40.5374134Z'\\\"\",\"tags\":{\"CreatedOn\":\"2025-06-28T13:53:39.4746169Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vepothir-rg-blobs/providers/Microsoft.RecoveryServices/vaults/vepothir-cli\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"westus2\",\"name\":\"vepothir-vault-afterSDK\",\"etag\":\"W/\\\"datetime'2025-09-18T05%3A02%3A53.4311421Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vepothir-rg-ram-sub/providers/Microsoft.RecoveryServices/vaults/vepothir-vault-afterSDK\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"uksouth\",\"name\":\"gvjreddy-test-uksouth-rsvault\",\"etag\":\"W/\\\"datetime'2025-08-14T12%3A46%3A41.6668982Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-test-uksouth-rsvault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"ukwest\",\"name\":\"tesdfstsesfda\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A15%3A14.160571Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":null,\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/afstests/providers/Microsoft.RecoveryServices/vaults/tesdfstsesfda\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"ukwest\",\"name\":\"akkanasePOC3\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A16%3A56.286708Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Disabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanase/providers/Microsoft.RecoveryServices/vaults/akkanasePOC3\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"australiacentral\",\"name\":\"VikasTest\",\"etag\":\"W/\\\"datetime'2025-08-14T09%3A57%3A20.3791045Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":null,\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adigupt-ecy-rg/providers/Microsoft.RecoveryServices/vaults/VikasTest\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"uaenorth\",\"name\":\"gvjreddy-test-uaen-cmk-vault\",\"etag\":\"W/\\\"datetime'2025-08-14T12%3A46%3A39.5134793Z'\\\"\",\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/gvjreddy-test-uaen-mi\":{\"clientId\":\"2aa0004a-3b79-41d8-b601-73e590930bdc\",\"principalId\":\"0a440beb-f8a1-4dae-a845-1b868b8b7f0e\"}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":{\"keyVaultProperties\":{\"keyUri\":\"https://gvjreddy-test-uaen-kv.vault.azure.net/keys/key-one\"},\"kekIdentity\":{\"useSystemAssignedIdentity\":false,\"userAssignedIdentity\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/gvjreddy-test-uaen-mi\"},\"infrastructureEncryption\":\"Disabled\"},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-test-uaen-cmk-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"germanywestcentral\",\"name\":\"gvjreddy-test-vault-gwc\",\"etag\":\"W/\\\"datetime'2025-08-14T12%3A46%3A44.6515021Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-test-vault-gwc\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"norwayeast\",\"name\":\"test\",\"etag\":\"W/\\\"datetime'2025-08-14T12%3A46%3A51.2137035Z'\\\"\",\"tags\":{\"Owner\":\"Kalyan\",\"DeleteBy\":\"06-2025\",\"Purpose\":\"Testing\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/test\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus3\",\"name\":\"akkanaseWestUS31\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A33%3A46.7834609Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseWestUS3/providers/Microsoft.RecoveryServices/vaults/akkanaseWestUS31\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus3\",\"name\":\"akkanaseWestUS310\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A33%3A47.7898869Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseWestUS3/providers/Microsoft.RecoveryServices/vaults/akkanaseWestUS310\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus3\",\"name\":\"akkanaseWestUS32\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A33%3A49.275038Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseWestUS3/providers/Microsoft.RecoveryServices/vaults/akkanaseWestUS32\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus3\",\"name\":\"akkanaseWestUS33\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A33%3A50.5473101Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseWestUS3/providers/Microsoft.RecoveryServices/vaults/akkanaseWestUS33\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus3\",\"name\":\"akkanaseWestUS34\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A33%3A50.5802974Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseWestUS3/providers/Microsoft.RecoveryServices/vaults/akkanaseWestUS34\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus3\",\"name\":\"akkanaseWestUS35\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A34%3A00.9763491Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseWestUS3/providers/Microsoft.RecoveryServices/vaults/akkanaseWestUS35\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus3\",\"name\":\"akkanaseWestUS36\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A34%3A01.5580174Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseWestUS3/providers/Microsoft.RecoveryServices/vaults/akkanaseWestUS36\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus3\",\"name\":\"akkanaseWestUS37\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A34%3A02.535458Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseWestUS3/providers/Microsoft.RecoveryServices/vaults/akkanaseWestUS37\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus3\",\"name\":\"akkanaseWestUS38\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A34%3A03.1141275Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseWestUS3/providers/Microsoft.RecoveryServices/vaults/akkanaseWestUS38\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus3\",\"name\":\"akkanaseWestUS39\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A34%3A04.0795755Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseWestUS3/providers/Microsoft.RecoveryServices/vaults/akkanaseWestUS39\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"swedencentral\",\"name\":\"vault556\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A23%3A38.6357684Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseCMK/providers/Microsoft.RecoveryServices/vaults/vault556\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"adkayeth\",\"etag\":\"W/\\\"datetime'2025-08-14T09%3A57%3A22.9814029Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/adkayeth\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"akkanaseTest3\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A02%3A24.4951376Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/akkanaseTest3/privateEndpointConnections/asdfsdf.1478300315814432514.backup.0c1534c1-7f33-4cfe-8dd6-a365c09421e3\",\"name\":\"asdfsdf.1478300315814432514.backup.0c1534c1-7f33-4cfe-8dd6-a365c09421e3\",\"type\":\"Microsoft.RecoveryServices/vaults/privateEndpointConnections\",\"location\":\"centraluseuap\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpoint\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.Network/privateEndpoints/asdfsdf\"},\"groupIds\":[\"AzureBackup\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"None\",\"actionsRequired\":\"None\"}}}],\"privateEndpointStateForBackup\":\"Enabled\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/akkanaseTest3\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"asfsdf\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A02%3A48.3435302Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/asfsdf/privateEndpointConnections/sd.8477350293666956969.backup.efb20ae6-8601-49e1-a272-f689db09ea8e\",\"name\":\"sd.8477350293666956969.backup.efb20ae6-8601-49e1-a272-f689db09ea8e\",\"type\":\"Microsoft.RecoveryServices/vaults/privateEndpointConnections\",\"location\":\"centraluseuap\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpoint\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.Network/privateEndpoints/sd\"},\"groupIds\":[\"AzureBackup\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"None\",\"actionsRequired\":\"None\"}}}],\"privateEndpointStateForBackup\":\"Enabled\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/asfsdf\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"Donotuse-afscrr-ea-vault\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A06%3A42.3487502Z'\\\"\",\"tags\":{\"Mab + UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cmk.system/providers/microsoft.managedidentity/userassignedidentities/identity1\":{\"clientId\":\"73571b84-6f37-4bdd-a60f-1121cb5d31d7\",\"principalId\":\"13a05d1f-eae9-47ae-944f-46270c95d12e\"}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":{\"keyVaultProperties\":{\"keyUri\":\"https://akkanasecmk1.vault.azure.net/keys/testKey\"},\"kekIdentity\":{\"useSystemAssignedIdentity\":true,\"userAssignedIdentity\":null},\"infrastructureEncryption\":\"Enabled\"},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseCMK/providers/Microsoft.RecoveryServices/vaults/test1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus\",\"name\":\"akkanaseTestfad\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A26%3A35.7536224Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseTest/providers/Microsoft.RecoveryServices/vaults/akkanaseTestfad\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus\",\"name\":\"amansha-ctr-rsv-1\",\"etag\":\"W/\\\"datetime'2026-06-03T06%3A23%3A56.8331073Z'\\\"\",\"tags\":{\"ManagerAlias\":\"vepothir\",\"DeleteBy\":\"02-2029\",\"Purpose\":\"Testing\",\"Owner\":\"amansha\",\"azsecpack\":\"nonprod\",\"platformsettings.host_environment.service.platform_optedin_for_rootcerts\":\"true\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amansha-rg/providers/Microsoft.RecoveryServices/vaults/amansha-ctr-rsv-1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"westus\",\"name\":\"amansha-ctr-rsv-prod-target-1\",\"etag\":\"W/\\\"datetime'2026-06-03T12%3A19%3A58.812467Z'\\\"\",\"tags\":{\"ManagerAlias\":\"vepothir\",\"DeleteBy\":\"02-2029\",\"Purpose\":\"Testing\",\"Owner\":\"amansha\",\"azsecpack\":\"nonprod\",\"platformsettings.host_environment.service.platform_optedin_for_rootcerts\":\"true\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amansha-rg/providers/Microsoft.RecoveryServices/vaults/amansha-ctr-rsv-prod-target-1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"westus\",\"name\":\"crrclitestvault\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A54%3A55.9111418Z'\\\"\",\"tags\":{\"Owner\":\"akneema\",\"Purpose\":\"Testing\",\"MABUsed\":\"Yes\",\"DeleteBy\":\"12-9999\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-rg/providers/Microsoft.RecoveryServices/vaults/crrclitestvault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus\",\"name\":\"testvault\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A55%3A01.0392636Z'\\\"\",\"tags\":{\"Purpose\":\"Testing\",\"Owner\":\"akneema\",\"MABUsed\":\"Yes\",\"DeleteBy\":\"12-9999\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-rg-donotuse/providers/Microsoft.RecoveryServices/vaults/testvault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus\",\"name\":\"iaasvmsqlworkloadexistingvault3\",\"etag\":\"W/\\\"datetime'2025-08-14T15%3A03%3A44.2106635Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault3\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus\",\"name\":\"DonotUse-sapasedatabase-BVT-WestUS-Vault\",\"etag\":\"W/\\\"datetime'2026-05-12T08%3A27%3A34.9318935Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapase.workload/providers/Microsoft.RecoveryServices/vaults/DonotUse-sapasedatabase-BVT-WestUS-Vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus\",\"name\":\"saphana-clitest-vault2\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A10%3A47.8307987Z'\\\"\",\"tags\":{\"Owner\":\"akneema\",\"Purpose\":\"Testing\",\"DeleteBy\":\"12-9999\",\"MABUsed\":\"Yes\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/saphana-clitest-rg/providers/Microsoft.RecoveryServices/vaults/saphana-clitest-vault2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus\",\"name\":\"CopilotDemoVault\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A11%3A41.9055626Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/CopilotDemoVault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus\",\"name\":\"zwestusvault\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A34%3A53.5279513Z'\\\"\",\"tags\":{\"Owner\":\"zubairabid\",\"Purpose\":\"CRR + Testing\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zubairRG/providers/Microsoft.RecoveryServices/vaults/zwestusvault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"asdfsdf\",\"etag\":\"W/\\\"datetime'2025-08-14T09%3A56%3A49.340401Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/accessibility/providers/Microsoft.RecoveryServices/vaults/asdfsdf\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"vault432\",\"etag\":\"W/\\\"datetime'2025-11-11T06%3A40%3A24.2473433Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/accessibility/providers/Microsoft.RecoveryServices/vaults/vault432\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"adigupt-sql-archieve-vault\",\"etag\":\"W/\\\"datetime'2025-08-14T09%3A56%3A49.939061Z'\\\"\",\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"4c768a8a-6899-43cf-987d-8d4aaf231102\",\"type\":\"SystemAssigned, + UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzSecPackAutoConfigRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/AzSecPackAutoConfigUA-centraluseuap\":{\"clientId\":\"33ad67f7-e81a-403a-8874-7ca0f1e610ea\",\"principalId\":\"0a2484e3-df35-472e-a56f-9a83c91ec847\"}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":null,\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adigupt-east-us-rg/providers/Microsoft.RecoveryServices/vaults/adigupt-sql-archieve-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"testab\",\"etag\":\"W/\\\"datetime'2025-08-14T09%3A56%3A50.7336136Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adigupt-east-us-rg/providers/Microsoft.RecoveryServices/vaults/testab/privateEndpointConnections/testabc.3520943893222067065.backup.f32db09b-be28-4c27-9483-0c5dcd94b666\",\"name\":\"testabc.3520943893222067065.backup.f32db09b-be28-4c27-9483-0c5dcd94b666\",\"type\":\"Microsoft.RecoveryServices/vaults/privateEndpointConnections\",\"location\":\"eastus\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpoint\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adigupt-east-us-rg/providers/Microsoft.Network/privateEndpoints/testabc\"},\"groupIds\":[\"AzureBackup\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"None\",\"actionsRequired\":\"None\"}}}],\"privateEndpointStateForBackup\":\"Enabled\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adigupt-east-us-rg/providers/Microsoft.RecoveryServices/vaults/testab\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"eusvault\",\"etag\":\"W/\\\"datetime'2025-08-14T09%3A56%3A56.9540972Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adigupt-ecy-rg/providers/Microsoft.RecoveryServices/vaults/eusvault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"blobbackupvaulteus\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A03%3A42.2640495Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Disabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/blobbackupvaulteus\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"sdfafdf\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A05%3A36.5654553Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AdkayethBugbash/providers/Microsoft.RecoveryServices/vaults/sdfafdf\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"test123abc123\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A06%3A25.3438899Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AdkayethBugbash/providers/Microsoft.RecoveryServices/vaults/test123abc123\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"sdfsdfsdf\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A06%3A34.9704501Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayethImmutability/providers/Microsoft.RecoveryServices/vaults/sdfsdfsdf\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"Myclivault\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A14%3A59.531612Z'\\\"\",\"tags\":{\"MABUsed\":\"Yes\",\"Owner\":\"t-shjoshi\",\"Purpose\":\"Testing\",\"DeleteBy\":\"12-2099\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Disabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Disabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/afstests/providers/Microsoft.RecoveryServices/vaults/Myclivault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"akkanasePOC1\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A24%3A56.8223233Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanasePOC/providers/Microsoft.RecoveryServices/vaults/akkanasePOC1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"akkanaseTest2321\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A26%3A31.7082153Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":null,\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseTest/providers/Microsoft.RecoveryServices/vaults/akkanaseTest2321\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"amansha-CTR-prod\",\"etag\":\"W/\\\"datetime'2026-06-02T03%3A30%3A50.2557975Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amansha-rg/providers/Microsoft.RecoveryServices/vaults/amansha-CTR-prod\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"amit-replicated-item\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A43%3A27.1290441Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amitranjan/providers/Microsoft.RecoveryServices/vaults/amit-replicated-item\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"ankureustest2\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A43%3A32.715873Z'\\\"\",\"tags\":{\"Owner\":\"ankur\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurRG137/providers/Microsoft.RecoveryServices/vaults/ankureustest2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"RSV1110\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A58%3A48.7180252Z'\\\"\",\"tags\":{\"Owner\":\"ankur\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurRG137/providers/Microsoft.RecoveryServices/vaults/RSV1110\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"arohijain-backupvault\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A15%3A10.3115104Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/arohijain-rg/providers/Microsoft.RecoveryServices/vaults/arohijain-backupvault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"donotuse-v1workloadtest-bvt-ecy-cross-vault\",\"etag\":\"W/\\\"datetime'2025-08-14T12%3A31%3A12.9051615Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/donotuse-v1workloadtest-bvt-ecy-cross-rg/providers/Microsoft.RecoveryServices/vaults/donotuse-v1workloadtest-bvt-ecy-cross-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"sqlvaultf3ac75\",\"etag\":\"W/\\\"datetime'2025-08-14T12%3A31%3A13.2229797Z'\\\"\",\"tags\":{\"MAB + Used\":\"Yes\",\"Owner\":\"Workload Backup team;vintib\",\"Purpose\":\"WorkloadBackup-SwaggerTest\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dontusesqlrg/providers/Microsoft.RecoveryServices/vaults/sqlvaultf3ac75\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"gvjreddy-eus-time-based-immutability-202606091451\",\"etag\":\"W/\\\"datetime'2026-06-09T09%3A22%3A55.16501Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-eus-time-based-immutability-202606091451\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"gvjreddy-test-eus-vault\",\"etag\":\"W/\\\"datetime'2025-08-14T12%3A46%3A36.5183341Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":null,\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-test-eus-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"gvjreddy-test-vault-20230714-1416\",\"etag\":\"W/\\\"datetime'2025-08-14T12%3A46%3A43.0536182Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-test-vault-20230714-1416\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"hsrtest\",\"etag\":\"W/\\\"datetime'2025-08-14T12%3A46%3A52.1614382Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hanarg2/providers/Microsoft.RecoveryServices/vaults/hsrtest\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"hiaga-zrs-vault\",\"etag\":\"W/\\\"datetime'2025-09-16T04%3A25%3A54.3138917Z'\\\"\",\"tags\":{\"MABUsed\":\"yes\",\"Purpose\":\"testing\",\"Owner\":\"hiaga\",\"DeleteBy\":\"01-2099\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-zrs-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"hiagaAlerts1\",\"etag\":\"W/\\\"datetime'2025-08-14T12%3A46%3A57.4114527Z'\\\"\",\"tags\":{\"MABUsed\":\"yes\",\"Owner\":\"hiaga\",\"Purpose\":\"testing\",\"DeleteBy\":\"01-2099\"},\"identity\":{\"type\":\"None\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaAlerts1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"hiagaCRRDES-testvault\",\"etag\":\"W/\\\"datetime'2025-08-14T12%3A47%3A01.8059528Z'\\\"\",\"tags\":{\"MABUsed\":\"yes\",\"Owner\":\"hiaga\",\"Purpose\":\"testing\",\"DeleteBy\":\"01-2099\"},\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"2703a374-5394-4e85-ad37-c60a4711c97d\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":{\"keyVaultProperties\":{\"keyUri\":\"https://hiagakveus1.vault.azure.net/keys/hiagaKey\"},\"kekIdentity\":{\"useSystemAssignedIdentity\":true,\"userAssignedIdentity\":null},\"infrastructureEncryption\":\"Disabled\"},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaCRRDES-testvault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"hiagaVaultCredEUS\",\"etag\":\"W/\\\"datetime'2025-08-14T12%3A47%3A34.4833602Z'\\\"\",\"tags\":{\"MABUsed\":\"yes\",\"Owner\":\"hiaga\",\"Purpose\":\"testing\",\"DeleteBy\":\"01-2099\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVaultCredEUS\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"ianna-afs-vault-1\",\"etag\":\"W/\\\"datetime'2025-10-10T18%3A28%3A15.7228028Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iannafs-pstest-sa-rg-1/providers/Microsoft.RecoveryServices/vaults/ianna-afs-vault-1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"ianna-afs-vault2\",\"etag\":\"W/\\\"datetime'2026-06-15T09%3A47%3A12.2196746Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iannafs-pstest-sa-rg-2/providers/Microsoft.RecoveryServices/vaults/ianna-afs-vault2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"raghavTest\",\"etag\":\"W/\\\"datetime'2026-01-20T14%3A13%3A26.2404612Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raghavchugh-rg/providers/Microsoft.RecoveryServices/vaults/raghavTest\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"testVaultt\",\"etag\":\"W/\\\"datetime'2026-05-14T12%3A52%3A53.8609328Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raghavchugh-rg/providers/Microsoft.RecoveryServices/vaults/testVaultt\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"vaultCreatedWithEncryption\",\"etag\":\"W/\\\"datetime'2026-05-14T08%3A19%3A55.0505149Z'\\\"\",\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vault-create-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/raghavTestUami\":{\"clientId\":\"8f63409a-e751-4405-96fc-f66a350c87ac\",\"principalId\":\"9f029918-ab9b-4b8c-98e5-ba64aa12d3de\"}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":{\"keyVaultProperties\":{\"keyUri\":\"https://raghav-test-keyvault.vault.azure.net/keys/testUamiKey\"},\"kekIdentity\":{\"useSystemAssignedIdentity\":false,\"userAssignedIdentity\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vault-create-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/raghavTestUami\"},\"infrastructureEncryption\":\"Disabled\"},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raghavchugh-rg/providers/Microsoft.RecoveryServices/vaults/vaultCreatedWithEncryption\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"hotfixTest11\",\"etag\":\"W/\\\"datetime'2025-08-14T15%3A55%3A10.241975Z'\\\"\",\"tags\":{\"Owner\":\"ishanjindal\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redundancyTestingVault/providers/Microsoft.RecoveryServices/vaults/hotfixTest11\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"simran-tets\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A31%3A50.7584035Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/simran-test/providers/Microsoft.RecoveryServices/vaults/simran-tets\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"test\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A33%3A38.3690694Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vault-create-test-rg/providers/Microsoft.RecoveryServices/vaults/test\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"vepothir-del-10\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A34%3A01.6427991Z'\\\"\",\"tags\":{\"Owner\":\"vepothir\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vepothir-rg-ram-sub/providers/Microsoft.RecoveryServices/vaults/vepothir-del-10\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"vepothir-vault-eastUs-Functional-Testing-sub\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A34%3A02.4103616Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vepothir-rg-ram-sub/providers/Microsoft.RecoveryServices/vaults/vepothir-vault-eastUs-Functional-Testing-sub\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"vepothir122-3\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A34%3A00.9302054Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vepothir-rg-ram-sub/providers/Microsoft.RecoveryServices/vaults/vepothir122-3\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"rsv-prod-eus-001\",\"etag\":\"W/\\\"datetime'2025-12-23T11%3A17%3A02.32154Z'\\\"\",\"tags\":{\"Environment\":\"Production\",\"CostCenter\":\"IT\",\"Workload\":\"Backup\",\"DataClassification\":\"Confidential\"},\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"fdba3d19-f5a7-4573-929b-191421e311de\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":{\"keyVaultProperties\":{\"keyUri\":\"https://kv-prod-eus-001.vault.azure.net/keys/rsv-key/1234567890abcdef1234567890abcdef\"},\"kekIdentity\":{\"useSystemAssignedIdentity\":true,\"userAssignedIdentity\":null},\"infrastructureEncryption\":\"Enabled\"},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zubaireacan02/providers/Microsoft.RecoveryServices/vaults/rsv-prod-eus-001\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"northeurope\",\"name\":\"testing123\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A03%3A32.094997Z'\\\"\",\"tags\":{\"Owner\":\"ishanjindal\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redundancyTestingVault/providers/Microsoft.RecoveryServices/vaults/testing123\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westeurope\",\"name\":\"test435465\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A04%3A06.491094Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/test435465\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westeurope\",\"name\":\"akneema-we-vault\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A42%3A22.1019806Z'\\\"\",\"tags\":{\"Owner\":\"akneema\",\"Purpose\":\"Testing\",\"DeleteBy\":\"12-9999\",\"MABUsed\":\"Yes\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema-we-rg/providers/Microsoft.RecoveryServices/vaults/akneema-we-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westeurope\",\"name\":\"ankurVault1219\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A43%3A29.1024445Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurResourceGuard1/providers/Microsoft.RecoveryServices/vaults/ankurVault1219\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westeurope\",\"name\":\"ankurVault12191\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A43%3A29.5703948Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurResourceGuard1/providers/Microsoft.RecoveryServices/vaults/ankurVault12191\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westeurope\",\"name\":\"ankurVault121911\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A43%3A30.4604951Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurResourceGuard1/providers/Microsoft.RecoveryServices/vaults/ankurVault121911\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westeurope\",\"name\":\"ankurVault121911219\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A43%3A31.1783504Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurResourceGuard1/providers/Microsoft.RecoveryServices/vaults/ankurVault121911219\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westeurope\",\"name\":\"dmbvtsource222\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A55%3A44.9240182Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmbvtrgwe222/providers/Microsoft.RecoveryServices/vaults/dmbvtsource222\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"westeurope\",\"name\":\"dmbvtsource907\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A56%3A17.9225318Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmbvtrgwe907/providers/Microsoft.RecoveryServices/vaults/dmbvtsource907\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"westeurope\",\"name\":\"gvjreddy-test-vault-we\",\"etag\":\"W/\\\"datetime'2025-08-14T12%3A46%3A46.9760078Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":null,\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-test-vault-we\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westeurope\",\"name\":\"gvjreddy-test-we-vault-tbd\",\"etag\":\"W/\\\"datetime'2025-08-14T12%3A46%3A48.8468163Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-test-we-vault-tbd\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westeurope\",\"name\":\"rsv-payas\",\"etag\":\"W/\\\"datetime'2025-08-14T15%3A43%3A09.2031199Z'\\\"\",\"tags\":{\"Owner\":\"payalsinghal\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/payalsinghal/providers/Microsoft.RecoveryServices/vaults/rsv-payas\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"akkanaseTestabc\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A26%3A33.9173102Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseTest/providers/Microsoft.RecoveryServices/vaults/akkanaseTestabc\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"seavault\",\"etag\":\"W/\\\"datetime'2025-10-14T05%3A59%3A56.1285916Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amitranjan/providers/Microsoft.RecoveryServices/vaults/seavault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"amitsae\",\"etag\":\"W/\\\"datetime'2025-10-21T07%3A16%3A24.9192532Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amitranjansae/providers/Microsoft.RecoveryServices/vaults/amitsae\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"mkheranizrs\",\"etag\":\"W/\\\"datetime'2025-08-14T15%3A42%3A11.293903Z'\\\"\",\"tags\":{\"Owner\":\"mkherani\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mkherani/providers/Microsoft.RecoveryServices/vaults/mkheranizrs\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"japaneast\",\"name\":\"testPe\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A32%3A26.1328588Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_japaneast_1/providers/Microsoft.RecoveryServices/vaults/testPe/privateEndpointConnections/akkanaseTest.1623882292348111020.backup.f808191e-870e-4908-b2aa-7e6673b76a80\",\"name\":\"akkanaseTest.1623882292348111020.backup.f808191e-870e-4908-b2aa-7e6673b76a80\",\"type\":\"Microsoft.RecoveryServices/vaults/privateEndpointConnections\",\"location\":\"japaneast\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpoint\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_japaneast_1/providers/Microsoft.Network/privateEndpoints/akkanaseTest\"},\"groupIds\":[\"AzureBackup\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"None\",\"actionsRequired\":\"None\"}}}],\"privateEndpointStateForBackup\":\"Enabled\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_japaneast_1/providers/Microsoft.RecoveryServices/vaults/testPe\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"japaneast\",\"name\":\"vault142\",\"etag\":\"W/\\\"datetime'2025-08-14T15%3A44%3A07.1695084Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prnookal-prod/providers/Microsoft.RecoveryServices/vaults/vault142\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"japaneast\",\"name\":\"vault335\",\"etag\":\"W/\\\"datetime'2025-08-14T15%3A45%3A11.6496781Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prnookal-prod/providers/Microsoft.RecoveryServices/vaults/vault335\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2\",\"name\":\"akkanaseTest321\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A02%3A27.8429629Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/akkanaseTest321\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2\",\"name\":\"akkanaseTest3215\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A02%3A31.5029507Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/akkanaseTest3215\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2\",\"name\":\"akkanaseTest3232\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A02%3A32.619067Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/akkanaseTest3232\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2\",\"name\":\"blobbackupeus2\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A03%3A38.7595796Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Disabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Disabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/blobbackupeus2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2\",\"name\":\"test321231\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A04%3A05.4068946Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/test321231\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2\",\"name\":\"akkanaseTest32\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A12%3A09.0423473Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/afstests/providers/Microsoft.RecoveryServices/vaults/akkanaseTest32\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2\",\"name\":\"akkanaseTest132123\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A26%3A30.9885737Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseTest/providers/Microsoft.RecoveryServices/vaults/akkanaseTest132123\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2\",\"name\":\"akkanaseTest543\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A26%3A32.8235247Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseTest/providers/Microsoft.RecoveryServices/vaults/akkanaseTest543\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2\",\"name\":\"asfaf\",\"etag\":\"W/\\\"datetime'2025-09-17T07%3A51%3A28.2155491Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amitranjan/providers/Microsoft.RecoveryServices/vaults/asfaf\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2\",\"name\":\"nonZRSVault\",\"etag\":\"W/\\\"datetime'2026-02-20T05%3A36%3A11.2470685Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoohana/providers/Microsoft.RecoveryServices/vaults/nonZRSVault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2\",\"name\":\"zrsVault3\",\"etag\":\"W/\\\"datetime'2026-02-19T06%3A41%3A42.2939634Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoohana/providers/Microsoft.RecoveryServices/vaults/zrsVault3\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2\",\"name\":\"testing11\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A03%3A30.8806986Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redundancyTestingVault/providers/Microsoft.RecoveryServices/vaults/testing11\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2\",\"name\":\"sarathhanalargedbtargetvault\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A15%3A57.7823186Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarathhanalargedbtargetvault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centralindia\",\"name\":\"aa124\",\"etag\":\"W/\\\"datetime'2026-02-24T06%3A54%3A35.1709772Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoohana/providers/Microsoft.RecoveryServices/vaults/aa124\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centralindia\",\"name\":\"mkheranidesktopbackup\",\"etag\":\"W/\\\"datetime'2025-08-14T15%3A42%3A26.1191469Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mkheranibackup/providers/Microsoft.RecoveryServices/vaults/mkheranidesktopbackup\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southindia\",\"name\":\"akkanaseTest32146\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A02%3A30.3055455Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/akkanaseTest32146\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southindia\",\"name\":\"SouthIndia123\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A03%3A50.0343807Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/SouthIndia123\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southindia\",\"name\":\"mkheranilaptop\",\"etag\":\"W/\\\"datetime'2025-08-14T15%3A43%3A01.4719623Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mkheranibackup/providers/Microsoft.RecoveryServices/vaults/mkheranilaptop\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westindia\",\"name\":\"adkamuamfa\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A06%3A49.9663385Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/afstests/providers/Microsoft.RecoveryServices/vaults/adkamuamfa\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westindia\",\"name\":\"akkanaseTest124\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A26%3A29.5589913Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseTest/providers/Microsoft.RecoveryServices/vaults/akkanaseTest124\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westcentralus\",\"name\":\"amansha-ctr-rsv-src-lac-wcus-1\",\"etag\":\"W/\\\"datetime'2026-06-05T11%3A43%3A11.8204705Z'\\\"\",\"tags\":{\"ManagerAlias\":\"vepothir\",\"DeleteBy\":\"02-2029\",\"Purpose\":\"Testing\",\"Owner\":\"amansha\",\"azsecpack\":\"nonprod\",\"platformsettings.host_environment.service.platform_optedin_for_rootcerts\":\"true\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amansha-rg/providers/Microsoft.RecoveryServices/vaults/amansha-ctr-rsv-src-lac-wcus-1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"westcentralus\",\"name\":\"amansha-ctr-rsv-src-wcus-1\",\"etag\":\"W/\\\"datetime'2026-06-05T08%3A17%3A27.1696478Z'\\\"\",\"tags\":{\"ManagerAlias\":\"vepothir\",\"DeleteBy\":\"02-2029\",\"Purpose\":\"Testing\",\"Owner\":\"amansha\",\"azsecpack\":\"nonprod\",\"platformsettings.host_environment.service.platform_optedin_for_rootcerts\":\"true\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amansha-rg/providers/Microsoft.RecoveryServices/vaults/amansha-ctr-rsv-src-wcus-1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"westcentralus\",\"name\":\"amansha-tbi-wcus-rsv\",\"etag\":\"W/\\\"datetime'2026-06-18T23%3A04%3A25.3262817Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amansha-rg/providers/Microsoft.RecoveryServices/vaults/amansha-tbi-wcus-rsv\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westcentralus\",\"name\":\"mkheraniabclgrsv\",\"etag\":\"W/\\\"datetime'2025-08-14T15%3A42%3A17.2470764Z'\\\"\",\"tags\":{\"Owner\":\"mkherani\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mkheraniabclonghaul/providers/Microsoft.RecoveryServices/vaults/mkheraniabclgrsv\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westcentralus\",\"name\":\"vault177\",\"etag\":\"W/\\\"datetime'2025-08-14T15%3A45%3A12.3200534Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prnookal-wcus/providers/Microsoft.RecoveryServices/vaults/vault177\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus2\",\"name\":\"adkTestVault\",\"etag\":\"W/\\\"datetime'2025-08-14T09%3A57%3A26.6668359Z'\\\"\",\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"6034d1e5-7135-44c0-87b0-a63ef3249374\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Disabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/adkTestVault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus2\",\"name\":\"akkanase\",\"etag\":\"W/\\\"datetime'2025-08-14T09%3A57%3A30.8952665Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/akkanase\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus2\",\"name\":\"akkanaseTes3t32\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A02%3A15.9484593Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/akkanaseTes3t32\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus2\",\"name\":\"akkanaseTest1\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A02%3A20.0175893Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/akkanaseTest1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus2\",\"name\":\"akkanaseTest1231\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A02%3A22.1273236Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/akkanaseTest1231\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus2\",\"name\":\"akkanaseTestdf\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A02%3A37.3385227Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/akkanaseTestdf\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus2\",\"name\":\"NewVault32\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A03%3A45.7072734Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/NewVault32\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus2\",\"name\":\"SSSSS\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A03%3A51.686017Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Disabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/SSSSS\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus2\",\"name\":\"test123Akash\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A04%3A03.3428252Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/test123Akash\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus2\",\"name\":\"test54342\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A04%3A20.4855399Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/test54342\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus2\",\"name\":\"testabcdaef\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A04%3A35.917768Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/testabcdaef\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus2\",\"name\":\"xxzc\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A05%3A25.1495616Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Disabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Disabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/xxzc\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus2\",\"name\":\"Amit1\",\"etag\":\"W/\\\"datetime'2026-01-11T19%3A57%3A40.4769506Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amitranjan/providers/Microsoft.RecoveryServices/vaults/Amit1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus2\",\"name\":\"copilot-testing\",\"etag\":\"W/\\\"datetime'2025-08-14T13%3A02%3A48.8777062Z'\\\"\",\"tags\":{\"AutoAddedTagsSpendMgmt\":\"Owner\",\"Owner\":\"akkanase\",\"CreatedOn\":\"2025-06-27T05:38:54.6130913Z\"},\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagarg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cmk-pstest-msi1\":{\"clientId\":\"cc17dc91-0ffc-41c4-9f4b-b7b61fa9f4e8\",\"principalId\":\"79e6360a-251c-4431-b817-a7fff3ac5c91\"}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":{\"keyVaultProperties\":{\"keyUri\":\"https://cmk-pstest-keyvault.vault.azure.net/keys/cmk-pstest-key/5569d5a163ee474cad2da4ac334af9d7\"},\"kekIdentity\":{\"useSystemAssignedIdentity\":false,\"userAssignedIdentity\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagarg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cmk-pstest-msi1\"},\"infrastructureEncryption\":\"Enabled\"},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvm.vmbackup-eastasia/providers/Microsoft.RecoveryServices/vaults/copilot-testing\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus2\",\"name\":\"raghav-cmk-test\",\"etag\":\"W/\\\"datetime'2025-09-03T06%3A45%3A51.3661029Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raghavchugh-westus2/providers/Microsoft.RecoveryServices/vaults/raghav-cmk-test\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus2\",\"name\":\"vepothir-cli\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A33%3A40.5374134Z'\\\"\",\"tags\":{\"CreatedOn\":\"2025-06-28T13:53:39.4746169Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vepothir-rg-blobs/providers/Microsoft.RecoveryServices/vaults/vepothir-cli\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"westus2\",\"name\":\"vepothir-vault-afterSDK\",\"etag\":\"W/\\\"datetime'2025-09-18T05%3A02%3A53.4311421Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vepothir-rg-ram-sub/providers/Microsoft.RecoveryServices/vaults/vepothir-vault-afterSDK\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"uksouth\",\"name\":\"gvjreddy-test-uksouth-rsvault\",\"etag\":\"W/\\\"datetime'2025-08-14T12%3A46%3A41.6668982Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-test-uksouth-rsvault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"ukwest\",\"name\":\"tesdfstsesfda\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A15%3A14.160571Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":null,\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/afstests/providers/Microsoft.RecoveryServices/vaults/tesdfstsesfda\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"ukwest\",\"name\":\"akkanasePOC3\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A16%3A56.286708Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Disabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanase/providers/Microsoft.RecoveryServices/vaults/akkanasePOC3\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"australiacentral\",\"name\":\"VikasTest\",\"etag\":\"W/\\\"datetime'2025-08-14T09%3A57%3A20.3791045Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":null,\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adigupt-ecy-rg/providers/Microsoft.RecoveryServices/vaults/VikasTest\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"uaenorth\",\"name\":\"gvjreddy-test-uaen-cmk-vault\",\"etag\":\"W/\\\"datetime'2025-08-14T12%3A46%3A39.5134793Z'\\\"\",\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/gvjreddy-test-uaen-mi\":{\"clientId\":\"2aa0004a-3b79-41d8-b601-73e590930bdc\",\"principalId\":\"0a440beb-f8a1-4dae-a845-1b868b8b7f0e\"}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":{\"keyVaultProperties\":{\"keyUri\":\"https://gvjreddy-test-uaen-kv.vault.azure.net/keys/key-one\"},\"kekIdentity\":{\"useSystemAssignedIdentity\":false,\"userAssignedIdentity\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/gvjreddy-test-uaen-mi\"},\"infrastructureEncryption\":\"Disabled\"},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-test-uaen-cmk-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"germanywestcentral\",\"name\":\"gvjreddy-test-vault-gwc\",\"etag\":\"W/\\\"datetime'2025-08-14T12%3A46%3A44.6515021Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-test-vault-gwc\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"norwayeast\",\"name\":\"test\",\"etag\":\"W/\\\"datetime'2025-08-14T12%3A46%3A51.2137035Z'\\\"\",\"tags\":{\"Owner\":\"Kalyan\",\"DeleteBy\":\"06-2025\",\"Purpose\":\"Testing\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/test\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus3\",\"name\":\"vepothir-test-immu\",\"etag\":\"W/\\\"datetime'2026-04-20T09%3A51%3A36.0447781Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Disabled\",\"emailNotificationsForSiteRecovery\":\"Disabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vepothir-rg-blobs/providers/Microsoft.RecoveryServices/vaults/vepothir-test-immu\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"swedencentral\",\"name\":\"vault556\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A23%3A38.6357684Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseCMK/providers/Microsoft.RecoveryServices/vaults/vault556\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"adkayeth\",\"etag\":\"W/\\\"datetime'2025-08-14T09%3A57%3A22.9814029Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/adkayeth\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"akkanaseTest3\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A02%3A24.4951376Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/akkanaseTest3/privateEndpointConnections/asdfsdf.1478300315814432514.backup.0c1534c1-7f33-4cfe-8dd6-a365c09421e3\",\"name\":\"asdfsdf.1478300315814432514.backup.0c1534c1-7f33-4cfe-8dd6-a365c09421e3\",\"type\":\"Microsoft.RecoveryServices/vaults/privateEndpointConnections\",\"location\":\"centraluseuap\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpoint\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.Network/privateEndpoints/asdfsdf\"},\"groupIds\":[\"AzureBackup\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"None\",\"actionsRequired\":\"None\"}}}],\"privateEndpointStateForBackup\":\"Enabled\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/akkanaseTest3\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"asfsdf\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A02%3A48.3435302Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/asfsdf/privateEndpointConnections/sd.8477350293666956969.backup.efb20ae6-8601-49e1-a272-f689db09ea8e\",\"name\":\"sd.8477350293666956969.backup.efb20ae6-8601-49e1-a272-f689db09ea8e\",\"type\":\"Microsoft.RecoveryServices/vaults/privateEndpointConnections\",\"location\":\"centraluseuap\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpoint\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.Network/privateEndpoints/sd\"},\"groupIds\":[\"AzureBackup\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"None\",\"actionsRequired\":\"None\"}}}],\"privateEndpointStateForBackup\":\"Enabled\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/asfsdf\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"rtyuuu\",\"etag\":\"W/\\\"datetime'2025-11-23T06%3A41%3A48.6682026Z'\\\"\",\"tags\":{\"Purpose\":\"Testing\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/rtyuuu\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"Donotuse-afscrr-ea-vault\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A06%3A42.3487502Z'\\\"\",\"tags\":{\"Mab Used\":\"BVT\",\"Purpose\":\"BVT\",\"DeleteBy\":\"10-2099\",\"Owner\":\"akkanase\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/afs.existing.crr/providers/Microsoft.RecoveryServices/vaults/Donotuse-afscrr-ea-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"Donotuse-afscrr-vault\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A06%3A44.2175477Z'\\\"\",\"tags\":{\"Mab Used\":\"Yes\",\"Owner\":\"akkanase\",\"DeleteBy\":\"10-2099\",\"Purpose\":\"BVT\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/afs.existing.crr/providers/Microsoft.RecoveryServices/vaults/Donotuse-afscrr-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"afsCrrBugBas1\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A06%3A44.7153644Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/afsCrrBugbash/providers/Microsoft.RecoveryServices/vaults/afsCrrBugBas1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"akkansaeTest\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A12%3A14.3515517Z'\\\"\",\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shracrg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/myIdentity\":{\"clientId\":\"49b3f58a-3f0d-430d-9103-8715b6aba099\",\"principalId\":\"bf88407d-d96f-49ee-a7f7-fc6685c98135\"}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":{\"keyVaultProperties\":{\"keyUri\":\"https://akkanasecmktest1.vault.azure.net/keys/Test\"},\"kekIdentity\":{\"useSystemAssignedIdentity\":false,\"userAssignedIdentity\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shracrg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/myIdentity\"},\"infrastructureEncryption\":\"Disabled\"},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/afstests/providers/Microsoft.RecoveryServices/vaults/akkansaeTest\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"asfd\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A12%3A19.7210428Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/afstests/providers/Microsoft.RecoveryServices/vaults/asfd/privateEndpointConnections/test.6927996346535761120.backup.fa0b4e23-7ae2-40b9-b68e-edc9e4677d08\",\"name\":\"test.6927996346535761120.backup.fa0b4e23-7ae2-40b9-b68e-edc9e4677d08\",\"type\":\"Microsoft.RecoveryServices/vaults/privateEndpointConnections\",\"location\":\"centraluseuap\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpoint\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/afstests/providers/Microsoft.Network/privateEndpoints/test\"},\"groupIds\":[\"AzureBackup\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"None\",\"actionsRequired\":\"None\"}}}],\"privateEndpointStateForBackup\":\"Enabled\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Disabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/afstests/providers/Microsoft.RecoveryServices/vaults/asfd\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"akkaanseLRS1\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A16%3A34.2740627Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanase/providers/Microsoft.RecoveryServices/vaults/akkaanseLRS1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"akkanaseCMKTest1\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A23%3A44.6288983Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanase-diskaccess/providers/Microsoft.RecoveryServices/vaults/akkanaseCMKTest1/privateEndpointConnections/akkanaseTestPe123.5541240607189969450.backup.a3b065e4-7afa-4286-a58e-aa62b1b9d1b1\",\"name\":\"akkanaseTestPe123.5541240607189969450.backup.a3b065e4-7afa-4286-a58e-aa62b1b9d1b1\",\"type\":\"Microsoft.RecoveryServices/vaults/privateEndpointConnections\",\"location\":\"centraluseuap\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpoint\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanase-diskaccess/providers/Microsoft.Network/privateEndpoints/akkanaseTestPe123\"},\"groupIds\":[\"AzureBackup\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"None\",\"actionsRequired\":\"None\"}}}],\"privateEndpointStateForBackup\":\"Enabled\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanase-diskaccess/providers/Microsoft.RecoveryServices/vaults/akkanaseCMKTest1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"akkanaseTest\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A24%3A02.7971679Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanase-diskaccess/providers/Microsoft.RecoveryServices/vaults/akkanaseTest/privateEndpointConnections/akkanaseTest.7977748719610652385.backup.dfffcee4-1521-4b4b-bdad-16b40b5be22a\",\"name\":\"akkanaseTest.7977748719610652385.backup.dfffcee4-1521-4b4b-bdad-16b40b5be22a\",\"type\":\"Microsoft.RecoveryServices/vaults/privateEndpointConnections\",\"location\":\"centraluseuap\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpoint\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanase-diskaccess/providers/Microsoft.Network/privateEndpoints/akkanaseTest\"},\"groupIds\":[\"AzureBackup\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"None\",\"actionsRequired\":\"None\"}}}],\"privateEndpointStateForBackup\":\"Enabled\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanase-diskaccess/providers/Microsoft.RecoveryServices/vaults/akkanaseTest\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"akkanaseTest321\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A24%3A08.4573281Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanase-diskaccess/providers/Microsoft.RecoveryServices/vaults/akkanaseTest321/privateEndpointConnections/akashpe.1705700632660548520.backup.d80ff95d-0079-4b08-8492-81192cca5386\",\"name\":\"akashpe.1705700632660548520.backup.d80ff95d-0079-4b08-8492-81192cca5386\",\"type\":\"Microsoft.RecoveryServices/vaults/privateEndpointConnections\",\"location\":\"centraluseuap\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpoint\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanase-diskaccess/providers/Microsoft.Network/privateEndpoints/akashpe\"},\"groupIds\":[\"AzureBackup\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"None\",\"actionsRequired\":\"None\"}}}],\"privateEndpointStateForBackup\":\"Enabled\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanase-diskaccess/providers/Microsoft.RecoveryServices/vaults/akkanaseTest321\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"akkanaseTest\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A21%3A55.9228855Z'\\\"\",\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"5fbb8984-ea88-4467-bcba-3d5065224bd7\",\"type\":\"SystemAssigned, - UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/hiagaczr-rg/providers/microsoft.managedidentity/userassignedidentities/hiagauseridentity\":{\"clientId\":\"05a1da4a-ee20-42b9-94de-72175caa42bb\",\"principalId\":\"af96ebe9-5ed3-4753-9849-c314ddc1150c\"},\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/container_softdelete/providers/Microsoft.ManagedIdentity/userAssignedIdentities/adigupt\":{\"clientId\":\"2764e801-c368-49ba-b8af-3cb5761db993\",\"principalId\":\"955f634e-31df-4df5-8692-cee6ca4f4e8a\"}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseCcyGrs/providers/Microsoft.RecoveryServices/vaults/akkanaseTest\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"akkanaseTest123\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A21%3A57.4691016Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseCcyGrs/providers/Microsoft.RecoveryServices/vaults/akkanaseTest123/privateEndpointConnections/testAkkanase.6763488043549574973.backup.26dd9d9e-5fac-4d91-86c4-6c86c3e14f15\",\"name\":\"testAkkanase.6763488043549574973.backup.26dd9d9e-5fac-4d91-86c4-6c86c3e14f15\",\"type\":\"Microsoft.RecoveryServices/vaults/privateEndpointConnections\",\"location\":\"centraluseuap\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpoint\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseCcyGrs/providers/Microsoft.Network/privateEndpoints/testAkkanase\"},\"groupIds\":[\"AzureBackup\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"None\",\"actionsRequired\":\"None\"}}}],\"privateEndpointStateForBackup\":\"Enabled\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseCcyGrs/providers/Microsoft.RecoveryServices/vaults/akkanaseTest123\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"akkanaseCMK\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A23%3A22.994835Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"9b8d9f7f-3081-4e65-80d3-f53d2c0de284\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":{\"keyVaultProperties\":{\"keyUri\":\"https://akkansehsmtest.vault.azure.net/keys/test1233\"},\"kekIdentity\":{\"useSystemAssignedIdentity\":true,\"userAssignedIdentity\":null},\"infrastructureEncryption\":\"Disabled\"},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseCMK/providers/Microsoft.RecoveryServices/vaults/akkanaseCMK\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"akkanaseCMK1\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A23%3A24.743162Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"89ad7ce4-46cd-4581-af4f-682e71cb40bc\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseCMK/providers/Microsoft.RecoveryServices/vaults/akkanaseCMK1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"akkanaseTest2\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A23%3A32.1825168Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"e3b70927-d49d-4c84-adac-ac673e8b79e1\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":{\"keyVaultProperties\":{\"keyUri\":\"https://akkansehsmtest.vault.azure.net/keys/key123\"},\"kekIdentity\":{\"useSystemAssignedIdentity\":true,\"userAssignedIdentity\":null},\"infrastructureEncryption\":\"Disabled\"},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseCMK/providers/Microsoft.RecoveryServices/vaults/akkanaseTest2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"test123asdsf\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A23%3A36.9028024Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseCMK/providers/Microsoft.RecoveryServices/vaults/test123asdsf\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"akkanaseAkash1\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A25%3A17.8288719Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseTest/providers/Microsoft.RecoveryServices/vaults/akkanaseAkash1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"akkanaseMSI\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A25%3A18.8862314Z'\\\"\",\"identity\":{\"type\":\"None\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseTest/providers/Microsoft.RecoveryServices/vaults/akkanaseMSI\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"akkanaseTest1234\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A26%3A28.2072816Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseTest/providers/Microsoft.RecoveryServices/vaults/akkanaseTest1234\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"akkanaseTest12sdf\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A26%3A30.1806516Z'\\\"\",\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cmk.system/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identity1\":{\"clientId\":\"73571b84-6f37-4bdd-a60f-1121cb5d31d7\",\"principalId\":\"13a05d1f-eae9-47ae-944f-46270c95d12e\"}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseTest/providers/Microsoft.RecoveryServices/vaults/akkanaseTest12sdf/privateEndpointConnections/akkanaseTest123.7874099994692673002.backup.7e26ee6a-554d-4fa8-a70e-09fee5ae5b94\",\"name\":\"akkanaseTest123.7874099994692673002.backup.7e26ee6a-554d-4fa8-a70e-09fee5ae5b94\",\"type\":\"Microsoft.RecoveryServices/vaults/privateEndpointConnections\",\"location\":\"centraluseuap\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpoint\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseTest/providers/Microsoft.Network/privateEndpoints/akkanaseTest123\"},\"groupIds\":[\"AzureBackup\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"None\",\"actionsRequired\":\"None\"}}}],\"privateEndpointStateForBackup\":\"Enabled\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":{\"keyVaultProperties\":{\"keyUri\":\"https://akkansehsmtest.vault.azure.net/keys/key123\"},\"kekIdentity\":{\"useSystemAssignedIdentity\":false,\"userAssignedIdentity\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cmk.system/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identity1\"},\"infrastructureEncryption\":\"Disabled\"},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseTest/providers/Microsoft.RecoveryServices/vaults/akkanaseTest12sdf\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"akkanaseTest3\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A31%3A43.0246266Z'\\\"\",\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_adkayeth_adkayethAAD_eastus2euap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/adkayethAAD-agentpool\":{\"clientId\":\"fe6d65f6-2d13-4460-a7d4-37338eeadb3a\",\"principalId\":\"c8a00157-361a-46b9-a9dc-72c8caff7afe\"}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":{\"keyVaultProperties\":{\"keyUri\":\"https://akkanasecmktest1.vault.azure.net/keys/test123\"},\"kekIdentity\":{\"useSystemAssignedIdentity\":false,\"userAssignedIdentity\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_adkayeth_adkayethAAD_eastus2euap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/adkayethAAD-agentpool\"},\"infrastructureEncryption\":\"Disabled\"},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseTest1/providers/Microsoft.RecoveryServices/vaults/akkanaseTest3\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"akkanaseIndia\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A31%3A45.3414843Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseTest2/providers/Microsoft.RecoveryServices/vaults/akkanaseIndia/privateEndpointConnections/vxzvx.8287073220565965330.backup.2a05a7c4-564b-458b-88a2-e142e1e43a18\",\"name\":\"vxzvx.8287073220565965330.backup.2a05a7c4-564b-458b-88a2-e142e1e43a18\",\"type\":\"Microsoft.RecoveryServices/vaults/privateEndpointConnections\",\"location\":\"centraluseuap\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpoint\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseTest2/providers/Microsoft.Network/privateEndpoints/vxzvx\"},\"groupIds\":[\"AzureBackup\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"None\",\"actionsRequired\":\"None\"}}}],\"privateEndpointStateForBackup\":\"Enabled\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseTest2/providers/Microsoft.RecoveryServices/vaults/akkanaseIndia\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"akneema-pe-vault-ccy\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A35%3A15.2198371Z'\\\"\",\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"f1193149-0ba0-4d6c-9ada-44fb1791ecd8\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-pe-vault-ccy\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"akneema-vault\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A35%3A20.5395122Z'\\\"\",\"tags\":{\"Owner\":\"akneema\",\"Purpose\":\"Testing\",\"DeleteBy\":\"12-9999\",\"MABUsed\":\"Yes\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Disabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"akneemavault\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A35%3A17.4998393Z'\\\"\",\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"84b1c8fc-28b0-477e-b6a5-2af16999fe58\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneemavault/privateEndpointConnections/akneemape.5725812072430978587.backup.e911a862-8697-4593-b107-0d8388e0b195\",\"name\":\"akneemape.5725812072430978587.backup.e911a862-8697-4593-b107-0d8388e0b195\",\"type\":\"Microsoft.RecoveryServices/vaults/privateEndpointConnections\",\"location\":\"centraluseuap\",\"properties\":{\"provisioningState\":\"Failed\",\"privateEndpoint\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.Network/privateEndpoints/akneemape\"},\"groupIds\":[\"AzureBackup\"],\"privateLinkServiceConnectionState\":{\"status\":\"Rejected\",\"description\":\"Rejected!\",\"actionsRequired\":\"None\"}}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneemavault/privateEndpointConnections/akneemape2.5725812072430978587.backup.ad373f61-9bdc-4bab-8e59-3066b4492c15\",\"name\":\"akneemape2.5725812072430978587.backup.ad373f61-9bdc-4bab-8e59-3066b4492c15\",\"type\":\"Microsoft.RecoveryServices/vaults/privateEndpointConnections\",\"location\":\"centraluseuap\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpoint\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.Network/privateEndpoints/akneemape2\"},\"groupIds\":[\"AzureBackup\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"None\",\"actionsRequired\":\"None\"}}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneemavault/privateEndpointConnections/akneemape3.5725812072430978587.backup.03188b6a-f02a-4a77-873e-b4f116d016da\",\"name\":\"akneemape3.5725812072430978587.backup.03188b6a-f02a-4a77-873e-b4f116d016da\",\"type\":\"Microsoft.RecoveryServices/vaults/privateEndpointConnections\",\"location\":\"centraluseuap\",\"properties\":{\"provisioningState\":\"Failed\",\"privateEndpoint\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.Network/privateEndpoints/akneemape3\"},\"groupIds\":[\"AzureBackup\"],\"privateLinkServiceConnectionState\":{\"status\":\"Rejected\",\"description\":\"Rejected!\",\"actionsRequired\":\"None\"}}}],\"privateEndpointStateForBackup\":\"Enabled\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneemavault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"akneemavault2\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A35%3A21.4893455Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneemavault2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"srikant123crr\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A42%3A17.4492441Z'\\\"\",\"tags\":{\"Owner\":\"adigupt\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/srikant123crr\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"testvault\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A42%3A19.3120676Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/testvault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"amchandnrsv2\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A42%3A24.0054667Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amchandnccy/providers/Microsoft.RecoveryServices/vaults/amchandnrsv2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"VaultEmpty18101\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A15%3A03.9046746Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurRG137/providers/Microsoft.RecoveryServices/vaults/VaultEmpty18101\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"VaultEmpty2210\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A15%3A06.2055762Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurRG137/providers/Microsoft.RecoveryServices/vaults/VaultEmpty2210\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"anssingh-vault\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A15%3A09.0520837Z'\\\"\",\"tags\":{\"MabUsed\":\"yes\",\"Owner\":\"anssingh\",\"DeleteBy\":\"01-2025\",\"Purpose\":\"testing\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/anssingh-rg/providers/Microsoft.RecoveryServices/vaults/anssingh-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"arohijain-vault\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A15%3A10.6948731Z'\\\"\",\"tags\":{\"MabUsed\":\"yes\",\"Owner\":\"arohijain\",\"DeleteBy\":\"01-2025\",\"Purpose\":\"testing\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/arohijain-rg/providers/Microsoft.RecoveryServices/vaults/arohijain-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"iaasvmnew1\",\"etag\":\"W/\\\"datetime'2025-09-15T13%3A05%3A39.9037828Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chandrikarg/providers/Microsoft.RecoveryServices/vaults/iaasvmnew1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"cli-track2-vault\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A55%3A03.078481Z'\\\"\",\"tags\":{\"Owner\":\"akneema\",\"Purpose\":\"Testing\",\"DeleteBy\":\"12-9999\",\"MABUsed\":\"Yes\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-track2-rg/providers/Microsoft.RecoveryServices/vaults/cli-track2-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"testvault\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A55%3A03.5364734Z'\\\"\",\"tags\":{\"Owner\":\"akneema\",\"Purpose\":\"Testing\",\"MABUsed\":\"Yes\",\"DeleteBy\":\"12-9999\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-track2-rg/providers/Microsoft.RecoveryServices/vaults/testvault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"testvault2\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A55%3A04.4166161Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-track2-rg/providers/Microsoft.RecoveryServices/vaults/testvault2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"crrclitestvaultccy\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A54%3A56.7780914Z'\\\"\",\"tags\":{\"Owner\":\"akneema\",\"Purpose\":\"Testing\",\"MABUsed\":\"Yes\",\"DeleteBy\":\"12-9999\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-rg/providers/Microsoft.RecoveryServices/vaults/crrclitestvaultccy\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vault-donotuse\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A54%3A59.0511303Z'\\\"\",\"tags\":{\"Owner\":\"akneema\",\"Purpose\":\"Testing\",\"MABUsed\":\"Yes\",\"DeleteBy\":\"12-9999\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-rg-donotuse/providers/Microsoft.RecoveryServices/vaults/clitest-vault-donotuse\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultjfabvqparae\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A39%3A37.8312496Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg23i3igbz4pkaseep6rtle5pfvau55ocy6bilhcuq36p33tmv6fv7evizv2q6ss5wy/providers/Microsoft.RecoveryServices/vaults/clitest-vaultjfabvqparae\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vault2a6se4xlfqr\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A39%3A41.7012988Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2owv66d76fw6t4qjah6rqmf26kge6j5ijtsaxnpicexctfiwnc3cykun2wi62uprz/providers/Microsoft.RecoveryServices/vaults/clitest-vault2a6se4xlfqr\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultk742e5bizan\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A39%3A46.7322628Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3j7gq2wvih2wipofw42ntgiqciai46lt2ke6noafznpjjpg564wonywwkvcngksjb/providers/Microsoft.RecoveryServices/vaults/clitest-vaultk742e5bizan\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultc5splf5q7g4\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A40%3A23.5083166Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3zvoipze2p3qtt7q7mksmq3uscglgxky6mls5njj3wtciyshv6pkxi3qnl2yzscn2/providers/Microsoft.RecoveryServices/vaults/clitest-vaultc5splf5q7g4\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultp6rrywyjhpv\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A40%3A27.0378663Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg4erisbg7jmkzty3xrtag5gbmdpl7j7wgfjwel5yi7lav6lw2wanfulwlmzcleqyig/providers/Microsoft.RecoveryServices/vaults/clitest-vaultp6rrywyjhpv\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultf63ri7zzexq\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A40%3A30.6281505Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg4gpgezlqsc/providers/Microsoft.RecoveryServices/vaults/clitest-vaultf63ri7zzexq\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vault3cclxarumgp\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A40%3A45.9291623Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg5bw5ydpsvodnpjbw5paw5iikrl6qsd4x33ultuzamybatuzsrm4o2vlmzznxan3rx/providers/Microsoft.RecoveryServices/vaults/clitest-vault3cclxarumgp\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaulttp3wc4ilolc\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A40%3A48.365495Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg5j6eq7chk3/providers/Microsoft.RecoveryServices/vaults/clitest-vaulttp3wc4ilolc\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultuajnlnkvgvq\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A40%3A49.5821678Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg5ops2a63odk7ftdy27uaz6q3ytpk74z2gummjtygdnlnoltyk65cvyjthwib4mb4s/providers/Microsoft.RecoveryServices/vaults/clitest-vaultuajnlnkvgvq\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaulty6rud6blqe7\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A40%3A50.7799235Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg66f7ris6672wtmfpgiqqg3lrxfpcpzr7xjhxqqic3tk3vpbyqsbnuu6pkuyxxwsux/providers/Microsoft.RecoveryServices/vaults/clitest-vaulty6rud6blqe7\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultaa2owvkw3a6\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A40%3A54.3184296Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg6uot2xjxzn/providers/Microsoft.RecoveryServices/vaults/clitest-vaultaa2owvkw3a6\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultqlkjq6iwol3\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A40%3A54.5713221Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg6vxhlzrvyyqa44suialhgtfdmukbljfnatva5hcktx76esmommchqpumwhgfeg5go/providers/Microsoft.RecoveryServices/vaults/clitest-vaultqlkjq6iwol3\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultl2vilhbfrsl\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A42%3A07.7796557Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":null,\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg737xmkx5vdlect2rfcc6jn7vo2tz2am7vv5qa3iarulubprk5mvupdekmewjot63b/providers/Microsoft.RecoveryServices/vaults/clitest-vaultl2vilhbfrsl\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vault2aqve57ti76\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A42%3A14.2911233Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg7sqaolpwho3w7knztnierg4uu32fkhzf6h5rn3h7aclebab355poksz2fi6dwzj62/providers/Microsoft.RecoveryServices/vaults/clitest-vault2aqve57ti76\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultlnzitt4hofs\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A42%3A24.4127703Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgaqiu6i2idrd37pceqqetcmtd7jvd72y5cep52ha2t4ol6xoj53g37l4ufojnkvbnm/providers/Microsoft.RecoveryServices/vaults/clitest-vaultlnzitt4hofs\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vault6y3k26gaayq\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A43%3A55.9425618Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgb2ngqfe2k5au7xi4pq3w5nico34kycot6mj5xqqb2h6u4vhkbxv24efpvmeov4xjs/providers/Microsoft.RecoveryServices/vaults/clitest-vault6y3k26gaayq\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vault2xhgpa5m2kr\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A43%3A58.4425999Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbn4upty7am2ljyvhzfg2bkd66yufesnbu3y4ql3l45hxn2peqzo6q3wfkswlwcm54/providers/Microsoft.RecoveryServices/vaults/clitest-vault2xhgpa5m2kr\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vault2nvnkkj7eet\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A44%3A04.2869747Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbopctqkzej/providers/Microsoft.RecoveryServices/vaults/clitest-vault2nvnkkj7eet\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaulti2hy7n2gfae\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A45%3A43.0528276Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgcea6dcyknc/providers/Microsoft.RecoveryServices/vaults/clitest-vaulti2hy7n2gfae\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultsxbosbrmzin\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A45%3A47.2364765Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgco7poh6tq7sfwjuexepinlazqnlxbrm2bpjjoexoi4oz4v3wwh44zojonskwsnsvk/providers/Microsoft.RecoveryServices/vaults/clitest-vaultsxbosbrmzin\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultzbkwg5vme4j\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A46%3A03.4274533Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgd6wgaycmodpjw6wzengonrszbatlt3fn46reyjjdjmgexfoulp7p2konnlbfjysbu/providers/Microsoft.RecoveryServices/vaults/clitest-vaultzbkwg5vme4j\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultlrrihv2i4tj\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A46%3A04.3762911Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgd72ugr3zx5wykp6zumcvelhnt7rmxq2qtyyhq46s7n3644s3kvwpf7x2hr6j44f3d/providers/Microsoft.RecoveryServices/vaults/clitest-vaultlrrihv2i4tj\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultnfsjmhvzzi6\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A46%3A11.6941909Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgduli6xmh6n/providers/Microsoft.RecoveryServices/vaults/clitest-vaultnfsjmhvzzi6\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultqdywkqjdalu\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A46%3A16.5080713Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgei7fcg52axxckujbynstwmu5wxqvwlbnwhkij3pkphxec5bov4abiekzfauhgsdsw/providers/Microsoft.RecoveryServices/vaults/clitest-vaultqdywkqjdalu\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultppnhrdcisso\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A46%3A24.6145093Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgfitetb45fm/providers/Microsoft.RecoveryServices/vaults/clitest-vaultppnhrdcisso\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultopmxfpwtdzt\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A46%3A25.9675735Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgfnuko4vmbo/providers/Microsoft.RecoveryServices/vaults/clitest-vaultopmxfpwtdzt\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultfslv6ng7owd\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A46%3A27.4988566Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgfxongdei6v/providers/Microsoft.RecoveryServices/vaults/clitest-vaultfslv6ng7owd\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultot7aeuagxis\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A46%3A32.6333307Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgglld3zspxu/providers/Microsoft.RecoveryServices/vaults/clitest-vaultot7aeuagxis\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultcdprqab5ahn\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A46%3A38.4249227Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgihfqglowbeehz6pd7r52o2oudhltzy3zzahynmez4hogbbcj4e4sjdcdoj5cogwjy/providers/Microsoft.RecoveryServices/vaults/clitest-vaultcdprqab5ahn\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultb47ryys26vs\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A47%3A48.0136089Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgixxft47w3uqmbpumwd4csespji2wehiuxufo6bbn4ub2vhxjvwwk6fyw6jkohbhwa/providers/Microsoft.RecoveryServices/vaults/clitest-vaultb47ryys26vs\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultnyxkuyrd6uf\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A47%3A51.0711869Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjb5i5hn2ikyoq65bbgijee4kfavs2k6uqjyalw6upgcgugnizht3dsb63nxzg3qpa/providers/Microsoft.RecoveryServices/vaults/clitest-vaultnyxkuyrd6uf\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultdojmqr2rqan\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A47%3A52.4103111Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjqxowf3snruqrxofjceokzithrsimhiimobs25ctohgui6qncjs4zjze5wvaziaq5/providers/Microsoft.RecoveryServices/vaults/clitest-vaultdojmqr2rqan\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultbrwboj2534h\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A47%3A54.4155134Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjzu6r4hwd57bhdxi3gqmu5sglbo4r5pmgci6tvlyvcszxjo6qlk6u7qfwvhcnez5c/providers/Microsoft.RecoveryServices/vaults/clitest-vaultbrwboj2534h\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultgh4puvgfonq\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A47%3A56.9922061Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgkbwmh7lqmc/providers/Microsoft.RecoveryServices/vaults/clitest-vaultgh4puvgfonq\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vault7md52phrqjz\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A47%3A58.3373055Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgkfus75wh354uc5flxr2i77vgqxj7mkfo6qq36vo4iqzro2bm5s3hv3ewkpo2wxxst/providers/Microsoft.RecoveryServices/vaults/clitest-vault7md52phrqjz\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultijomn5sqvoc\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A47%3A58.8590143Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgkgcjk6zs7vjzlgvly3lutzli3cwsgejr7o2wj3gb4lr55d3kntdjii6ps4sicvcrr/providers/Microsoft.RecoveryServices/vaults/clitest-vaultijomn5sqvoc\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaulttx4zkop34l5\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A47%3A59.1577043Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgkiq2toqmspwt6bjrwg7dda57oh2fh2rmslnfqsdrecwlfodowjncylamk5vdrgyyt/providers/Microsoft.RecoveryServices/vaults/clitest-vaulttx4zkop34l5\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vault4q3wmfdmdfo\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A48%3A01.3431148Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgl2iqooxvxr4b3uczpecbyazrpevdr4wznnzys327alqc2iiwgt6zuj43rxqml7b6t/providers/Microsoft.RecoveryServices/vaults/clitest-vault4q3wmfdmdfo\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultdwjdwzqv7sc\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A48%3A06.1759088Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rglq6kt655zt/providers/Microsoft.RecoveryServices/vaults/clitest-vaultdwjdwzqv7sc\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultyub6edqwync\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A48%3A07.1366932Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgm4foig3vla/providers/Microsoft.RecoveryServices/vaults/clitest-vaultyub6edqwync\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultpgxnpp6nj4i\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A48%3A08.5126552Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmpwemtzjyulvhexh3tqkp6tkbjey6ux3vo57hl3g7wpyi56lu4watq5zehc6qqipi/providers/Microsoft.RecoveryServices/vaults/clitest-vaultpgxnpp6nj4i\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultft2l4sucknl\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A48%3A09.9334206Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmudv5svi6o6yo6tkrgoqdp5eqgejuricxubqt6qcyhcyfrqq65tkom7q3n7woa6eb/providers/Microsoft.RecoveryServices/vaults/clitest-vaultft2l4sucknl\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultlzwgmiu2x7y\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A48%3A12.1636346Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgn7iod7ivodxannjj3usm7t2urs2l6tgttlxlwhqtedfj422exhtksqinbf6za44un/providers/Microsoft.RecoveryServices/vaults/clitest-vaultlzwgmiu2x7y\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultbadacbyy5od\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A48%3A14.187753Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":null,\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgnlwii7mbbaghajxhbmgwcvlpe2od4fm4edyeo7wi3hqa4qyeqsleqk3at4ixwxuxl/providers/Microsoft.RecoveryServices/vaults/clitest-vaultbadacbyy5od\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultra7myzbvf3q\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A48%3A16.0704911Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":null,\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgnsjdxxxaqakwqtlt25mxvu6ir5ymfcu6j2oim7u4um53ybdsnqmolhqdkl4em7oai/providers/Microsoft.RecoveryServices/vaults/clitest-vaultra7myzbvf3q\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultk6255fvi7ta\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A48%3A18.5555864Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgo76ilrpltl7ydfvsu7lopshksg53h6jn6x4apnuavqrgtflwj4uidaj6nnvjpjlk5/providers/Microsoft.RecoveryServices/vaults/clitest-vaultk6255fvi7ta\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultqlwblhhrynn\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A48%3A19.2505388Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgohjtswm4xdvsd57nj3hwv4udgqzrededajiojgobgoqilfmhdrtrkswy5tlohpzh3/providers/Microsoft.RecoveryServices/vaults/clitest-vaultqlwblhhrynn\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vault4nr7z77ykle\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A48%3A30.0750375Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgp73fxsd6wnfzwp2b6j2ltipj7ujqlnfwndrro2tu3n4l53v5xkswyijbr7lqoevxl/providers/Microsoft.RecoveryServices/vaults/clitest-vault4nr7z77ykle\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultyqgw4hrxqml\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A48%3A31.4689212Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpfdyc7kgxv/providers/Microsoft.RecoveryServices/vaults/clitest-vaultyqgw4hrxqml\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultmgkq6wgedm5\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A49%3A23.1162742Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgq4lcdbhyak/providers/Microsoft.RecoveryServices/vaults/clitest-vaultmgkq6wgedm5\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultp2eeiygqgpg\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A49%3A25.1035529Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgq53n5juxxd4bo34q3jb63rhmi5ox2sqj6terxb3syi4shbntbo73ui672bwfivh7a/providers/Microsoft.RecoveryServices/vaults/clitest-vaultp2eeiygqgpg\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultqfmzm2o5qtd\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A49%3A26.8787622Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgq63xeorfw3bprevjy5jj64xf2bfdopasca52ceer6sj673mccat2tllm26jhf6nkh/providers/Microsoft.RecoveryServices/vaults/clitest-vaultqfmzm2o5qtd\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaulterrnpg6v5id\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A49%3A31.127118Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqvlsewe6g3/providers/Microsoft.RecoveryServices/vaults/clitest-vaulterrnpg6v5id\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vault2mbejbsdjkd\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A49%3A34.4176771Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqw4y4ylw7i/providers/Microsoft.RecoveryServices/vaults/clitest-vault2mbejbsdjkd\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultoutiquxjuhi\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A49%3A37.6654241Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqxn7yb2nfsjnvtb72sccih3cziknrgmgfywvffvt2z3ltimcz5trv3qpvmuyrm647/providers/Microsoft.RecoveryServices/vaults/clitest-vaultoutiquxjuhi\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultbokketcjxwr\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A49%3A46.3124756Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgrzvhvja5pu/providers/Microsoft.RecoveryServices/vaults/clitest-vaultbokketcjxwr\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultmbxako53usy\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A49%3A52.1160059Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgswkmgzl5pinx2bwvaf3prk3inqxnebvquwluyu3rps2b3huoswnoujkmuok63aqk3/providers/Microsoft.RecoveryServices/vaults/clitest-vaultmbxako53usy\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultksof3sgjzhk\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A51%3A05.2530167Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtcw4rdb6mnhdvyeg5wumcgeghxfxfx62sau5j7fdnlgtco5ixdvsh6ama3fhtbfkc/providers/Microsoft.RecoveryServices/vaults/clitest-vaultksof3sgjzhk\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vault5khhpsjmksd\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A51%3A08.0965362Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtftwkqigys/providers/Microsoft.RecoveryServices/vaults/clitest-vault5khhpsjmksd\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultm7agvib7g6q\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A51%3A10.0927749Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtndgpytvbe/providers/Microsoft.RecoveryServices/vaults/clitest-vaultm7agvib7g6q\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultmw4fjmyhuj6\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A51%3A20.2183331Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgueraacduykxj35aurfg3e6phmcwi7qvvcuxiqox4kn2tmsdefevv3afg5urhhcfz3/providers/Microsoft.RecoveryServices/vaults/clitest-vaultmw4fjmyhuj6\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultw7rulno2mc5\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A54%3A00.5225723Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgv2b6sta63mktfvvhme2hie43wrnfeqt3loqww3nhv4if33ypyb6g6fmorkul6hbm6/providers/Microsoft.RecoveryServices/vaults/clitest-vaultw7rulno2mc5\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultvepspyndgh2\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A54%3A02.8981638Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgvfxedia2mj/providers/Microsoft.RecoveryServices/vaults/clitest-vaultvepspyndgh2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultqsioyjdru3s\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A54%3A03.561259Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgvgebkmjsxoqwvr6t3ihpjg7o2lytq2aulkkrlkllsrh3gxhrgjo7lbdd2sfenqwl3/providers/Microsoft.RecoveryServices/vaults/clitest-vaultqsioyjdru3s\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultkcbs2mirtt3\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A54%3A04.3617528Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgvvwfbkxbte/providers/Microsoft.RecoveryServices/vaults/clitest-vaultkcbs2mirtt3\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultacijjteljd4\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A54%3A09.9642099Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgwtbj52pahkmrrerejgcihclsbpc54nozmf7v62ojrr5wksuo4p5z3cc654aqfbszg/providers/Microsoft.RecoveryServices/vaults/clitest-vaultacijjteljd4\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultky3zqi734dl\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A54%3A14.4535423Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgxpm37vg3uvqxkzyvgt5tnf7abljqqw5u6tw3sa2tta74vtg6le7zxqpv37ihal4lz/providers/Microsoft.RecoveryServices/vaults/clitest-vaultky3zqi734dl\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultdaertflmw3i\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A54%3A23.7637552Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgymaroxdthxbsz6j3gcnf5ouqx6lbfako76o36wxc67dzpuc5i54lnii22hzt3klez/providers/Microsoft.RecoveryServices/vaults/clitest-vaultdaertflmw3i\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaulttjtrpevjeat\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A54%3A40.7533131Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgyqhilcprxj/providers/Microsoft.RecoveryServices/vaults/clitest-vaulttjtrpevjeat\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultdosxqh3ftji\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A54%3A49.6234445Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgz7n6zgmxvuft4drqqeoyrqcqzjeprapcwymeiimxo3hddpit3xb5clpqht2gf7ooe/providers/Microsoft.RecoveryServices/vaults/clitest-vaultdosxqh3ftji\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultjiyhepvu6f3\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A54%3A52.808488Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzjbjvgx6r4nsfupqcyt6nk6kre7gquc44tb5fhiag6s2y5nbmtuhqodaetvben6tx/providers/Microsoft.RecoveryServices/vaults/clitest-vaultjiyhepvu6f3\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultj563cgnjhxi\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A54%3A54.5717607Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzyopcq5w5w/providers/Microsoft.RecoveryServices/vaults/clitest-vaultj563cgnjhxi\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"gvjreddy-ccy-vault-for-softdelete\",\"etag\":\"W/\\\"datetime'2025-08-14T12%3A39%3A26.3303824Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-ccy-vault-for-softdelete\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"gvjreddy-test-ccy-rsvault\",\"etag\":\"W/\\\"datetime'2025-08-14T12%3A39%3A31.254772Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-test-ccy-rsvault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"cmk-pstest-vault\",\"etag\":\"W/\\\"datetime'2025-08-14T12%3A46%3A54.3843814Z'\\\"\",\"tags\":{\"MABUsed\":\"yes\",\"Owner\":\"hiaga\",\"Purpose\":\"testing\",\"DeleteBy\":\"01-2099\"},\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"c7fb28d8-227b-46b0-a17b-7e45e20a560f\",\"type\":\"SystemAssigned, - UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/hiagarg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cmk-pstest-msi1\":{\"clientId\":\"cc17dc91-0ffc-41c4-9f4b-b7b61fa9f4e8\",\"principalId\":\"79e6360a-251c-4431-b817-a7fff3ac5c91\"}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/cmk-pstest-vault/privateEndpointConnections/hiaga-PE2.379668301146182343.backup.47de299f-fad7-45dd-9e93-de4fcac7d417\",\"name\":\"hiaga-PE2.379668301146182343.backup.47de299f-fad7-45dd-9e93-de4fcac7d417\",\"type\":\"Microsoft.RecoveryServices/vaults/privateEndpointConnections\",\"location\":\"centraluseuap\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpoint\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagarg/providers/Microsoft.Network/privateEndpoints/hiaga-PE2\"},\"groupIds\":[\"AzureBackup\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"None\",\"actionsRequired\":\"None\"}}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/cmk-pstest-vault/privateEndpointConnections/hiaga-PrivateEndpoint.379668301146182343.backup.d12b435b-a2cc-45b2-8cc1-9d7f0e73b176\",\"name\":\"hiaga-PrivateEndpoint.379668301146182343.backup.d12b435b-a2cc-45b2-8cc1-9d7f0e73b176\",\"type\":\"Microsoft.RecoveryServices/vaults/privateEndpointConnections\",\"location\":\"centraluseuap\",\"properties\":{\"provisioningState\":\"Failed\",\"privateEndpoint\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagarg/providers/Microsoft.Network/privateEndpoints/hiaga-PrivateEndpoint\"},\"groupIds\":[\"AzureBackup\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"None\",\"actionsRequired\":\"None\"}}}],\"privateEndpointStateForBackup\":\"Enabled\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":{\"keyVaultProperties\":{\"keyUri\":\"https://cmk-pstest-keyvault.vault.azure.net/keys/cmk-pstest-key/5569d5a163ee474cad2da4ac334af9d7\"},\"kekIdentity\":{\"useSystemAssignedIdentity\":true,\"userAssignedIdentity\":null},\"infrastructureEncryption\":\"Enabled\"},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/cmk-pstest-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"hiaga-adhoc-vault\",\"etag\":\"W/\\\"datetime'2025-08-14T12%3A46%3A56.0590492Z'\\\"\",\"tags\":{\"MABUsed\":\"Yes\",\"Owner\":\"hiaga\",\"Purpose\":\"testing\",\"DeleteBy\":\"01-2031\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"hiagaCLItestvault\",\"etag\":\"W/\\\"datetime'2025-08-14T12%3A46%3A58.9105624Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaCLItestvault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"hiagaCLItestvault2\",\"etag\":\"W/\\\"datetime'2025-08-14T12%3A47%3A00.4627666Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaCLItestvault2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"hiagaVault\",\"etag\":\"W/\\\"datetime'2025-08-14T12%3A47%3A34.1453161Z'\\\"\",\"tags\":{\"MABUsed\":\"Yes\",\"Owner\":\"hiaga\",\"Purpose\":\"Testing\",\"DeleteBy\":\"01-2099\",\"Reserved\":\"please + UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/hiagaczr-rg/providers/microsoft.managedidentity/userassignedidentities/hiagauseridentity\":{\"clientId\":\"05a1da4a-ee20-42b9-94de-72175caa42bb\",\"principalId\":\"af96ebe9-5ed3-4753-9849-c314ddc1150c\"},\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/container_softdelete/providers/Microsoft.ManagedIdentity/userAssignedIdentities/adigupt\":{\"clientId\":\"2764e801-c368-49ba-b8af-3cb5761db993\",\"principalId\":\"955f634e-31df-4df5-8692-cee6ca4f4e8a\"}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseCcyGrs/providers/Microsoft.RecoveryServices/vaults/akkanaseTest\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"akkanaseTest123\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A21%3A57.4691016Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseCcyGrs/providers/Microsoft.RecoveryServices/vaults/akkanaseTest123/privateEndpointConnections/testAkkanase.6763488043549574973.backup.26dd9d9e-5fac-4d91-86c4-6c86c3e14f15\",\"name\":\"testAkkanase.6763488043549574973.backup.26dd9d9e-5fac-4d91-86c4-6c86c3e14f15\",\"type\":\"Microsoft.RecoveryServices/vaults/privateEndpointConnections\",\"location\":\"centraluseuap\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpoint\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseCcyGrs/providers/Microsoft.Network/privateEndpoints/testAkkanase\"},\"groupIds\":[\"AzureBackup\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"None\",\"actionsRequired\":\"None\"}}}],\"privateEndpointStateForBackup\":\"Enabled\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseCcyGrs/providers/Microsoft.RecoveryServices/vaults/akkanaseTest123\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"akkanaseCMK\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A23%3A22.994835Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"9b8d9f7f-3081-4e65-80d3-f53d2c0de284\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":{\"keyVaultProperties\":{\"keyUri\":\"https://akkansehsmtest.vault.azure.net/keys/test1233\"},\"kekIdentity\":{\"useSystemAssignedIdentity\":true,\"userAssignedIdentity\":null},\"infrastructureEncryption\":\"Disabled\"},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseCMK/providers/Microsoft.RecoveryServices/vaults/akkanaseCMK\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"akkanaseCMK1\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A23%3A24.743162Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"89ad7ce4-46cd-4581-af4f-682e71cb40bc\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseCMK/providers/Microsoft.RecoveryServices/vaults/akkanaseCMK1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"akkanaseTest2\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A23%3A32.1825168Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"e3b70927-d49d-4c84-adac-ac673e8b79e1\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":{\"keyVaultProperties\":{\"keyUri\":\"https://akkansehsmtest.vault.azure.net/keys/key123\"},\"kekIdentity\":{\"useSystemAssignedIdentity\":true,\"userAssignedIdentity\":null},\"infrastructureEncryption\":\"Disabled\"},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseCMK/providers/Microsoft.RecoveryServices/vaults/akkanaseTest2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"test123asdsf\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A23%3A36.9028024Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseCMK/providers/Microsoft.RecoveryServices/vaults/test123asdsf\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"akkanaseAkash1\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A25%3A17.8288719Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseTest/providers/Microsoft.RecoveryServices/vaults/akkanaseAkash1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"akkanaseMSI\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A25%3A18.8862314Z'\\\"\",\"identity\":{\"type\":\"None\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseTest/providers/Microsoft.RecoveryServices/vaults/akkanaseMSI\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"akkanaseTest1234\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A26%3A28.2072816Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseTest/providers/Microsoft.RecoveryServices/vaults/akkanaseTest1234\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"akkanaseTest12sdf\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A26%3A30.1806516Z'\\\"\",\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cmk.system/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identity1\":{\"clientId\":\"73571b84-6f37-4bdd-a60f-1121cb5d31d7\",\"principalId\":\"13a05d1f-eae9-47ae-944f-46270c95d12e\"}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseTest/providers/Microsoft.RecoveryServices/vaults/akkanaseTest12sdf/privateEndpointConnections/akkanaseTest123.7874099994692673002.backup.7e26ee6a-554d-4fa8-a70e-09fee5ae5b94\",\"name\":\"akkanaseTest123.7874099994692673002.backup.7e26ee6a-554d-4fa8-a70e-09fee5ae5b94\",\"type\":\"Microsoft.RecoveryServices/vaults/privateEndpointConnections\",\"location\":\"centraluseuap\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpoint\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseTest/providers/Microsoft.Network/privateEndpoints/akkanaseTest123\"},\"groupIds\":[\"AzureBackup\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"None\",\"actionsRequired\":\"None\"}}}],\"privateEndpointStateForBackup\":\"Enabled\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":{\"keyVaultProperties\":{\"keyUri\":\"https://akkansehsmtest.vault.azure.net/keys/key123\"},\"kekIdentity\":{\"useSystemAssignedIdentity\":false,\"userAssignedIdentity\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cmk.system/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identity1\"},\"infrastructureEncryption\":\"Disabled\"},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseTest/providers/Microsoft.RecoveryServices/vaults/akkanaseTest12sdf\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"akkanaseTest3\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A31%3A43.0246266Z'\\\"\",\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_adkayeth_adkayethAAD_eastus2euap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/adkayethAAD-agentpool\":{\"clientId\":\"fe6d65f6-2d13-4460-a7d4-37338eeadb3a\",\"principalId\":\"c8a00157-361a-46b9-a9dc-72c8caff7afe\"}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":{\"keyVaultProperties\":{\"keyUri\":\"https://akkanasecmktest1.vault.azure.net/keys/test123\"},\"kekIdentity\":{\"useSystemAssignedIdentity\":false,\"userAssignedIdentity\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_adkayeth_adkayethAAD_eastus2euap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/adkayethAAD-agentpool\"},\"infrastructureEncryption\":\"Disabled\"},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseTest1/providers/Microsoft.RecoveryServices/vaults/akkanaseTest3\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"akkanaseIndia\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A31%3A45.3414843Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseTest2/providers/Microsoft.RecoveryServices/vaults/akkanaseIndia/privateEndpointConnections/vxzvx.8287073220565965330.backup.2a05a7c4-564b-458b-88a2-e142e1e43a18\",\"name\":\"vxzvx.8287073220565965330.backup.2a05a7c4-564b-458b-88a2-e142e1e43a18\",\"type\":\"Microsoft.RecoveryServices/vaults/privateEndpointConnections\",\"location\":\"centraluseuap\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpoint\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseTest2/providers/Microsoft.Network/privateEndpoints/vxzvx\"},\"groupIds\":[\"AzureBackup\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"None\",\"actionsRequired\":\"None\"}}}],\"privateEndpointStateForBackup\":\"Enabled\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseTest2/providers/Microsoft.RecoveryServices/vaults/akkanaseIndia\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"akneema-vault\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A35%3A20.5395122Z'\\\"\",\"tags\":{\"Owner\":\"akneema\",\"Purpose\":\"Testing\",\"DeleteBy\":\"12-9999\",\"MABUsed\":\"Yes\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Disabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"akneemavault\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A35%3A17.4998393Z'\\\"\",\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"84b1c8fc-28b0-477e-b6a5-2af16999fe58\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneemavault/privateEndpointConnections/akneemape.5725812072430978587.backup.e911a862-8697-4593-b107-0d8388e0b195\",\"name\":\"akneemape.5725812072430978587.backup.e911a862-8697-4593-b107-0d8388e0b195\",\"type\":\"Microsoft.RecoveryServices/vaults/privateEndpointConnections\",\"location\":\"centraluseuap\",\"properties\":{\"provisioningState\":\"Failed\",\"privateEndpoint\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.Network/privateEndpoints/akneemape\"},\"groupIds\":[\"AzureBackup\"],\"privateLinkServiceConnectionState\":{\"status\":\"Rejected\",\"description\":\"Rejected!\",\"actionsRequired\":\"None\"}}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneemavault/privateEndpointConnections/akneemape2.5725812072430978587.backup.ad373f61-9bdc-4bab-8e59-3066b4492c15\",\"name\":\"akneemape2.5725812072430978587.backup.ad373f61-9bdc-4bab-8e59-3066b4492c15\",\"type\":\"Microsoft.RecoveryServices/vaults/privateEndpointConnections\",\"location\":\"centraluseuap\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpoint\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.Network/privateEndpoints/akneemape2\"},\"groupIds\":[\"AzureBackup\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"None\",\"actionsRequired\":\"None\"}}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneemavault/privateEndpointConnections/akneemape3.5725812072430978587.backup.03188b6a-f02a-4a77-873e-b4f116d016da\",\"name\":\"akneemape3.5725812072430978587.backup.03188b6a-f02a-4a77-873e-b4f116d016da\",\"type\":\"Microsoft.RecoveryServices/vaults/privateEndpointConnections\",\"location\":\"centraluseuap\",\"properties\":{\"provisioningState\":\"Failed\",\"privateEndpoint\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.Network/privateEndpoints/akneemape3\"},\"groupIds\":[\"AzureBackup\"],\"privateLinkServiceConnectionState\":{\"status\":\"Rejected\",\"description\":\"Rejected!\",\"actionsRequired\":\"None\"}}}],\"privateEndpointStateForBackup\":\"Enabled\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneemavault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"amchandnrsv2\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A42%3A24.0054667Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amchandnccy/providers/Microsoft.RecoveryServices/vaults/amchandnrsv2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"VaultEmpty18101\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A15%3A03.9046746Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurRG137/providers/Microsoft.RecoveryServices/vaults/VaultEmpty18101\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"VaultEmpty2210\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A15%3A06.2055762Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurRG137/providers/Microsoft.RecoveryServices/vaults/VaultEmpty2210\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"anssingh-vault\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A15%3A09.0520837Z'\\\"\",\"tags\":{\"MabUsed\":\"yes\",\"Owner\":\"anssingh\",\"DeleteBy\":\"01-2025\",\"Purpose\":\"testing\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/anssingh-rg/providers/Microsoft.RecoveryServices/vaults/anssingh-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"arohijain-vault\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A15%3A10.6948731Z'\\\"\",\"tags\":{\"MabUsed\":\"yes\",\"Owner\":\"arohijain\",\"DeleteBy\":\"01-2025\",\"Purpose\":\"testing\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/arohijain-rg/providers/Microsoft.RecoveryServices/vaults/arohijain-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"iaasvmnew1\",\"etag\":\"W/\\\"datetime'2025-09-15T13%3A05%3A39.9037828Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chandrikarg/providers/Microsoft.RecoveryServices/vaults/iaasvmnew1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"cli-track2-vault\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A55%3A03.078481Z'\\\"\",\"tags\":{\"Owner\":\"akneema\",\"Purpose\":\"Testing\",\"DeleteBy\":\"12-9999\",\"MABUsed\":\"Yes\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-track2-rg/providers/Microsoft.RecoveryServices/vaults/cli-track2-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"testvault2\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A55%3A04.4166161Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-track2-rg/providers/Microsoft.RecoveryServices/vaults/testvault2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"crrclitestvaultccy\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A54%3A56.7780914Z'\\\"\",\"tags\":{\"Owner\":\"akneema\",\"Purpose\":\"Testing\",\"MABUsed\":\"Yes\",\"DeleteBy\":\"12-9999\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-rg/providers/Microsoft.RecoveryServices/vaults/crrclitestvaultccy\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vault-donotuse\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A54%3A59.0511303Z'\\\"\",\"tags\":{\"Owner\":\"akneema\",\"Purpose\":\"Testing\",\"MABUsed\":\"Yes\",\"DeleteBy\":\"12-9999\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-rg-donotuse/providers/Microsoft.RecoveryServices/vaults/clitest-vault-donotuse\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultk742e5bizan\",\"etag\":\"W/\\\"datetime'2025-12-12T11%3A23%3A21.4109278Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3j7gq2wvih2wipofw42ntgiqciai46lt2ke6noafznpjjpg564wonywwkvcngksjb/providers/Microsoft.RecoveryServices/vaults/clitest-vaultk742e5bizan\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultp6rrywyjhpv\",\"etag\":\"W/\\\"datetime'2025-12-12T08%3A48%3A17.4098742Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg4erisbg7jmkzty3xrtag5gbmdpl7j7wgfjwel5yi7lav6lw2wanfulwlmzcleqyig/providers/Microsoft.RecoveryServices/vaults/clitest-vaultp6rrywyjhpv\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultf63ri7zzexq\",\"etag\":\"W/\\\"datetime'2025-12-12T06%3A58%3A51.2301608Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg4gpgezlqsc/providers/Microsoft.RecoveryServices/vaults/clitest-vaultf63ri7zzexq\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vault3cclxarumgp\",\"etag\":\"W/\\\"datetime'2025-12-12T08%3A48%3A33.7473314Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg5bw5ydpsvodnpjbw5paw5iikrl6qsd4x33ultuzamybatuzsrm4o2vlmzznxan3rx/providers/Microsoft.RecoveryServices/vaults/clitest-vault3cclxarumgp\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaulttp3wc4ilolc\",\"etag\":\"W/\\\"datetime'2025-12-12T08%3A49%3A36.9894965Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg5j6eq7chk3/providers/Microsoft.RecoveryServices/vaults/clitest-vaulttp3wc4ilolc\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultaa2owvkw3a6\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A40%3A54.3184296Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg6uot2xjxzn/providers/Microsoft.RecoveryServices/vaults/clitest-vaultaa2owvkw3a6\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultl2vilhbfrsl\",\"etag\":\"W/\\\"datetime'2025-12-12T08%3A47%3A59.745434Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":null,\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg737xmkx5vdlect2rfcc6jn7vo2tz2am7vv5qa3iarulubprk5mvupdekmewjot63b/providers/Microsoft.RecoveryServices/vaults/clitest-vaultl2vilhbfrsl\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vault2xhgpa5m2kr\",\"etag\":\"W/\\\"datetime'2025-12-12T08%3A49%3A12.5927186Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbn4upty7am2ljyvhzfg2bkd66yufesnbu3y4ql3l45hxn2peqzo6q3wfkswlwcm54/providers/Microsoft.RecoveryServices/vaults/clitest-vault2xhgpa5m2kr\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaulti2hy7n2gfae\",\"etag\":\"W/\\\"datetime'2025-12-12T08%3A51%3A01.3309818Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgcea6dcyknc/providers/Microsoft.RecoveryServices/vaults/clitest-vaulti2hy7n2gfae\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultzbkwg5vme4j\",\"etag\":\"W/\\\"datetime'2025-12-12T08%3A49%3A09.0081537Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgd6wgaycmodpjw6wzengonrszbatlt3fn46reyjjdjmgexfoulp7p2konnlbfjysbu/providers/Microsoft.RecoveryServices/vaults/clitest-vaultzbkwg5vme4j\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultnfsjmhvzzi6\",\"etag\":\"W/\\\"datetime'2025-12-12T06%3A58%3A57.6395626Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgduli6xmh6n/providers/Microsoft.RecoveryServices/vaults/clitest-vaultnfsjmhvzzi6\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultppnhrdcisso\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A46%3A24.6145093Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgfitetb45fm/providers/Microsoft.RecoveryServices/vaults/clitest-vaultppnhrdcisso\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultopmxfpwtdzt\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A46%3A25.9675735Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgfnuko4vmbo/providers/Microsoft.RecoveryServices/vaults/clitest-vaultopmxfpwtdzt\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultfslv6ng7owd\",\"etag\":\"W/\\\"datetime'2025-12-12T08%3A50%3A32.7055791Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgfxongdei6v/providers/Microsoft.RecoveryServices/vaults/clitest-vaultfslv6ng7owd\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultot7aeuagxis\",\"etag\":\"W/\\\"datetime'2025-12-12T08%3A50%3A51.6267944Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgglld3zspxu/providers/Microsoft.RecoveryServices/vaults/clitest-vaultot7aeuagxis\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultnyxkuyrd6uf\",\"etag\":\"W/\\\"datetime'2025-12-12T10%3A58%3A38.1053049Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjb5i5hn2ikyoq65bbgijee4kfavs2k6uqjyalw6upgcgugnizht3dsb63nxzg3qpa/providers/Microsoft.RecoveryServices/vaults/clitest-vaultnyxkuyrd6uf\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultdwjdwzqv7sc\",\"etag\":\"W/\\\"datetime'2025-12-12T08%3A50%3A56.5602158Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rglq6kt655zt/providers/Microsoft.RecoveryServices/vaults/clitest-vaultdwjdwzqv7sc\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultyub6edqwync\",\"etag\":\"W/\\\"datetime'2025-12-12T08%3A50%3A47.8161641Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgm4foig3vla/providers/Microsoft.RecoveryServices/vaults/clitest-vaultyub6edqwync\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultlzwgmiu2x7y\",\"etag\":\"W/\\\"datetime'2026-06-18T09%3A58%3A36.8142117Z'\\\"\",\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"a4f96bec-c09e-4c14-839b-b36ebb815aef\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgn7iod7ivodxannjj3usm7t2urs2l6tgttlxlwhqtedfj422exhtksqinbf6za44un/providers/Microsoft.RecoveryServices/vaults/clitest-vaultlzwgmiu2x7y\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultbadacbyy5od\",\"etag\":\"W/\\\"datetime'2025-12-12T08%3A47%3A06.063236Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":null,\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgnlwii7mbbaghajxhbmgwcvlpe2od4fm4edyeo7wi3hqa4qyeqsleqk3at4ixwxuxl/providers/Microsoft.RecoveryServices/vaults/clitest-vaultbadacbyy5od\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultra7myzbvf3q\",\"etag\":\"W/\\\"datetime'2025-12-12T08%3A48%3A55.4782843Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":null,\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgnsjdxxxaqakwqtlt25mxvu6ir5ymfcu6j2oim7u4um53ybdsnqmolhqdkl4em7oai/providers/Microsoft.RecoveryServices/vaults/clitest-vaultra7myzbvf3q\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultyqgw4hrxqml\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A48%3A31.4689212Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpfdyc7kgxv/providers/Microsoft.RecoveryServices/vaults/clitest-vaultyqgw4hrxqml\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultmgkq6wgedm5\",\"etag\":\"W/\\\"datetime'2025-12-12T08%3A50%3A05.5031344Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgq4lcdbhyak/providers/Microsoft.RecoveryServices/vaults/clitest-vaultmgkq6wgedm5\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultp2eeiygqgpg\",\"etag\":\"W/\\\"datetime'2025-12-12T08%3A47%3A35.8476274Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgq53n5juxxd4bo34q3jb63rhmi5ox2sqj6terxb3syi4shbntbo73ui672bwfivh7a/providers/Microsoft.RecoveryServices/vaults/clitest-vaultp2eeiygqgpg\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultqfmzm2o5qtd\",\"etag\":\"W/\\\"datetime'2025-12-12T11%3A10%3A56.337948Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgq63xeorfw3bprevjy5jj64xf2bfdopasca52ceer6sj673mccat2tllm26jhf6nkh/providers/Microsoft.RecoveryServices/vaults/clitest-vaultqfmzm2o5qtd\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaulterrnpg6v5id\",\"etag\":\"W/\\\"datetime'2025-12-12T08%3A49%3A11.0785092Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqvlsewe6g3/providers/Microsoft.RecoveryServices/vaults/clitest-vaulterrnpg6v5id\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vault2mbejbsdjkd\",\"etag\":\"W/\\\"datetime'2025-12-12T08%3A48%3A43.8701146Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqw4y4ylw7i/providers/Microsoft.RecoveryServices/vaults/clitest-vault2mbejbsdjkd\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultbokketcjxwr\",\"etag\":\"W/\\\"datetime'2025-12-12T08%3A50%3A18.6639049Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgrzvhvja5pu/providers/Microsoft.RecoveryServices/vaults/clitest-vaultbokketcjxwr\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultmbxako53usy\",\"etag\":\"W/\\\"datetime'2025-12-12T08%3A48%3A52.3067459Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgswkmgzl5pinx2bwvaf3prk3inqxnebvquwluyu3rps2b3huoswnoujkmuok63aqk3/providers/Microsoft.RecoveryServices/vaults/clitest-vaultmbxako53usy\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vault5khhpsjmksd\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A51%3A08.0965362Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtftwkqigys/providers/Microsoft.RecoveryServices/vaults/clitest-vault5khhpsjmksd\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultm7agvib7g6q\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A51%3A10.0927749Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtndgpytvbe/providers/Microsoft.RecoveryServices/vaults/clitest-vaultm7agvib7g6q\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultqsioyjdru3s\",\"etag\":\"W/\\\"datetime'2025-12-12T08%3A48%3A40.9366663Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgvgebkmjsxoqwvr6t3ihpjg7o2lytq2aulkkrlkllsrh3gxhrgjo7lbdd2sfenqwl3/providers/Microsoft.RecoveryServices/vaults/clitest-vaultqsioyjdru3s\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultkcbs2mirtt3\",\"etag\":\"W/\\\"datetime'2025-12-12T08%3A50%3A02.4733728Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgvvwfbkxbte/providers/Microsoft.RecoveryServices/vaults/clitest-vaultkcbs2mirtt3\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultdaertflmw3i\",\"etag\":\"W/\\\"datetime'2025-12-12T08%3A47%3A22.3525632Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgymaroxdthxbsz6j3gcnf5ouqx6lbfako76o36wxc67dzpuc5i54lnii22hzt3klez/providers/Microsoft.RecoveryServices/vaults/clitest-vaultdaertflmw3i\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaulttjtrpevjeat\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A54%3A40.7533131Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgyqhilcprxj/providers/Microsoft.RecoveryServices/vaults/clitest-vaulttjtrpevjeat\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultdosxqh3ftji\",\"etag\":\"W/\\\"datetime'2025-12-12T08%3A48%3A46.0613171Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgz7n6zgmxvuft4drqqeoyrqcqzjeprapcwymeiimxo3hddpit3xb5clpqht2gf7ooe/providers/Microsoft.RecoveryServices/vaults/clitest-vaultdosxqh3ftji\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitest-vaultj563cgnjhxi\",\"etag\":\"W/\\\"datetime'2025-12-12T08%3A51%3A05.3705461Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzyopcq5w5w/providers/Microsoft.RecoveryServices/vaults/clitest-vaultj563cgnjhxi\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"asr-aarya-vault\",\"etag\":\"W/\\\"datetime'2026-06-08T16%3A20%3A14.5271763Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoohana/providers/Microsoft.RecoveryServices/vaults/asr-aarya-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"gvjreddy-ccy-vault-for-softdelete\",\"etag\":\"W/\\\"datetime'2025-08-14T12%3A39%3A26.3303824Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-ccy-vault-for-softdelete\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"gvjreddy-test-ccy-rsvault\",\"etag\":\"W/\\\"datetime'2025-08-14T12%3A39%3A31.254772Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-test-ccy-rsvault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"cmk-pstest-vault\",\"etag\":\"W/\\\"datetime'2025-10-27T16%3A34%3A40.6850867Z'\\\"\",\"tags\":{\"MABUsed\":\"yes\",\"Owner\":\"hiaga\",\"Purpose\":\"testing\",\"DeleteBy\":\"01-2099\"},\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"c7fb28d8-227b-46b0-a17b-7e45e20a560f\",\"type\":\"SystemAssigned, + UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/hiagarg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cmk-pstest-msi1\":{\"clientId\":\"cc17dc91-0ffc-41c4-9f4b-b7b61fa9f4e8\",\"principalId\":\"79e6360a-251c-4431-b817-a7fff3ac5c91\"}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/cmk-pstest-vault/privateEndpointConnections/hiaga-PE2.379668301146182343.backup.47de299f-fad7-45dd-9e93-de4fcac7d417\",\"name\":\"hiaga-PE2.379668301146182343.backup.47de299f-fad7-45dd-9e93-de4fcac7d417\",\"type\":\"Microsoft.RecoveryServices/vaults/privateEndpointConnections\",\"location\":\"centraluseuap\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpoint\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagarg/providers/Microsoft.Network/privateEndpoints/hiaga-PE2\"},\"groupIds\":[\"AzureBackup\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"None\",\"actionsRequired\":\"None\"}}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/cmk-pstest-vault/privateEndpointConnections/hiaga-PrivateEndpoint.379668301146182343.backup.d12b435b-a2cc-45b2-8cc1-9d7f0e73b176\",\"name\":\"hiaga-PrivateEndpoint.379668301146182343.backup.d12b435b-a2cc-45b2-8cc1-9d7f0e73b176\",\"type\":\"Microsoft.RecoveryServices/vaults/privateEndpointConnections\",\"location\":\"centraluseuap\",\"properties\":{\"provisioningState\":\"Failed\",\"privateEndpoint\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagarg/providers/Microsoft.Network/privateEndpoints/hiaga-PrivateEndpoint\"},\"groupIds\":[\"AzureBackup\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"None\",\"actionsRequired\":\"None\"}}}],\"privateEndpointStateForBackup\":\"Enabled\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":{\"keyVaultProperties\":{\"keyUri\":\"https://cmk-pstest-keyvault.vault.azure.net/keys/cmk-pstest-key/5569d5a163ee474cad2da4ac334af9d7\"},\"kekIdentity\":{\"useSystemAssignedIdentity\":true,\"userAssignedIdentity\":null},\"infrastructureEncryption\":\"Enabled\"},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/cmk-pstest-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"hiaga-adhoc-vault\",\"etag\":\"W/\\\"datetime'2025-11-26T04%3A01%3A19.4362344Z'\\\"\",\"tags\":{\"MABUsed\":\"Yes\",\"Owner\":\"hiaga\",\"Purpose\":\"testing\",\"DeleteBy\":\"01-2031\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"hiagaCLItestvault\",\"etag\":\"W/\\\"datetime'2025-08-14T12%3A46%3A58.9105624Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaCLItestvault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"hiagaCLItestvault2\",\"etag\":\"W/\\\"datetime'2025-08-14T12%3A47%3A00.4627666Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaCLItestvault2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"hiagaVault\",\"etag\":\"W/\\\"datetime'2025-08-14T12%3A47%3A34.1453161Z'\\\"\",\"tags\":{\"MABUsed\":\"Yes\",\"Owner\":\"hiaga\",\"Purpose\":\"Testing\",\"DeleteBy\":\"01-2099\",\"Reserved\":\"please do not use this vault for any testing as it is reserved and highly used for PowerShell\"},\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"608ca1e9-e854-46c6-984f-d812d0e657e6\",\"type\":\"SystemAssigned, UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/hiagaczr-rg/providers/microsoft.managedidentity/userassignedidentities/hiagauseridentity\":{\"clientId\":\"05a1da4a-ee20-42b9-94de-72175caa42bb\",\"principalId\":\"af96ebe9-5ed3-4753-9849-c314ddc1150c\"}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"hiagaVault2\",\"etag\":\"W/\\\"datetime'2025-08-14T12%3A47%3A33.8366674Z'\\\"\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"mua-pstest-vault\",\"etag\":\"W/\\\"datetime'2025-10-27T08%3A47%3A19.6189051Z'\\\"\",\"tags\":{\"MABUsed\":\"Yes\",\"Owner\":\"hiaga\",\"Purpose\":\"testing\",\"DeleteBy\":\"05-2025\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"iaasvm-clitest-vault\",\"etag\":\"W/\\\"datetime'2025-08-14T14%3A54%3A36.670939Z'\\\"\",\"tags\":{\"Owner\":\"akneema\",\"Purpose\":\"CLITest\",\"MABUsed\":\"Yes\",\"DeleteBy\":\"12-9999\"},\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"387cd308-5be1-46f9-8817-263fc830e334\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvm-clitest-rg/providers/Microsoft.RecoveryServices/vaults/iaasvm-clitest-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"iaasvm-pstest-vault\",\"etag\":\"W/\\\"datetime'2025-08-14T14%3A56%3A40.5982167Z'\\\"\",\"tags\":{\"MABUsed\":\"yes\",\"Owner\":\"hiaga\",\"DeleteBy\":\"01-3000\",\"Purpose\":\"testing\",\"AutoShutdown\":\"no\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvm-pstest-rg/providers/Microsoft.RecoveryServices/vaults/iaasvm-pstest-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"iaasvmexistingcrrdesvault1\",\"etag\":\"W/\\\"datetime'2025-08-14T12%3A47%3A36.0380295Z'\\\"\",\"tags\":{\"Mab - Used\":\"yes\",\"Purpose\":\"BVT\",\"Owner\":\"akkanase\",\"DeleteBy\":\"05-2099\"},\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"c168dcfd-9d6e-45ff-bd87-7509d98ab08f\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":{\"keyVaultProperties\":{\"keyUri\":\"https://iaasdescrr-des-keyvault.vault.azure.net/keys/iaasdescrr-des-key\"},\"kekIdentity\":{\"useSystemAssignedIdentity\":true,\"userAssignedIdentity\":null},\"infrastructureEncryption\":\"Enabled\"},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvm.cmk.descrr/providers/Microsoft.RecoveryServices/vaults/iaasvmexistingcrrdesvault1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"iaasvmexistingcrrvault1\",\"etag\":\"W/\\\"datetime'2025-08-14T12%3A53%3A07.8179855Z'\\\"\",\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"bc375f3e-c1c7-4ac3-9271-bd8899c15a64\",\"type\":\"SystemAssigned, - UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cmk.system/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identity1\":{\"clientId\":\"73571b84-6f37-4bdd-a60f-1121cb5d31d7\",\"principalId\":\"13a05d1f-eae9-47ae-944f-46270c95d12e\"},\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagarg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cmk-pstest-msi1\":{\"clientId\":\"cc17dc91-0ffc-41c4-9f4b-b7b61fa9f4e8\",\"principalId\":\"79e6360a-251c-4431-b817-a7fff3ac5c91\"}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvm.existing.crr/providers/Microsoft.RecoveryServices/vaults/iaasvmexistingcrrvault1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"iaasvmsqlworkloadexistingcrrvault\",\"etag\":\"W/\\\"datetime'2025-08-14T15%3A03%3A40.485906Z'\\\"\",\"tags\":{\"MabUsed\":\"Yes\",\"Purpose\":\"BVT\"},\"identity\":{\"type\":\"None\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"moveDetails\":{\"operationId\":\"06275736-66fc-46b6-8369-514c41bb3940\",\"startTimeUtc\":\"2020-09-14T14:05:35.3187945Z\",\"completionTimeUtc\":\"2020-09-15T06:46:17.6623452Z\",\"sourceResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingcrrvault\",\"targetResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.crr/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingcrrvault\"},\"moveState\":\"MoveSucceeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.crr/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingcrrvault\",\"type\":\"microsoft.recoveryservices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"crr111\",\"etag\":\"W/\\\"datetime'2025-08-14T15%3A19%3A39.5150377Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ishan_softDeleteContainerTest/providers/Microsoft.RecoveryServices/vaults/crr111\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"crrMock\",\"etag\":\"W/\\\"datetime'2025-08-14T15%3A19%3A45.1154968Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ishan_softDeleteContainerTest/providers/Microsoft.RecoveryServices/vaults/crrMock\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"vaulttest2\",\"etag\":\"W/\\\"datetime'2025-08-14T15%3A31%3A14.1302029Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ishan_softDeleteContainerTest/providers/Microsoft.RecoveryServices/vaults/vaulttest2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"sometest\",\"etag\":\"W/\\\"datetime'2025-08-14T15%3A31%3A51.5748958Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ishansap/providers/Microsoft.RecoveryServices/vaults/sometest\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"MarsSetup1\",\"etag\":\"W/\\\"datetime'2025-08-14T15%3A40%3A00.0761593Z'\\\"\",\"tags\":{\"Owner\":\"Kalyan\",\"Purpose\":\"Testing\",\"DeleteBy\":\"06-2024\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mars_issue_repro/providers/Microsoft.RecoveryServices/vaults/MarsSetup1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"msi-pstest-vault\",\"etag\":\"W/\\\"datetime'2025-10-26T17%3A47%3A16.5233633Z'\\\"\",\"tags\":{\"MABUsed\":\"Yes\",\"Owner\":\"hiaga\",\"Purpose\":\"testing\",\"DeleteBy\":\"01-2099\"},\"identity\":{\"type\":\"None\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/msi-pstest-rg/providers/Microsoft.RecoveryServices/vaults/msi-pstest-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"pevaultfhwur\",\"etag\":\"W/\\\"datetime'2025-10-26T19%3A27%3A26.114303Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pe.new.vaults/providers/Microsoft.RecoveryServices/vaults/pevaultfhwur\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"pevaultwupis\",\"etag\":\"W/\\\"datetime'2025-10-26T19%3A19%3A36.0071843Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pe.new.vaults/providers/Microsoft.RecoveryServices/vaults/pevaultwupis\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"PSTestRSV3e47f7bb\",\"etag\":\"W/\\\"datetime'2025-08-14T15%3A45%3A13.0402048Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PSTestRG3e47f7bb/providers/Microsoft.RecoveryServices/vaults/PSTestRSV3e47f7bb\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"PSTestRSV7dd07fe2\",\"etag\":\"W/\\\"datetime'2025-08-14T15%3A45%3A13.3229644Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PSTestRG7dd07fe2/providers/Microsoft.RecoveryServices/vaults/PSTestRSV7dd07fe2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"PSTestRSVccdb4c89\",\"etag\":\"W/\\\"datetime'2025-08-14T15%3A45%3A13.7301779Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PSTestRGccdb4c8924/providers/Microsoft.RecoveryServices/vaults/PSTestRSVccdb4c89\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"testccy-vault\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A19%3A17.6714058Z'\\\"\",\"tags\":{\"Owner\":\"Kalyan\",\"Purpose\":\"Testing\",\"DeleteBy\":\"10-2025\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/reregistration-test-rg/providers/Microsoft.RecoveryServices/vaults/testccy-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"vault372\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A10%3A41.7546874Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg372/providers/Microsoft.RecoveryServices/vaults/vault372\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"vault416\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A10%3A45.0781326Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg416/providers/Microsoft.RecoveryServices/vaults/vault416\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"vault525\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A10%3A46.14048Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg525/providers/Microsoft.RecoveryServices/vaults/vault525\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"saphana-clitest-vault\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A10%3A46.9907561Z'\\\"\",\"tags\":{\"Owner\":\"akneema\",\"Purpose\":\"CLITest\",\"MABUsed\":\"Yes\",\"DeleteBy\":\"12-9999\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/saphana-clitest-rg/providers/Microsoft.RecoveryServices/vaults/saphana-clitest-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"saphana-clitestvault-donotuse\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A10%3A49.6959094Z'\\\"\",\"tags\":{\"Owner\":\"akneema\",\"Purpose\":\"Testi\",\"DeleteBy\":\"12-9999\",\"MABUsed\":\"Yes\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/saphana-clitest-rg/providers/Microsoft.RecoveryServices/vaults/saphana-clitestvault-donotuse\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"saphanaworkloadexistingvault\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A10%3A51.333736Z'\\\"\",\"tags\":{\"MABUsed\":\"Yes\",\"Purpose\":\"BVT\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":null,\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/saphanaworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/saphanaworkloadexistingvault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"CopilotTestVault\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A11%3A45.8499245Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/CopilotTestVault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"sarath-ccy-vaultv1\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A12%3A55.6374672Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-ccy-vaultv1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"sarath-copilot-testvault1\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A12%3A58.1196117Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-copilot-testvault1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"sarath-resourcemove-vault\",\"etag\":\"W/\\\"datetime'2023-07-21T07%3A06%3A31.3767489Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"moveDetails\":{\"operationId\":\"e47b5e89-92a4-4f0f-955f-de87c715f2ea\",\"startTimeUtc\":\"2023-07-21T06:51:15.7626678Z\",\"completionTimeUtc\":\"2023-07-21T07:06:31.35924Z\",\"sourceResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-resourcemove-vault\",\"targetResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AdkayethBugbash/providers/Microsoft.RecoveryServices/vaults/sarath-resourcemove-vault\"},\"moveState\":\"InProgress\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-resourcemove-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"sql-clicloudtest-vault\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A32%3A48.1924995Z'\\\"\",\"tags\":{\"Owner\":\"akneema\",\"Purpose\":\"Testing\",\"MABUsed\":\"Yes\",\"DeleteBy\":\"12-9999\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sql-clicloudtest-rg/providers/Microsoft.RecoveryServices/vaults/sql-clicloudtest-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"vault110\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A32%3A50.084204Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sql-clicloudtest-rg/providers/Microsoft.RecoveryServices/vaults/vault110\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"vault579\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A32%3A51.8803266Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sql-clicloudtest-rg/providers/Microsoft.RecoveryServices/vaults/vault579\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"vault600\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A32%3A53.5330786Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sql-clicloudtest-rg/providers/Microsoft.RecoveryServices/vaults/vault600\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"vault670\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A32%3A55.8389673Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sql-clicloudtest-rg/providers/Microsoft.RecoveryServices/vaults/vault670\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"vault885l\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A32%3A58.109011Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sql-clicloudtest-rg/providers/Microsoft.RecoveryServices/vaults/vault885l\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitrack2vault\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A32%3A59.6990383Z'\\\"\",\"tags\":{\"Owner\":\"akneema\",\"Purpose\":\"Testing\",\"MABUsed\":\"Yes\",\"DeleteBy\":\"12-9999\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sql-clitest-rg/providers/Microsoft.RecoveryServices/vaults/clitrack2vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitrack2vault2\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A33%3A02.4957739Z'\\\"\",\"tags\":{\"Owner\":\"akneema\",\"MABUsed\":\"Yes\",\"DeleteBy\":\"12-9999\",\"Purpose\":\"Testing\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sql-clitest-rg/providers/Microsoft.RecoveryServices/vaults/clitrack2vault2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"sql-clitest-vault\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A33%3A04.3367001Z'\\\"\",\"tags\":{\"Owner\":\"akneema\",\"Purpose\":\"CLITest\",\"MABUsed\":\"Yes\",\"DeleteBy\":\"12-9999\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sql-clitest-rg/providers/Microsoft.RecoveryServices/vaults/sql-clitest-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"sql-clitestvault-donotuse\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A33%3A33.5764617Z'\\\"\",\"tags\":{\"Owner\":\"akneema\",\"Purpose\":\"Testing\",\"DeleteBy\":\"12-9999\",\"MABUsed\":\"Yes\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sql-clitest-rg/providers/Microsoft.RecoveryServices/vaults/sql-clitestvault-donotuse\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"sqlcontainer-pstest-vault\",\"etag\":\"W/\\\"datetime'2025-10-27T09%3A39%3A46.8874547Z'\\\"\",\"tags\":{\"MABUsed\":\"Yes\",\"Purpose\":\"Testing\",\"DeleteBy\":\"01-2029\",\"Owner\":\"hiaga\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlcontainer-pstest-rg/providers/Microsoft.RecoveryServices/vaults/sqlcontainer-pstest-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"testvaullt\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A33%3A36.9855088Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.RecoveryServices/vaults/testvaullt\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"vepothir-vault-hana\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A34%3A00.0264488Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vepothir-rg-hana-rama-sub/providers/Microsoft.RecoveryServices/vaults/vepothir-vault-hana\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"akkanase\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A34%3A04.1413999Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vsargMABPortalTestAutomationNOB_group/providers/Microsoft.RecoveryServices/vaults/akkanase/privateEndpointConnections/akkanaseTest.3919549979396882173.backup.b2befeb6-72da-463f-981d-239ddb2d6b7f\",\"name\":\"akkanaseTest.3919549979396882173.backup.b2befeb6-72da-463f-981d-239ddb2d6b7f\",\"type\":\"Microsoft.RecoveryServices/vaults/privateEndpointConnections\",\"location\":\"centraluseuap\",\"properties\":{\"provisioningState\":\"Failed\",\"privateEndpoint\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vsargMABPortalTestAutomationNOB_group/providers/Microsoft.Network/privateEndpoints/akkanaseTest\"},\"groupIds\":[\"AzureBackup\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"None\",\"actionsRequired\":\"None\"}}}],\"privateEndpointStateForBackup\":\"Enabled\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vsargMABPortalTestAutomationNOB_group/providers/Microsoft.RecoveryServices/vaults/akkanase\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"zvtst-1\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A34%3A31.438663Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ztst-\u4E2D\u6587\u540D\u8D44\u6E90\u7EC4/providers/Microsoft.RecoveryServices/vaults/zvtst-1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"cli-ps-testvault\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A34%3A33.4319188Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zubairRG/providers/Microsoft.RecoveryServices/vaults/cli-ps-testvault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clival-remove-test26\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A34%3A35.1384327Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zubairRG/providers/Microsoft.RecoveryServices/vaults/clival-remove-test26\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clival-remove-test27\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A34%3A36.4785538Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zubairRG/providers/Microsoft.RecoveryServices/vaults/clival-remove-test27\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clival-remove-test28\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A34%3A37.8585013Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zubairRG/providers/Microsoft.RecoveryServices/vaults/clival-remove-test28\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clival-remove-test30\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A34%3A39.0004914Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zubairRG/providers/Microsoft.RecoveryServices/vaults/clival-remove-test30\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clival-remove-test31\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A34%3A40.8244919Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zubairRG/providers/Microsoft.RecoveryServices/vaults/clival-remove-test31\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"javaVault0\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A34%3A41.2595814Z'\\\"\",\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"663a02b0-c28f-43a9-b342-0696a84b424e\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":null,\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zubairRG/providers/Microsoft.RecoveryServices/vaults/javaVault0\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"testvsd2\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A34%3A42.6196167Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zubairRG/providers/Microsoft.RecoveryServices/vaults/testvsd2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"zimmut-ccy-2\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A34%3A43.6311784Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zubairRG/providers/Microsoft.RecoveryServices/vaults/zimmut-ccy-2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"zimmut-ccy-3\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A34%3A44.6487146Z'\\\"\",\"tags\":{\"test\":\"\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zubairRG/providers/Microsoft.RecoveryServices/vaults/zimmut-ccy-3\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"zimmut-ccy-4\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A34%3A46.3084337Z'\\\"\",\"tags\":{\"b\":\"c\"},\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"33ceead3-dff3-4f78-b7b0-6bdb0e397a33\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Disabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Disabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zubairRG/providers/Microsoft.RecoveryServices/vaults/zimmut-ccy-4\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"zimmut-ccy-5\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A34%3A47.7252191Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zubairRG/providers/Microsoft.RecoveryServices/vaults/zimmut-ccy-5\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"zimmut-ccy-6\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A34%3A48.8293757Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zubairRG/providers/Microsoft.RecoveryServices/vaults/zimmut-ccy-6\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"zsdtest\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A34%3A49.9215847Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zubairRG/providers/Microsoft.RecoveryServices/vaults/zsdtest\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"ztestsdvault0\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A34%3A51.0038368Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Disabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zubairRG/providers/Microsoft.RecoveryServices/vaults/ztestsdvault0\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"ztestvault1\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A34%3A52.0054435Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zubairRG/providers/Microsoft.RecoveryServices/vaults/ztestvault1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"abcc-copilot-test-recovery\",\"etag\":\"W/\\\"datetime'2025-08-14T09%3A55%3A22.5664171Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abcc-copilot-testing/providers/Microsoft.RecoveryServices/vaults/abcc-copilot-test-recovery\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"network-without-pv\",\"etag\":\"W/\\\"datetime'2025-08-14T09%3A55%3A25.3821741Z'\\\"\",\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"90337ed8-7331-443f-ac8e-e0e138e535f6\",\"type\":\"SystemAssigned, - UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cmk.system/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identityea1\":{\"clientId\":\"72141888-2ff1-4b7c-a17c-7c727f93e2da\",\"principalId\":\"6b5aa7f8-362a-4e49-bd0d-d22e2e10ef09\"}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abcc-copilot-testing/providers/Microsoft.RecoveryServices/vaults/network-without-pv/privateEndpointConnections/dgds.1179189406869345093.backup.ee793a38-aabf-48e5-a4fd-053eed3a132b\",\"name\":\"dgds.1179189406869345093.backup.ee793a38-aabf-48e5-a4fd-053eed3a132b\",\"type\":\"Microsoft.RecoveryServices/vaults/privateEndpointConnections\",\"location\":\"eastus2euap\",\"properties\":{\"provisioningState\":\"Failed\",\"privateEndpoint\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abcc-copilot-testing/providers/Microsoft.Network/privateEndpoints/dgds\"},\"groupIds\":[\"AzureBackup\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"None\",\"actionsRequired\":\"None\"}}}],\"privateEndpointStateForBackup\":\"Enabled\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abcc-copilot-testing/providers/Microsoft.RecoveryServices/vaults/network-without-pv\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"adigupt-ecy-sql-archieve-rg\",\"etag\":\"W/\\\"datetime'2025-08-14T09%3A56%3A51.9999209Z'\\\"\",\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseLRS/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cmkTestIdentity\":{\"clientId\":\"a6ead08c-7be8-4e74-9d75-312c475d4257\",\"principalId\":\"a79557be-ef8d-4c3b-b096-bd4395e1883e\"}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":null,\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adigupt-ecy-rg/providers/Microsoft.RecoveryServices/vaults/adigupt-ecy-sql-archieve-rg\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"akkanaseTest\",\"etag\":\"W/\\\"datetime'2025-08-14T09%3A56%3A52.4287316Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adigupt-ecy-rg/providers/Microsoft.RecoveryServices/vaults/akkanaseTest\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"akkanaseTest123\",\"etag\":\"W/\\\"datetime'2025-08-14T09%3A56%3A53.3093425Z'\\\"\",\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"6c569f0f-ea97-471a-ae1b-3d87ced8c2d5\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adigupt-ecy-rg/providers/Microsoft.RecoveryServices/vaults/akkanaseTest123\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"akkanaseTestfa\",\"etag\":\"W/\\\"datetime'2025-08-14T09%3A56%3A55.2484857Z'\\\"\",\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cmk.system/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identity1\":{\"clientId\":\"73571b84-6f37-4bdd-a60f-1121cb5d31d7\",\"principalId\":\"13a05d1f-eae9-47ae-944f-46270c95d12e\"}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":{\"keyVaultProperties\":{\"keyUri\":\"https://akkanaseeuap.vault.azure.net/keys/akkanaseTest\"},\"kekIdentity\":{\"useSystemAssignedIdentity\":false,\"userAssignedIdentity\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cmk.system/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identity1\"},\"infrastructureEncryption\":\"Disabled\"},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adigupt-ecy-rg/providers/Microsoft.RecoveryServices/vaults/akkanaseTestfa\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"skk\",\"etag\":\"W/\\\"datetime'2025-08-14T09%3A56%3A57.9602875Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adigupt-ecy-rg/providers/Microsoft.RecoveryServices/vaults/skk\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"test\",\"etag\":\"W/\\\"datetime'2025-08-14T09%3A56%3A59.2277276Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adigupt-ecy-rg/providers/Microsoft.RecoveryServices/vaults/test\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"test123withimmutablePrivateEndpoint\",\"etag\":\"W/\\\"datetime'2025-08-14T09%3A57%3A00.5771313Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adigupt-ecy-rg/providers/Microsoft.RecoveryServices/vaults/test123withimmutablePrivateEndpoint\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"testas\",\"etag\":\"W/\\\"datetime'2025-08-14T09%3A57%3A02.0344874Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adigupt-ecy-rg/providers/Microsoft.RecoveryServices/vaults/testas\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"akkanaseGRS1\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A00%3A25.7614404Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/akkanaseGRS1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"akkanaseGRSCRR\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A00%3A54.7636161Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/akkanaseGRSCRR\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"akkanaseLRS1\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A01%3A28.1078705Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/akkanaseLRS1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"akkanaseRedundancyTestm1\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A02%3A14.7452465Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/akkanaseRedundancyTestm1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"akkanaseTest\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A02%3A18.4286177Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/akkanaseTest\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"akkanaseTest32\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A02%3A26.6409856Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/akkanaseTest32\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"akkanaseTestfa\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A02%3A40.3959019Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Disabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/akkanaseTestfa\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"akkanaseTestVault1\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A02%3A45.5616169Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/akkanaseTestVault1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"test\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A04%3A02.2756848Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/test\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"teswt\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A05%3A09.1781024Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/teswt\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"BugbashBVSanityadkayeth\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A05%3A30.0468837Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Disabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AdkayethBugbash/providers/Microsoft.RecoveryServices/vaults/BugbashBVSanityadkayeth\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"deleteMe\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A05%3A34.55989Z'\\\"\",\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cmk.system/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identity1\":{\"clientId\":\"73571b84-6f37-4bdd-a60f-1121cb5d31d7\",\"principalId\":\"13a05d1f-eae9-47ae-944f-46270c95d12e\"}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":{\"keyVaultProperties\":{\"keyUri\":\"https://testabd.vault.azure.net/keys/sdfads\"},\"kekIdentity\":{\"useSystemAssignedIdentity\":false,\"userAssignedIdentity\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cmk.system/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identity1\"},\"infrastructureEncryption\":\"Disabled\"},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AdkayethBugbash/providers/Microsoft.RecoveryServices/vaults/deleteMe\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"sdfsdf\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A05%3A38.9589474Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AdkayethBugbash/providers/Microsoft.RecoveryServices/vaults/sdfsdf\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"test\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A06%3A21.8060142Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AdkayethBugbash/providers/Microsoft.RecoveryServices/vaults/test\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"adkImmutabilityVault\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A06%3A28.1841956Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayethImmutability/providers/Microsoft.RecoveryServices/vaults/adkImmutabilityVault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"dsfsdfs\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A06%3A32.2993767Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayethImmutability/providers/Microsoft.RecoveryServices/vaults/dsfsdfs\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"testVaultCreation234\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A06%3A37.786952Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayethImmutability/providers/Microsoft.RecoveryServices/vaults/testVaultCreation234\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"akkanaseTest123\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A09%3A56.3730561Z'\\\"\",\"tags\":{\"purpose\":\"testing\",\"owner\":\"akkanase\",\"DoNotUse\":\"yes\"},\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"UserAssigned\",\"userAssignedIdentities\":{}},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":{\"keyVaultProperties\":{\"keyUri\":\"https://te1st123123.vault.azure.net/keys/test123sdf\"},\"kekIdentity\":{\"useSystemAssignedIdentity\":false,\"userAssignedIdentity\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_bugbash-ecy-rg_aksbugbashtest1_eastus2euap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/aksbugbashtest1-agentpool\"},\"infrastructureEncryption\":\"Disabled\"},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"PermanentlyDisabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/afstests/providers/Microsoft.RecoveryServices/vaults/akkanaseTest123\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"no-soft-delete\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A15%3A07.769326Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/afstests/providers/Microsoft.RecoveryServices/vaults/no-soft-delete\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"test\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A15%3A19.1666037Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/afstests/providers/Microsoft.RecoveryServices/vaults/test\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"test-sd\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A15%3A53.0675265Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/afstests/providers/Microsoft.RecoveryServices/vaults/test-sd\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"akkanaseIdentity\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A16%3A37.2800812Z'\\\"\",\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"3d3b4fd8-bfb7-4d43-ae8f-96719ed2a8c4\",\"type\":\"SystemAssigned, + Used\":\"yes\",\"Purpose\":\"BVT\",\"Owner\":\"akkanase\",\"DeleteBy\":\"05-2099\"},\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"c168dcfd-9d6e-45ff-bd87-7509d98ab08f\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":{\"keyVaultProperties\":{\"keyUri\":\"https://iaasdescrr-des-keyvault.vault.azure.net/keys/iaasdescrr-des-key\"},\"kekIdentity\":{\"useSystemAssignedIdentity\":true,\"userAssignedIdentity\":null},\"infrastructureEncryption\":\"Enabled\"},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvm.cmk.descrr/providers/Microsoft.RecoveryServices/vaults/iaasvmexistingcrrdesvault1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"iaasvmexistingcrrvault1\",\"etag\":\"W/\\\"datetime'2026-06-17T09%3A46%3A17.0994001Z'\\\"\",\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"bc375f3e-c1c7-4ac3-9271-bd8899c15a64\",\"type\":\"SystemAssigned, + UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cmk.system/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identity1\":{\"clientId\":\"73571b84-6f37-4bdd-a60f-1121cb5d31d7\",\"principalId\":\"13a05d1f-eae9-47ae-944f-46270c95d12e\"},\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagarg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cmk-pstest-msi1\":{\"clientId\":\"cc17dc91-0ffc-41c4-9f4b-b7b61fa9f4e8\",\"principalId\":\"79e6360a-251c-4431-b817-a7fff3ac5c91\"}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvm.existing.crr/providers/Microsoft.RecoveryServices/vaults/iaasvmexistingcrrvault1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"iaasvmsqlworkloadexistingcrrvault\",\"etag\":\"W/\\\"datetime'2025-08-14T15%3A03%3A40.485906Z'\\\"\",\"tags\":{\"MabUsed\":\"Yes\",\"Purpose\":\"BVT\"},\"identity\":{\"type\":\"None\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"moveDetails\":{\"operationId\":\"06275736-66fc-46b6-8369-514c41bb3940\",\"startTimeUtc\":\"2020-09-14T14:05:35.3187945Z\",\"completionTimeUtc\":\"2020-09-15T06:46:17.6623452Z\",\"sourceResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingcrrvault\",\"targetResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.crr/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingcrrvault\"},\"moveState\":\"MoveSucceeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.crr/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingcrrvault\",\"type\":\"microsoft.recoveryservices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"crr111\",\"etag\":\"W/\\\"datetime'2025-08-14T15%3A19%3A39.5150377Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ishan_softDeleteContainerTest/providers/Microsoft.RecoveryServices/vaults/crr111\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"crrMock\",\"etag\":\"W/\\\"datetime'2025-08-14T15%3A19%3A45.1154968Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ishan_softDeleteContainerTest/providers/Microsoft.RecoveryServices/vaults/crrMock\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"vaulttest2\",\"etag\":\"W/\\\"datetime'2025-08-14T15%3A31%3A14.1302029Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ishan_softDeleteContainerTest/providers/Microsoft.RecoveryServices/vaults/vaulttest2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"sometest\",\"etag\":\"W/\\\"datetime'2025-08-14T15%3A31%3A51.5748958Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ishansap/providers/Microsoft.RecoveryServices/vaults/sometest\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"MarsSetup1\",\"etag\":\"W/\\\"datetime'2025-08-14T15%3A40%3A00.0761593Z'\\\"\",\"tags\":{\"Owner\":\"Kalyan\",\"Purpose\":\"Testing\",\"DeleteBy\":\"06-2024\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mars_issue_repro/providers/Microsoft.RecoveryServices/vaults/MarsSetup1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"msi-pstest-vault\",\"etag\":\"W/\\\"datetime'2025-10-26T17%3A47%3A16.5233633Z'\\\"\",\"tags\":{\"MABUsed\":\"Yes\",\"Owner\":\"hiaga\",\"Purpose\":\"testing\",\"DeleteBy\":\"01-2099\"},\"identity\":{\"type\":\"None\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/msi-pstest-rg/providers/Microsoft.RecoveryServices/vaults/msi-pstest-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"pevaultfpnkl\",\"etag\":\"W/\\\"datetime'2026-07-20T10%3A54%3A33.4762456Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pe.new.vaults/providers/Microsoft.RecoveryServices/vaults/pevaultfpnkl\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"pevaultiehvj\",\"etag\":\"W/\\\"datetime'2026-07-20T11%3A01%3A58.5021285Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pe.new.vaults/providers/Microsoft.RecoveryServices/vaults/pevaultiehvj\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"ps-test-runtime-vault\",\"etag\":\"W/\\\"datetime'2025-10-29T05%3A55%3A46.9303882Z'\\\"\",\"tags\":{\"Owner\":\"hiaga\",\"MABUsed\":\"Yes\",\"Purpose\":\"Testing\",\"DeleteBy\":\"06-2099\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps-test-runtime/providers/Microsoft.RecoveryServices/vaults/ps-test-runtime-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"PSTestRSV3e47f7bb\",\"etag\":\"W/\\\"datetime'2025-08-14T15%3A45%3A13.0402048Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PSTestRG3e47f7bb/providers/Microsoft.RecoveryServices/vaults/PSTestRSV3e47f7bb\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"PSTestRSV7dd07fe2\",\"etag\":\"W/\\\"datetime'2025-08-14T15%3A45%3A13.3229644Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PSTestRG7dd07fe2/providers/Microsoft.RecoveryServices/vaults/PSTestRSV7dd07fe2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"PSTestRSVccdb4c89\",\"etag\":\"W/\\\"datetime'2025-08-14T15%3A45%3A13.7301779Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PSTestRGccdb4c8924/providers/Microsoft.RecoveryServices/vaults/PSTestRSVccdb4c89\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"vaultTBD\",\"etag\":\"W/\\\"datetime'2026-04-24T06%3A03%3A26.4164179Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raghavchugh-rg/providers/Microsoft.RecoveryServices/vaults/vaultTBD\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"testccy-vault\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A19%3A17.6714058Z'\\\"\",\"tags\":{\"Owner\":\"Kalyan\",\"Purpose\":\"Testing\",\"DeleteBy\":\"10-2025\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/reregistration-test-rg/providers/Microsoft.RecoveryServices/vaults/testccy-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"vault372\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A10%3A41.7546874Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg372/providers/Microsoft.RecoveryServices/vaults/vault372\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"vault416\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A10%3A45.0781326Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg416/providers/Microsoft.RecoveryServices/vaults/vault416\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"vault525\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A10%3A46.14048Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg525/providers/Microsoft.RecoveryServices/vaults/vault525\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"saphana-clitest-vault\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A10%3A46.9907561Z'\\\"\",\"tags\":{\"Owner\":\"akneema\",\"Purpose\":\"CLITest\",\"MABUsed\":\"Yes\",\"DeleteBy\":\"12-9999\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/saphana-clitest-rg/providers/Microsoft.RecoveryServices/vaults/saphana-clitest-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"saphana-clitestvault-donotuse\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A10%3A49.6959094Z'\\\"\",\"tags\":{\"Owner\":\"akneema\",\"Purpose\":\"Testi\",\"DeleteBy\":\"12-9999\",\"MABUsed\":\"Yes\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/saphana-clitest-rg/providers/Microsoft.RecoveryServices/vaults/saphana-clitestvault-donotuse\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"saphanaworkloadexistingvault\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A10%3A51.333736Z'\\\"\",\"tags\":{\"MABUsed\":\"Yes\",\"Purpose\":\"BVT\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":null,\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/saphanaworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/saphanaworkloadexistingvault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"CopilotTestVault\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A11%3A45.8499245Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/CopilotTestVault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"sarath-ccy-vaultv1\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A12%3A55.6374672Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-ccy-vaultv1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"sarath-copilot-testvault1\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A12%3A58.1196117Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-copilot-testvault1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"sarath-resourcemove-vault\",\"etag\":\"W/\\\"datetime'2023-07-21T07%3A06%3A31.3767489Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"moveDetails\":{\"operationId\":\"e47b5e89-92a4-4f0f-955f-de87c715f2ea\",\"startTimeUtc\":\"2023-07-21T06:51:15.7626678Z\",\"completionTimeUtc\":\"2023-07-21T07:06:31.35924Z\",\"sourceResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-resourcemove-vault\",\"targetResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AdkayethBugbash/providers/Microsoft.RecoveryServices/vaults/sarath-resourcemove-vault\"},\"moveState\":\"InProgress\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-resourcemove-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"sql-clicloudtest-vault\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A32%3A48.1924995Z'\\\"\",\"tags\":{\"Owner\":\"akneema\",\"Purpose\":\"Testing\",\"MABUsed\":\"Yes\",\"DeleteBy\":\"12-9999\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sql-clicloudtest-rg/providers/Microsoft.RecoveryServices/vaults/sql-clicloudtest-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"vault110\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A32%3A50.084204Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sql-clicloudtest-rg/providers/Microsoft.RecoveryServices/vaults/vault110\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"vault579\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A32%3A51.8803266Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sql-clicloudtest-rg/providers/Microsoft.RecoveryServices/vaults/vault579\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"vault600\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A32%3A53.5330786Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sql-clicloudtest-rg/providers/Microsoft.RecoveryServices/vaults/vault600\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"vault670\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A32%3A55.8389673Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sql-clicloudtest-rg/providers/Microsoft.RecoveryServices/vaults/vault670\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"vault885l\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A32%3A58.109011Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sql-clicloudtest-rg/providers/Microsoft.RecoveryServices/vaults/vault885l\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitrack2vault\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A32%3A59.6990383Z'\\\"\",\"tags\":{\"Owner\":\"akneema\",\"Purpose\":\"Testing\",\"MABUsed\":\"Yes\",\"DeleteBy\":\"12-9999\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sql-clitest-rg/providers/Microsoft.RecoveryServices/vaults/clitrack2vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clitrack2vault2\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A33%3A02.4957739Z'\\\"\",\"tags\":{\"Owner\":\"akneema\",\"MABUsed\":\"Yes\",\"DeleteBy\":\"12-9999\",\"Purpose\":\"Testing\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sql-clitest-rg/providers/Microsoft.RecoveryServices/vaults/clitrack2vault2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"sql-clitest-vault\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A33%3A04.3367001Z'\\\"\",\"tags\":{\"Owner\":\"akneema\",\"Purpose\":\"CLITest\",\"MABUsed\":\"Yes\",\"DeleteBy\":\"12-9999\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sql-clitest-rg/providers/Microsoft.RecoveryServices/vaults/sql-clitest-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"sql-clitestvault-donotuse\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A33%3A33.5764617Z'\\\"\",\"tags\":{\"Owner\":\"akneema\",\"Purpose\":\"Testing\",\"DeleteBy\":\"12-9999\",\"MABUsed\":\"Yes\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sql-clitest-rg/providers/Microsoft.RecoveryServices/vaults/sql-clitestvault-donotuse\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"sqlcontainer-pstest-vault\",\"etag\":\"W/\\\"datetime'2025-10-27T09%3A39%3A46.8874547Z'\\\"\",\"tags\":{\"MABUsed\":\"Yes\",\"Purpose\":\"Testing\",\"DeleteBy\":\"01-2029\",\"Owner\":\"hiaga\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlcontainer-pstest-rg/providers/Microsoft.RecoveryServices/vaults/sqlcontainer-pstest-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"testvaullt\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A33%3A36.9855088Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.RecoveryServices/vaults/testvaullt\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"vepothir-vault-hana\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A34%3A00.0264488Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vepothir-rg-hana-rama-sub/providers/Microsoft.RecoveryServices/vaults/vepothir-vault-hana\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"akkanase\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A34%3A04.1413999Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vsargMABPortalTestAutomationNOB_group/providers/Microsoft.RecoveryServices/vaults/akkanase/privateEndpointConnections/akkanaseTest.3919549979396882173.backup.b2befeb6-72da-463f-981d-239ddb2d6b7f\",\"name\":\"akkanaseTest.3919549979396882173.backup.b2befeb6-72da-463f-981d-239ddb2d6b7f\",\"type\":\"Microsoft.RecoveryServices/vaults/privateEndpointConnections\",\"location\":\"centraluseuap\",\"properties\":{\"provisioningState\":\"Failed\",\"privateEndpoint\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vsargMABPortalTestAutomationNOB_group/providers/Microsoft.Network/privateEndpoints/akkanaseTest\"},\"groupIds\":[\"AzureBackup\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"None\",\"actionsRequired\":\"None\"}}}],\"privateEndpointStateForBackup\":\"Enabled\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vsargMABPortalTestAutomationNOB_group/providers/Microsoft.RecoveryServices/vaults/akkanase\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"zvtst-1\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A34%3A31.438663Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ztst-\u4E2D\u6587\u540D\u8D44\u6E90\u7EC4/providers/Microsoft.RecoveryServices/vaults/zvtst-1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"cli-ps-testvault\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A34%3A33.4319188Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zubairRG/providers/Microsoft.RecoveryServices/vaults/cli-ps-testvault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clival-remove-test26\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A34%3A35.1384327Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zubairRG/providers/Microsoft.RecoveryServices/vaults/clival-remove-test26\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clival-remove-test27\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A34%3A36.4785538Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zubairRG/providers/Microsoft.RecoveryServices/vaults/clival-remove-test27\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clival-remove-test28\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A34%3A37.8585013Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zubairRG/providers/Microsoft.RecoveryServices/vaults/clival-remove-test28\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clival-remove-test30\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A34%3A39.0004914Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zubairRG/providers/Microsoft.RecoveryServices/vaults/clival-remove-test30\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"clival-remove-test31\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A34%3A40.8244919Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zubairRG/providers/Microsoft.RecoveryServices/vaults/clival-remove-test31\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"javaVault0\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A34%3A41.2595814Z'\\\"\",\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"663a02b0-c28f-43a9-b342-0696a84b424e\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":null,\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zubairRG/providers/Microsoft.RecoveryServices/vaults/javaVault0\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"testvsd2\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A34%3A42.6196167Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zubairRG/providers/Microsoft.RecoveryServices/vaults/testvsd2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"zimmut-ccy-2\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A34%3A43.6311784Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zubairRG/providers/Microsoft.RecoveryServices/vaults/zimmut-ccy-2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"zimmut-ccy-3\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A34%3A44.6487146Z'\\\"\",\"tags\":{\"test\":\"\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zubairRG/providers/Microsoft.RecoveryServices/vaults/zimmut-ccy-3\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"zimmut-ccy-4\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A34%3A46.3084337Z'\\\"\",\"tags\":{\"b\":\"c\"},\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"33ceead3-dff3-4f78-b7b0-6bdb0e397a33\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Disabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Disabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zubairRG/providers/Microsoft.RecoveryServices/vaults/zimmut-ccy-4\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"zimmut-ccy-5\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A34%3A47.7252191Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zubairRG/providers/Microsoft.RecoveryServices/vaults/zimmut-ccy-5\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"zimmut-ccy-6\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A34%3A48.8293757Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zubairRG/providers/Microsoft.RecoveryServices/vaults/zimmut-ccy-6\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"zsdtest\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A34%3A49.9215847Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zubairRG/providers/Microsoft.RecoveryServices/vaults/zsdtest\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"ztestsdvault0\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A34%3A51.0038368Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Disabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zubairRG/providers/Microsoft.RecoveryServices/vaults/ztestsdvault0\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"ztestvault1\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A34%3A52.0054435Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zubairRG/providers/Microsoft.RecoveryServices/vaults/ztestvault1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"abcc-copilot-test-recovery\",\"etag\":\"W/\\\"datetime'2025-08-14T09%3A55%3A22.5664171Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abcc-copilot-testing/providers/Microsoft.RecoveryServices/vaults/abcc-copilot-test-recovery\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"network-without-pv\",\"etag\":\"W/\\\"datetime'2025-08-14T09%3A55%3A25.3821741Z'\\\"\",\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"90337ed8-7331-443f-ac8e-e0e138e535f6\",\"type\":\"SystemAssigned, + UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cmk.system/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identityea1\":{\"clientId\":\"72141888-2ff1-4b7c-a17c-7c727f93e2da\",\"principalId\":\"6b5aa7f8-362a-4e49-bd0d-d22e2e10ef09\"}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abcc-copilot-testing/providers/Microsoft.RecoveryServices/vaults/network-without-pv/privateEndpointConnections/dgds.1179189406869345093.backup.ee793a38-aabf-48e5-a4fd-053eed3a132b\",\"name\":\"dgds.1179189406869345093.backup.ee793a38-aabf-48e5-a4fd-053eed3a132b\",\"type\":\"Microsoft.RecoveryServices/vaults/privateEndpointConnections\",\"location\":\"eastus2euap\",\"properties\":{\"provisioningState\":\"Failed\",\"privateEndpoint\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abcc-copilot-testing/providers/Microsoft.Network/privateEndpoints/dgds\"},\"groupIds\":[\"AzureBackup\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"None\",\"actionsRequired\":\"None\"}}}],\"privateEndpointStateForBackup\":\"Enabled\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abcc-copilot-testing/providers/Microsoft.RecoveryServices/vaults/network-without-pv\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"abc-droip\",\"etag\":\"W/\\\"datetime'2026-01-28T10%3A24%3A08.9379278Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adigupt-ecy-rg/providers/Microsoft.RecoveryServices/vaults/abc-droip\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"adigupt-ctr-bug-bash-source-vault\",\"etag\":\"W/\\\"datetime'2026-06-04T13%3A24%3A27.7063548Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adigupt-ecy-rg/providers/Microsoft.RecoveryServices/vaults/adigupt-ctr-bug-bash-source-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"adigupt-ecy-rsv-02\",\"etag\":\"W/\\\"datetime'2026-05-14T11%3A04%3A31.455836Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adigupt-ecy-rg/providers/Microsoft.RecoveryServices/vaults/adigupt-ecy-rsv-02\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"adigupt-ecy-sql-archieve-rg\",\"etag\":\"W/\\\"datetime'2026-06-24T14%3A17%3A42.3392956Z'\\\"\",\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseLRS/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cmkTestIdentity\":{\"clientId\":\"a6ead08c-7be8-4e74-9d75-312c475d4257\",\"principalId\":\"a79557be-ef8d-4c3b-b096-bd4395e1883e\"}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":null,\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adigupt-ecy-rg/providers/Microsoft.RecoveryServices/vaults/adigupt-ecy-sql-archieve-rg\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"akkanaseTest\",\"etag\":\"W/\\\"datetime'2025-08-14T09%3A56%3A52.4287316Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adigupt-ecy-rg/providers/Microsoft.RecoveryServices/vaults/akkanaseTest\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"akkanaseTest123\",\"etag\":\"W/\\\"datetime'2025-08-14T09%3A56%3A53.3093425Z'\\\"\",\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"6c569f0f-ea97-471a-ae1b-3d87ced8c2d5\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adigupt-ecy-rg/providers/Microsoft.RecoveryServices/vaults/akkanaseTest123\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"akkanaseTestfa\",\"etag\":\"W/\\\"datetime'2025-08-14T09%3A56%3A55.2484857Z'\\\"\",\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cmk.system/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identity1\":{\"clientId\":\"73571b84-6f37-4bdd-a60f-1121cb5d31d7\",\"principalId\":\"13a05d1f-eae9-47ae-944f-46270c95d12e\"}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":{\"keyVaultProperties\":{\"keyUri\":\"https://akkanaseeuap.vault.azure.net/keys/akkanaseTest\"},\"kekIdentity\":{\"useSystemAssignedIdentity\":false,\"userAssignedIdentity\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cmk.system/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identity1\"},\"infrastructureEncryption\":\"Disabled\"},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adigupt-ecy-rg/providers/Microsoft.RecoveryServices/vaults/akkanaseTestfa\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"bulk-restore-grs\",\"etag\":\"W/\\\"datetime'2026-04-02T10%3A15%3A13.756977Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adigupt-ecy-rg/providers/Microsoft.RecoveryServices/vaults/bulk-restore-grs\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"ctr-ecy-restore-vault\",\"etag\":\"W/\\\"datetime'2026-05-11T19%3A20%3A33.997746Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adigupt-ecy-rg/providers/Microsoft.RecoveryServices/vaults/ctr-ecy-restore-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"ctr-image-vm-testing\",\"etag\":\"W/\\\"datetime'2026-05-14T10%3A28%3A14.1669259Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adigupt-ecy-rg/providers/Microsoft.RecoveryServices/vaults/ctr-image-vm-testing\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"skk\",\"etag\":\"W/\\\"datetime'2025-08-14T09%3A56%3A57.9602875Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adigupt-ecy-rg/providers/Microsoft.RecoveryServices/vaults/skk\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"test\",\"etag\":\"W/\\\"datetime'2025-08-14T09%3A56%3A59.2277276Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adigupt-ecy-rg/providers/Microsoft.RecoveryServices/vaults/test\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"test123withimmutablePrivateEndpoint\",\"etag\":\"W/\\\"datetime'2025-08-14T09%3A57%3A00.5771313Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adigupt-ecy-rg/providers/Microsoft.RecoveryServices/vaults/test123withimmutablePrivateEndpoint\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"testas\",\"etag\":\"W/\\\"datetime'2025-08-14T09%3A57%3A02.0344874Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adigupt-ecy-rg/providers/Microsoft.RecoveryServices/vaults/testas\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"akkanaseGRS1\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A00%3A25.7614404Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/akkanaseGRS1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"akkanaseGRSCRR\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A00%3A54.7636161Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/akkanaseGRSCRR\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"akkanaseLRS1\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A01%3A28.1078705Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/akkanaseLRS1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"akkanaseRedundancyTestm1\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A02%3A14.7452465Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/akkanaseRedundancyTestm1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"akkanaseTest\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A02%3A18.4286177Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/akkanaseTest\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"akkanaseTest32\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A02%3A26.6409856Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/akkanaseTest32\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"akkanaseTestfa\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A02%3A40.3959019Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Disabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/akkanaseTestfa\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"akkanaseTestVault1\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A02%3A45.5616169Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/akkanaseTestVault1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"test\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A04%3A02.2756848Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/test\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"teswt\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A05%3A09.1781024Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/teswt\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"BugbashBVSanityadkayeth\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A05%3A30.0468837Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Disabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AdkayethBugbash/providers/Microsoft.RecoveryServices/vaults/BugbashBVSanityadkayeth\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"deleteMe\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A05%3A34.55989Z'\\\"\",\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cmk.system/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identity1\":{\"clientId\":\"73571b84-6f37-4bdd-a60f-1121cb5d31d7\",\"principalId\":\"13a05d1f-eae9-47ae-944f-46270c95d12e\"}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":{\"keyVaultProperties\":{\"keyUri\":\"https://testabd.vault.azure.net/keys/sdfads\"},\"kekIdentity\":{\"useSystemAssignedIdentity\":false,\"userAssignedIdentity\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cmk.system/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identity1\"},\"infrastructureEncryption\":\"Disabled\"},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AdkayethBugbash/providers/Microsoft.RecoveryServices/vaults/deleteMe\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"sdfsdf\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A05%3A38.9589474Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AdkayethBugbash/providers/Microsoft.RecoveryServices/vaults/sdfsdf\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"test\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A06%3A21.8060142Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AdkayethBugbash/providers/Microsoft.RecoveryServices/vaults/test\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"adkImmutabilityVault\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A06%3A28.1841956Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayethImmutability/providers/Microsoft.RecoveryServices/vaults/adkImmutabilityVault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"dsfsdfs\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A06%3A32.2993767Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayethImmutability/providers/Microsoft.RecoveryServices/vaults/dsfsdfs\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"testVaultCreation234\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A06%3A37.786952Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayethImmutability/providers/Microsoft.RecoveryServices/vaults/testVaultCreation234\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"akkanaseTest123\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A09%3A56.3730561Z'\\\"\",\"tags\":{\"purpose\":\"testing\",\"owner\":\"akkanase\",\"DoNotUse\":\"yes\"},\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"UserAssigned\",\"userAssignedIdentities\":{}},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":{\"keyVaultProperties\":{\"keyUri\":\"https://te1st123123.vault.azure.net/keys/test123sdf\"},\"kekIdentity\":{\"useSystemAssignedIdentity\":false,\"userAssignedIdentity\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_bugbash-ecy-rg_aksbugbashtest1_eastus2euap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/aksbugbashtest1-agentpool\"},\"infrastructureEncryption\":\"Disabled\"},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"PermanentlyDisabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/afstests/providers/Microsoft.RecoveryServices/vaults/akkanaseTest123\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"no-soft-delete\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A15%3A07.769326Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/afstests/providers/Microsoft.RecoveryServices/vaults/no-soft-delete\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"test\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A15%3A19.1666037Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/afstests/providers/Microsoft.RecoveryServices/vaults/test\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"test-sd\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A15%3A53.0675265Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/afstests/providers/Microsoft.RecoveryServices/vaults/test-sd\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"akkanaseIdentity\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A16%3A37.2800812Z'\\\"\",\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"3d3b4fd8-bfb7-4d43-ae8f-96719ed2a8c4\",\"type\":\"SystemAssigned, UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cmk.system/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identity2\":{\"clientId\":\"c105dcb0-b19f-4d55-adba-749e0037c42e\",\"principalId\":\"ab44c749-c400-4689-bcd1-128d7ecefd94\"}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanase/providers/Microsoft.RecoveryServices/vaults/akkanaseIdentity\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"akkanaseTest\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A16%3A58.458163Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanase/providers/Microsoft.RecoveryServices/vaults/akkanaseTest\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"akkanaseTest321\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A16%3A59.6687675Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"50d31b4c-e6e1-4537-af78-aac55dddb7df\",\"type\":\"SystemAssigned, UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cmk.system/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identity1\":{\"clientId\":\"73571b84-6f37-4bdd-a60f-1121cb5d31d7\",\"principalId\":\"13a05d1f-eae9-47ae-944f-46270c95d12e\"}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":{\"keyVaultProperties\":{\"keyUri\":\"https://akkanaseeuap.vault.azure.net/keys/akkanaseTest\"},\"kekIdentity\":{\"useSystemAssignedIdentity\":false,\"userAssignedIdentity\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cmk.system/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identity1\"},\"infrastructureEncryption\":\"Enabled\"},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanase/providers/Microsoft.RecoveryServices/vaults/akkanaseTest321\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"akkanaseTest32123\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A17%3A01.083306Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanase/providers/Microsoft.RecoveryServices/vaults/akkanaseTest32123\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"akkanase-diskaccess\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A23%3A50.298769Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanase-diskaccess/providers/Microsoft.RecoveryServices/vaults/akkanase-diskaccess\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"akkanaseTest3281\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A24%3A16.9770603Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanase-diskaccess/providers/Microsoft.RecoveryServices/vaults/akkanaseTest3281\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"akkanase29402227\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A17%3A13.1863539Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseAFSTest/providers/Microsoft.RecoveryServices/vaults/akkanase29402227\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"zrs123\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A19%3A33.7594624Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseAFSTest/providers/Microsoft.RecoveryServices/vaults/zrs123\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"test123\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A21%3A59.7608232Z'\\\"\",\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"f709b73a-af21-409a-89ad-4f2ce95512ec\",\"type\":\"SystemAssigned, UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cmk.system/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identity1\":{\"clientId\":\"73571b84-6f37-4bdd-a60f-1121cb5d31d7\",\"principalId\":\"13a05d1f-eae9-47ae-944f-46270c95d12e\"}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseCcyGrs/providers/Microsoft.RecoveryServices/vaults/test123\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"akkanaseTest\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A23%3A30.5262182Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cmk.system/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identity2\":{\"clientId\":\"c105dcb0-b19f-4d55-adba-749e0037c42e\",\"principalId\":\"ab44c749-c400-4689-bcd1-128d7ecefd94\"}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":{\"keyVaultProperties\":{\"keyUri\":\"https://akkanaseeuap.vault.azure.net/keys/akkanaseTest\"},\"kekIdentity\":{\"useSystemAssignedIdentity\":false,\"userAssignedIdentity\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cmk.system/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identity2\"},\"infrastructureEncryption\":\"Disabled\"},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseCMK/providers/Microsoft.RecoveryServices/vaults/akkanaseTest\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"akkanaseCsbEcy\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A23%3A41.6525892Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseCSB/providers/Microsoft.RecoveryServices/vaults/akkanaseCsbEcy\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"akkanaseGRSVault1\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A24%3A46.6675772Z'\\\"\",\"tags\":{\"Purpose\":\"Testing\",\"Owner\":\"akkanase\",\"Mab @@ -2839,18 +3446,23 @@ interactions: Used\":\"Yes\",\"DeleteBy\":\"01-2025\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"PermanentlyDisabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseGRSVault/providers/Microsoft.RecoveryServices/vaults/akkanaseGRSVault2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"rsvjan21\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A24%3A48.2460689Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseGRSVault/providers/Microsoft.RecoveryServices/vaults/rsvjan21\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"yrdysn\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A24%3A49.1007926Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseGRSVault/providers/Microsoft.RecoveryServices/vaults/yrdysn\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"akkanaseEUS2\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A24%3A50.1844437Z'\\\"\",\"tags\":{\"Purpose\":\"testing\",\"Owner\":\"akkanase\",\"DeleteBy\":\"01-2023\",\"Mab Used\":\"yes\"},\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"3681e1f5-05a6-4f6d-8037-c0b37723f703\",\"type\":\"SystemAssigned, UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/hiagaczr-rg/providers/microsoft.managedidentity/userassignedidentities/hiagauseridentity2\":{\"clientId\":\"6059a064-efa4-4f21-a52a-df467ddd1e60\",\"principalId\":\"a399daa0-490c-4e1c-b7ca-2f4c8175ad9b\"}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"PermanentlyDisabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseIaasVMNew/providers/Microsoft.RecoveryServices/vaults/akkanaseEUS2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"akkanaseTest1\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A26%3A26.7083458Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseTest/providers/Microsoft.RecoveryServices/vaults/akkanaseTest1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"akkanaseTest123\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A26%3A27.8799686Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseTest/providers/Microsoft.RecoveryServices/vaults/akkanaseTest123\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"akkanaseTest321\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A26%3A32.3155403Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseTest/providers/Microsoft.RecoveryServices/vaults/akkanaseTest321\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"akkanaseTestfa\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A26%3A34.7907428Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseTest/providers/Microsoft.RecoveryServices/vaults/akkanaseTestfa\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"akkanaseTestLRS\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A26%3A38.1696548Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseTest/providers/Microsoft.RecoveryServices/vaults/akkanaseTestLRS\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"akkanaseZRSVault\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A34%3A04.9419388Z'\\\"\",\"tags\":{\"Purpose\":\"Testing\",\"Owner\":\"akkanase\",\"Mab - Used\":\"yes\",\"DeleteBy\":\"01-2025\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseZRS/providers/Microsoft.RecoveryServices/vaults/akkanaseZRSVault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"ankurResourceGuardVaultTest1\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A43%3A28.248523Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurResourceGuard1/providers/Microsoft.RecoveryServices/vaults/ankurResourceGuardVaultTest1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"testrsv177\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A43%3A32.030305Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurResourceGuard1/providers/Microsoft.RecoveryServices/vaults/testrsv177\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"demoRSVault-MUA\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A50%3A38.2961298Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurRG137/providers/Microsoft.RecoveryServices/vaults/demoRSVault-MUA\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultnhx5pwynrq4\",\"etag\":\"W/\\\"datetime'2025-09-29T12%3A27%3A03.5527944Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest.rgs72kxt6oxawzkrnuayeszk3nzt75pqs6bkfkuuremjpjmwokluo/providers/Microsoft.RecoveryServices/vaults/clitest-vaultnhx5pwynrq4\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultqhdmhsti6s3\",\"etag\":\"W/\\\"datetime'2025-10-27T08%3A19%3A35.4594676Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_aztxgovpaky74kjushdo4eko53dmg5guohs6b45kkcrnhyhqjlqsi/providers/Microsoft.RecoveryServices/vaults/clitest-vaultqhdmhsti6s3\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaulteeyvtppnlrq\",\"etag\":\"W/\\\"datetime'2025-10-27T09%3A05%3A44.914843Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_dr3gb3wzru/providers/Microsoft.RecoveryServices/vaults/clitest-vaulteeyvtppnlrq\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaulth4kh2lwo3ix\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A06%3A42.5748541Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_h25oswkkpz/providers/Microsoft.RecoveryServices/vaults/clitest-vaulth4kh2lwo3ix\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultvw725vnz6nk\",\"etag\":\"W/\\\"datetime'2025-10-27T09%3A13%3A16.4509471Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_hb7icahwjdjivpzi766cu4tb46d7seb7aspu5lppmqihithjzirxi/providers/Microsoft.RecoveryServices/vaults/clitest-vaultvw725vnz6nk\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vault000004\",\"etag\":\"W/\\\"datetime'2025-10-27T13%3A42%3A03.3640265Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000004\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vault000002\",\"etag\":\"W/\\\"datetime'2025-10-27T13%3A55%3A48.8804889Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Disabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Disabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vault000003\",\"etag\":\"W/\\\"datetime'2025-10-27T13%3A41%3A57.1007886Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vault7mxxlft3ltp\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A11%3A09.2250502Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_jq7g3b3af4/providers/Microsoft.RecoveryServices/vaults/clitest-vault7mxxlft3ltp\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultfnn4wvrjbee\",\"etag\":\"W/\\\"datetime'2025-10-27T08%3A24%3A38.797138Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_sip4ch76sj/providers/Microsoft.RecoveryServices/vaults/clitest-vaultfnn4wvrjbee\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultehcljeqp5b7\",\"etag\":\"W/\\\"datetime'2025-10-27T10%3A02%3A21.1908354Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_teaunbt7zh4aajutojc7bkqfmrov7uvngaxfqqpfmjtoui52lu4qx/providers/Microsoft.RecoveryServices/vaults/clitest-vaultehcljeqp5b7\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vault3jxvjdveygp\",\"etag\":\"W/\\\"datetime'2025-10-27T09%3A11%3A27.310114Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_znqbkpa6fr/providers/Microsoft.RecoveryServices/vaults/clitest-vault3jxvjdveygp\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"ztestdeletethisvault1\",\"etag\":\"W/\\\"datetime'2025-10-24T09%3A29%3A40.2343797Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_randomtestingrg/providers/Microsoft.RecoveryServices/vaults/ztestdeletethisvault1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vault-secondary-donotuse\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A55%3A00.2608233Z'\\\"\",\"tags\":{\"Owner\":\"akneema\",\"Purpose\":\"Testing\",\"MABUsed\":\"Yes\",\"DeleteBy\":\"12-9999\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-rg-donotuse/providers/Microsoft.RecoveryServices/vaults/clitest-vault-secondary-donotuse\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vault65k4kh6ktaf\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A39%3A40.8768142Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2bg3cbkaqf/providers/Microsoft.RecoveryServices/vaults/clitest-vault65k4kh6ktaf\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultqais36fqgin\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A39%3A42.8221878Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2rgxr5gfjtccsjn6gbc7xrit6gy34fqc5uqxlfdec5xe4uz3s4smat2wrjya6b5go/providers/Microsoft.RecoveryServices/vaults/clitest-vaultqais36fqgin\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultqkax5oaneau\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A39%3A44.5386356Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg33op5uzqbz/providers/Microsoft.RecoveryServices/vaults/clitest-vaultqkax5oaneau\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultxwdk54obumt\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A39%3A44.916514Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3hcuks3vwd/providers/Microsoft.RecoveryServices/vaults/clitest-vaultxwdk54obumt\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultitnv4jgu6vn\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A40%3A21.5107452Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3qtvuvtx6x/providers/Microsoft.RecoveryServices/vaults/clitest-vaultitnv4jgu6vn\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultjvh7pnr66io\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A40%3A22.8803048Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3qzvnzmjgoqkfdzre37jgukbtm5okudm3yfcn54wf5i2yrx4cais2lbxc6wqvxxu6/providers/Microsoft.RecoveryServices/vaults/clitest-vaultjvh7pnr66io\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vault3ollswe2psc\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A40%3A25.0416098Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg47mqv43kwb/providers/Microsoft.RecoveryServices/vaults/clitest-vault3ollswe2psc\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultj6d6o7l2nfq\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A40%3A26.6680868Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg4c4fr4iol2n6asyvyaxaso4szgowrjlcjwbgubohhp64z473hzayqx32berwezqee/providers/Microsoft.RecoveryServices/vaults/clitest-vaultj6d6o7l2nfq\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultohm6lktembg\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A40%3A29.9050459Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg4fw5qlufuw/providers/Microsoft.RecoveryServices/vaults/clitest-vaultohm6lktembg\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaulteutiggudzz6\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A40%3A32.5581924Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg4jep3kixoy/providers/Microsoft.RecoveryServices/vaults/clitest-vaulteutiggudzz6\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vault37ufk5r5ozg\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A40%3A33.1899895Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg4ur4lf4qwyolb5zyvnr3fmneudycxpyz7lsrq5klhujpoae6py7dbj4eiexp5ivf5/providers/Microsoft.RecoveryServices/vaults/clitest-vault37ufk5r5ozg\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vault63spw23tqen\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A40%3A34.7414909Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg5asmzai6ku/providers/Microsoft.RecoveryServices/vaults/clitest-vault63spw23tqen\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultwh7nmgzm5ep\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A40%3A50.0495682Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg5xu7543w7spf42za2mn4dzqpwexmclj4pgs55ja65m5lc4yaeha3elbb2ubqqewxy/providers/Microsoft.RecoveryServices/vaults/clitest-vaultwh7nmgzm5ep\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaulttehwrzeu73p\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A40%3A51.2681763Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg67g2vnygkjgrt2q54nrhpkdet4c6sxg4ndofu2eqgh4evrzthbjjiilycbkzvzg5z/providers/Microsoft.RecoveryServices/vaults/clitest-vaulttehwrzeu73p\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultamwfm52xmeh\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A40%3A51.983946Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg6dy534jexa/providers/Microsoft.RecoveryServices/vaults/clitest-vaultamwfm52xmeh\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultwoccjwthpzb\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A40%3A52.4847857Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg6khejhxutb/providers/Microsoft.RecoveryServices/vaults/clitest-vaultwoccjwthpzb\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vault7ksvlz5ry57\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A40%3A52.7556987Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg6msouzoxmw/providers/Microsoft.RecoveryServices/vaults/clitest-vault7ksvlz5ry57\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultbkcpk2o3blt\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A42%3A03.6808911Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg723a4eqpp2uszzujz4obkfangjatn3tl2m7gmicgvccigesqfl5sfhdzjjve372pv/providers/Microsoft.RecoveryServices/vaults/clitest-vaultbkcpk2o3blt\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultbswg24c7zxseziyblsud62mqnymhkup6swdf7\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A42%3A05.3983388Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg72aqcrw7d5wtheix7gspdnmgwp37ufhzvf646dkfeuqvftbzxmwex4xiujj43tj6i/providers/Microsoft.RecoveryServices/vaults/clitest-vaultbswg24c7zxseziyblsud62mqnymhkup6swdf7\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultfo3iuqmr36l\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A42%3A06.6309431Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg72aqcrw7d5wtheix7gspdnmgwp37ufhzvf646dkfeuqvftbzxmwex4xiujj43tj6i/providers/Microsoft.RecoveryServices/vaults/clitest-vaultfo3iuqmr36l\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultjps26s3vkro\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A42%3A08.7792525Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg7cucbizzd5/providers/Microsoft.RecoveryServices/vaults/clitest-vaultjps26s3vkro\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultpgk5xlaa4z2\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A42%3A15.5960596Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg7ytcrgwbjp/providers/Microsoft.RecoveryServices/vaults/clitest-vaultpgk5xlaa4z2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vault5zxsqzdqxku\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A42%3A16.7087016Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg7yyrnbsvcm/providers/Microsoft.RecoveryServices/vaults/clitest-vault5zxsqzdqxku\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultnap3nzblec7\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A42%3A17.9123145Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg7zxbmjfftz/providers/Microsoft.RecoveryServices/vaults/clitest-vaultnap3nzblec7\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultmkblhfrsq4m\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A42%3A19.8516909Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgahf3tgqwv7/providers/Microsoft.RecoveryServices/vaults/clitest-vaultmkblhfrsq4m\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultjyb3sbzr2jr\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A42%3A20.9683317Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgahgpmi2cpzcq5jtv7lqwisjxw35nb4sroxt7rar4hntibhfsf6eim3wiubit4qsfc/providers/Microsoft.RecoveryServices/vaults/clitest-vaultjyb3sbzr2jr\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultpguf7ztztux\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A42%3A22.8697204Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgahlurnanmm/providers/Microsoft.RecoveryServices/vaults/clitest-vaultpguf7ztztux\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultt4wqn7jdgmi\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A42%3A26.2836226Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgart6fnulvh4d5iuhwvyfovhufdslruiv5afcbfdllnhqw4g73u7zzh2aagqy73hru/providers/Microsoft.RecoveryServices/vaults/clitest-vaultt4wqn7jdgmi\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultkvhtussu5rz\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A42%3A27.2992962Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgayeccgm3vp/providers/Microsoft.RecoveryServices/vaults/clitest-vaultkvhtussu5rz\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultbiexkxvg4zy\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A44%3A06.1115302Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbq3yof5nlzlywpgn6di7eq4b7igsxczzlqqan5f2ye6txjoh3xkrqqngsrcz3voen/providers/Microsoft.RecoveryServices/vaults/clitest-vaultbiexkxvg4zy\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vault75p46maplcs\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A44%3A29.759921Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbs4r3blwcg/providers/Microsoft.RecoveryServices/vaults/clitest-vault75p46maplcs\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vault57v3kafwdfm\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A45%3A30.7882834Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbsz32pqjpl/providers/Microsoft.RecoveryServices/vaults/clitest-vault57v3kafwdfm\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaulttgqhxrt7usf\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A45%3A32.4167601Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbtymrer5lybiney2hjf63wiv6m4bfy4bx3frfvomov7zwmydhwdjby4q2e2qom2yq/providers/Microsoft.RecoveryServices/vaults/clitest-vaulttgqhxrt7usf\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultml7cvf2azby\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A45%3A33.323468Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbztq7mogmw/providers/Microsoft.RecoveryServices/vaults/clitest-vaultml7cvf2azby\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultlc3ffj5mvbm\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A45%3A45.026702Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgcef4mvmbhp/providers/Microsoft.RecoveryServices/vaults/clitest-vaultlc3ffj5mvbm\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vault6bsy3xb4aap\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A45%3A50.4849464Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgcuoiullr4besuyzqgagrmj3ep32oq3mbzazzy6l7c5vmlmjagz2zhzesozayda2wh/providers/Microsoft.RecoveryServices/vaults/clitest-vault6bsy3xb4aap\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultbe4dlgt2lpm\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A45%3A52.3793363Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgd2nvyrskhg/providers/Microsoft.RecoveryServices/vaults/clitest-vaultbe4dlgt2lpm\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultxmhic53jxen\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A46%3A05.214208Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgdluc5oguoz3myl5qe6osadsqvbncntorflnndxdzo2hvzrw26u2pkalhbdjmwbtqv/providers/Microsoft.RecoveryServices/vaults/clitest-vaultxmhic53jxen\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultxbfk5qjts6l\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A46%3A06.8326872Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgdndsqcnmop7g4vi7rsk6ybemgegz4dttpsnss2l2qtviqz3657d7olez2js32iugz/providers/Microsoft.RecoveryServices/vaults/clitest-vaultxbfk5qjts6l\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vault2tdcuvjpity\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A46%3A09.1169525Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgds4de4zrjy/providers/Microsoft.RecoveryServices/vaults/clitest-vault2tdcuvjpity\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultjr4jmsi2eiu\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A46%3A09.6967664Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgds7bi4bu3bc5pqz5jrwlagohwyea7bkuevt7ijgyei254vdr4ti6upa6mnijpjfbk/providers/Microsoft.RecoveryServices/vaults/clitest-vaultjr4jmsi2eiu\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultafe2sdm47xz\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A46%3A10.8983794Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgdt7oy3fzyp/providers/Microsoft.RecoveryServices/vaults/clitest-vaultafe2sdm47xz\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vault5vsucjbzarw\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A46%3A19.4386323Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeieca3mc5v/providers/Microsoft.RecoveryServices/vaults/clitest-vault5vsucjbzarw\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaulttnc5n5ijuzz\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A46%3A20.365335Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgesi4bpmzxr/providers/Microsoft.RecoveryServices/vaults/clitest-vaulttnc5n5ijuzz\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultjd6w7jfv2bq\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A46%3A21.9488249Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgf5gzj463lafuhlg2nwntquakqgbbbdfavyz5tsijqmsfk3jzsr7w73xoq76y23nti/providers/Microsoft.RecoveryServices/vaults/clitest-vaultjd6w7jfv2bq\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultbhxymvkehbl\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A46%3A22.6885869Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgfdjr374owj/providers/Microsoft.RecoveryServices/vaults/clitest-vaultbhxymvkehbl\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vault7mubxheaf3t\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A46%3A23.6022932Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgfhjnqlf6uz/providers/Microsoft.RecoveryServices/vaults/clitest-vault7mubxheaf3t\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultuvwpvrw3pnw\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A46%3A27.0311904Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgfruuuncw2w/providers/Microsoft.RecoveryServices/vaults/clitest-vaultuvwpvrw3pnw\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultxgqipdoaude\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A46%3A29.2034914Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgfyqr2f73ss/providers/Microsoft.RecoveryServices/vaults/clitest-vaultxgqipdoaude\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultav3xtoaj6no\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A46%3A31.4637644Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rggfnqctz2a6/providers/Microsoft.RecoveryServices/vaults/clitest-vaultav3xtoaj6no\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultxizu3qwzhlx\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A46%3A31.831646Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgggjpg3yrx5i7uedvs7c3n56a2x76yidyn6bnm3ahicnobaddlewciqoi5zgum4n37/providers/Microsoft.RecoveryServices/vaults/clitest-vaultxizu3qwzhlx\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultrdlzxapz4cw\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A46%3A33.4581227Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rggytctduurd7k6lrkr3nd2ev5sndsbb4vvt6leok4hm7qrxql4ajdcmtjornomcrre/providers/Microsoft.RecoveryServices/vaults/clitest-vaultrdlzxapz4cw\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vault4fwdzxsa4sr\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A46%3A34.6587366Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgh3fp4bjhml/providers/Microsoft.RecoveryServices/vaults/clitest-vault4fwdzxsa4sr\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultksstyz2bqji\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A46%3A34.9546414Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rghlhm5ss2i6rdj2lmudim5sy6muwxfzukjosntesn2sgx5slwj6s4wpcej4cqvre3x/providers/Microsoft.RecoveryServices/vaults/clitest-vaultksstyz2bqji\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultthw3lxxufr2\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A46%3A35.8033694Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rghr3j7i5g5jneijnggfb55qpmmu7oqklu6alfsyqq2k6kc3krzie5odex7fr7nfyct/providers/Microsoft.RecoveryServices/vaults/clitest-vaultthw3lxxufr2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultymggrxlukmk\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A46%3A36.4471614Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgi4uuuikc5s/providers/Microsoft.RecoveryServices/vaults/clitest-vaultymggrxlukmk\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaulthl6cy6qtdor\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A46%3A37.9316839Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgibnxofmo52/providers/Microsoft.RecoveryServices/vaults/clitest-vaulthl6cy6qtdor\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultblftka53s2w\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A47%3A46.3926542Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgiveu7vegifoae36zzhsg62h2jvryowumipeibzhpovnik73edhcj4o6z5gzh6ti34/providers/Microsoft.RecoveryServices/vaults/clitest-vaultblftka53s2w\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vault3nx74hynsys\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A47%3A48.5999406Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgj6ogktzcy4/providers/Microsoft.RecoveryServices/vaults/clitest-vault3nx74hynsys\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultlsyuc4oarrt\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A47%3A50.7732383Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjavqfa3dci/providers/Microsoft.RecoveryServices/vaults/clitest-vaultlsyuc4oarrt\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultcd5mryy3pq6\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A47%3A51.8328967Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjo7vmp22fu/providers/Microsoft.RecoveryServices/vaults/clitest-vaultcd5mryy3pq6\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultxdf36kzh2bh\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A47%3A52.862563Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjvjqgbheja/providers/Microsoft.RecoveryServices/vaults/clitest-vaultxdf36kzh2bh\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultw6sghl7fg72\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A47%3A55.6706556Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgk6my5qsud3ol2slc4j3opiflifcabnc5esbwkj5laxsk3kzrlldgwp6t7twldsc4x/providers/Microsoft.RecoveryServices/vaults/clitest-vaultw6sghl7fg72\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultlpsecrhuz4g\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A47%3A56.5013872Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgkbrinbaopymg3b4u5ksyvne6gywtbb4ady3xil2elsd7nhnhizsm2otrewq7ukze6/providers/Microsoft.RecoveryServices/vaults/clitest-vaultlpsecrhuz4g\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultzjrvaz2temu\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A47%3A59.8842938Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgkjrciekihr/providers/Microsoft.RecoveryServices/vaults/clitest-vaultzjrvaz2temu\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaulttmltqx6ujug\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A48%3A00.4551092Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgks3deugit6/providers/Microsoft.RecoveryServices/vaults/clitest-vaulttmltqx6ujug\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultdd2cms4klvc\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A48%3A02.4284715Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgl3nkztpsosh6kkbdabsmrzlfkuxleazdzuxvqq4fd5zc3vah3y7bgahdxxbuqmvwy/providers/Microsoft.RecoveryServices/vaults/clitest-vaultdd2cms4klvc\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultyzc2qr7oz2r\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A48%3A03.2182165Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgl6dfqhvffv/providers/Microsoft.RecoveryServices/vaults/clitest-vaultyzc2qr7oz2r\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vault5bx3ugmgygp\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A48%3A04.0439498Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgl6wnxfiybx/providers/Microsoft.RecoveryServices/vaults/clitest-vault5bx3ugmgygp\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultozj3mmhyqql\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A48%3A05.3525267Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgln73szhokgzbkwczfj6forrlqvu23avn7ytfrpxt7tt4driu7dswlv5bk34lzcm5q/providers/Microsoft.RecoveryServices/vaults/clitest-vaultozj3mmhyqql\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultbk6mjqjxmhn\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A48%3A06.6161186Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgltqppz5ss5ekly4jigzo2eq2oklpd6ibtlpvbkshpilztkq64jvoejrywwir6woce/providers/Microsoft.RecoveryServices/vaults/clitest-vaultbk6mjqjxmhn\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultimh5b3ekl6v\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A48%3A07.8217293Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmkx7s34knwnhgsls2pcd7konemac2rxqjfqtt7v63x7k2jpagj7y7rrlc3ibptqy2/providers/Microsoft.RecoveryServices/vaults/clitest-vaultimh5b3ekl6v\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultp6roblrfu64\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A48%3A09.790093Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmqp7n3d4mv/providers/Microsoft.RecoveryServices/vaults/clitest-vaultp6roblrfu64\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vault3ts3aj7xtmh\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A48%3A10.7747755Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmukahy54pndlhmnyvfbr3gfmzc2tnwvckw7e6bjecwrlnwisnztycbpyw53hkg6io/providers/Microsoft.RecoveryServices/vaults/clitest-vault3ts3aj7xtmh\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultaowc5z2noxt6mpve4jfvdg5tydmelkc3pq2lv\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A48%3A11.5045393Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmukahy54pndlhmnyvfbr3gfmzc2tnwvckw7e6bjecwrlnwisnztycbpyw53hkg6io/providers/Microsoft.RecoveryServices/vaults/clitest-vaultaowc5z2noxt6mpve4jfvdg5tydmelkc3pq2lv\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultqh75k2vkdmr\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A48%3A12.6931553Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgnklk2g3how/providers/Microsoft.RecoveryServices/vaults/clitest-vaultqh75k2vkdmr\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultoc663vigb2w\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A48%3A13.9357538Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgnltlmkgi2u/providers/Microsoft.RecoveryServices/vaults/clitest-vaultoc663vigb2w\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultmha4kfx4gd47xre2fyj6mus3x22ffzb2wjyw2\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A48%3A14.7115032Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgno2vg4l266otbzbiuw5j4pzzh4m77siw7draagjgpqoksrbljue232p2imvcksegi/providers/Microsoft.RecoveryServices/vaults/clitest-vaultmha4kfx4gd47xre2fyj6mus3x22ffzb2wjyw2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultxa3xhztpvtu\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A48%3A17.2576805Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgnvoelwrvnb/providers/Microsoft.RecoveryServices/vaults/clitest-vaultxa3xhztpvtu\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vault3pufgihfvk7\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A48%3A17.6745463Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgnvp6pc5g7dxrkpc222eytqb6nmnctcbb3kdk2u2c43odblpevtibtla6vmvpmzj3j/providers/Microsoft.RecoveryServices/vaults/clitest-vault3pufgihfvk7\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultrpyba3nnz43\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A48%3A19.9638064Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgoi6qydosfi/providers/Microsoft.RecoveryServices/vaults/clitest-vaultrpyba3nnz43\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultsuscscd6b5y\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A48%3A20.7255605Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgokl4ve3cduutmqx3zbjjonqfuoi7zf4nk452arczqnqywrzyeobfxkko4avqo5ts2/providers/Microsoft.RecoveryServices/vaults/clitest-vaultsuscscd6b5y\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultotbbkjtxtaj\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A48%3A21.2753828Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgooldj62n6ch7hxxvqmo6x5y2vydsyue5d25qcpovyyup3b4zzojnjumds5mojnrag/providers/Microsoft.RecoveryServices/vaults/clitest-vaultotbbkjtxtaj\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultx6tk4nykhno\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A48%3A23.5006641Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgoqq67trjre/providers/Microsoft.RecoveryServices/vaults/clitest-vaultx6tk4nykhno\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultsjfzc7a5qmxkpzu3y2sbuixrl3pjx4kwlp3eb\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A48%3A25.6809598Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgotffkwd5fpzfkflw6txijy3nno3ktes5cuefbo3u262jfbqsfx2z6bbqpk2fhy54o/providers/Microsoft.RecoveryServices/vaults/clitest-vaultsjfzc7a5qmxkpzu3y2sbuixrl3pjx4kwlp3eb\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultexbgejmcend\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A48%3A27.1614821Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgowu2oj3ndo6t35od2rs53gsirzwigoa6yscj6ogjtyhqhsc6cl4yuqxnovyzlwcyz/providers/Microsoft.RecoveryServices/vaults/clitest-vaultexbgejmcend\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vault7m4uluoj7hd\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A48%3A28.601017Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgp5qr37qurxzxrxjtuskkearnstupaxq277d2jqzjyci4i3cyhzczqo26r6vgmnjtb/providers/Microsoft.RecoveryServices/vaults/clitest-vault7m4uluoj7hd\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultbegfaas7jmz\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A48%3A32.8046594Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpidqnhbcir/providers/Microsoft.RecoveryServices/vaults/clitest-vaultbegfaas7jmz\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultizrd5eigmzs\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A48%3A34.6550619Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpiik274b5c/providers/Microsoft.RecoveryServices/vaults/clitest-vaultizrd5eigmzs\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultqxiqco5vnor\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A48%3A36.1865671Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpjoqnu6cat/providers/Microsoft.RecoveryServices/vaults/clitest-vaultqxiqco5vnor\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultwkoh2cbjarm\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A48%3A37.7110748Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpljtsfw7lxg4nxrai36gnbgqs6qmbvkk3beiiqbpqbkwdwto35qk5scnpviniyhxo/providers/Microsoft.RecoveryServices/vaults/clitest-vaultwkoh2cbjarm\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vault4ucvicn4sch\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A49%3A28.4996824Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqmpl3cjtiq/providers/Microsoft.RecoveryServices/vaults/clitest-vault4ucvicn4sch\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaulto2ke4jqomwa\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A49%3A29.7112911Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqsy2zpp6g3/providers/Microsoft.RecoveryServices/vaults/clitest-vaulto2ke4jqomwa\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultxa3qzinq32ct4tilcz6azauicqvu2dxfr5g77\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A49%3A32.4524067Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqvsourg2um3c6ablwfz6ns6h7qcbowz4n6l37ubxgjnwtbtamufsl6gcz2crxlrk6/providers/Microsoft.RecoveryServices/vaults/clitest-vaultxa3qzinq32ct4tilcz6azauicqvu2dxfr5g77\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaulthpbw5s34bko\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A49%3A35.777334Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqw7wm426rvshy6ehztkgiwh2vxq4ltgxckuuqw6v6dxndfnutwb5p3x67oiwyxju5/providers/Microsoft.RecoveryServices/vaults/clitest-vaulthpbw5s34bko\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaulttj52ufwrzro\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A49%3A39.3371858Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqxwksoei53/providers/Microsoft.RecoveryServices/vaults/clitest-vaulttj52ufwrzro\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultewvlpewbc4l\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A49%3A40.9936514Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgrc3jkzpwlcr3wwakox77jcc5yejnonpb4omrfsxnek7lhk33ditojmo6di56kd33r/providers/Microsoft.RecoveryServices/vaults/clitest-vaultewvlpewbc4l\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultzr6lqgfgq4z\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A49%3A42.1222877Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgre7lscogl6/providers/Microsoft.RecoveryServices/vaults/clitest-vaultzr6lqgfgq4z\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultlg3y55oug3o\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A49%3A42.5231581Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgrgslm3qrce/providers/Microsoft.RecoveryServices/vaults/clitest-vaultlg3y55oug3o\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultk2etnwnn36e\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A49%3A44.0566636Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgrlw46nuuq5/providers/Microsoft.RecoveryServices/vaults/clitest-vaultk2etnwnn36e\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultm2vn42q76xo\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A49%3A44.8753995Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgrx33ktqbpq/providers/Microsoft.RecoveryServices/vaults/clitest-vaultm2vn42q76xo\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultxylrozgs2tk\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A49%3A45.500198Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgrxftk6iccbb4vzikjavjxrvjpclpfjvceekivforaot5r5k7dpnosg5lwahjroyp2/providers/Microsoft.RecoveryServices/vaults/clitest-vaultxylrozgs2tk\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultrvnnjmspgtu\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A49%3A47.142668Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgsdjg4s4g3o4blwa3fql3h25zoigszrlhiqeyidoapjlaizqzjato5zl5mxvs55iqv/providers/Microsoft.RecoveryServices/vaults/clitest-vaultrvnnjmspgtu\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultngfyxuuw4ht\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A49%3A48.2143225Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgseham3cwxw/providers/Microsoft.RecoveryServices/vaults/clitest-vaultngfyxuuw4ht\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultypmz74mgckh\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A49%3A49.0670474Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgsqii5io7pr/providers/Microsoft.RecoveryServices/vaults/clitest-vaultypmz74mgckh\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultirqzragbbdb\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A49%3A50.3826229Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgsrwt7fsym3/providers/Microsoft.RecoveryServices/vaults/clitest-vaultirqzragbbdb\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vault4f2giyrpoyh\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A51%3A02.2554519Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtcctfl4ua2dynim2dfypgaotoylnv775vvo74u36e6urroz64kzoh674tjkg6hz37/providers/Microsoft.RecoveryServices/vaults/clitest-vault4f2giyrpoyh\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultswpntoastj4\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A51%3A11.8763516Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgto4pcxgbtm463e6oaew44wax6mgsqfhy3zd4s7wka24usmgjhedaaoaugoummgndq/providers/Microsoft.RecoveryServices/vaults/clitest-vaultswpntoastj4\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultkg55mljaqar\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A51%3A15.6401387Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtxoa4t73iiowggvc7n23ovriz647lwom4kzncygykizvh35ldfhesxdv2n2criqjc/providers/Microsoft.RecoveryServices/vaults/clitest-vaultkg55mljaqar\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaulteurjc2gbt7e\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A51%3A17.712471Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgu5hbhumhqcxgjnrptz76srkqowm4la25xnaqmqh4mp7ytzis3qkg4vmdobaj6cteb/providers/Microsoft.RecoveryServices/vaults/clitest-vaulteurjc2gbt7e\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vault3are2bll3w6\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A51%3A18.9390759Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgu7bg4q3p5t/providers/Microsoft.RecoveryServices/vaults/clitest-vault3are2bll3w6\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultxbhhpqukpv7\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A51%3A21.6092153Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgufjudmjpzx/providers/Microsoft.RecoveryServices/vaults/clitest-vaultxbhhpqukpv7\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultu6htfs26nqh\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A53%3A40.6064564Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rguormbicymt/providers/Microsoft.RecoveryServices/vaults/clitest-vaultu6htfs26nqh\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultf6jo62noeoj\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A53%3A42.2869154Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgutkvmqsrqu/providers/Microsoft.RecoveryServices/vaults/clitest-vaultf6jo62noeoj\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaulthwq3iqbfb4s\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A53%3A43.6944627Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgv24ocqvpdj/providers/Microsoft.RecoveryServices/vaults/clitest-vaulthwq3iqbfb4s\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vault7y4fhdiqv4i\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A54%3A01.1528432Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgva5vlyuayc/providers/Microsoft.RecoveryServices/vaults/clitest-vault7y4fhdiqv4i\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultyjbqxp6mtuu\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A54%3A02.1875107Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgvenkcmmuky/providers/Microsoft.RecoveryServices/vaults/clitest-vaultyjbqxp6mtuu\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultd3wvesi6ym6\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A54%3A05.5004442Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgwfkr3silm3/providers/Microsoft.RecoveryServices/vaults/clitest-vaultd3wvesi6ym6\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultbb7zul236z2\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A54%3A06.3571687Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgwhn5zwkci6/providers/Microsoft.RecoveryServices/vaults/clitest-vaultbb7zul236z2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultk4eqdutogrq\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A54%3A07.8116999Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgwl3udk2zry46qt6wpxpomk5tcz6aj4yytxhiszhsbisjdnfrgzisxeai5cdfk3w6k/providers/Microsoft.RecoveryServices/vaults/clitest-vaultk4eqdutogrq\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultlatshlotpfk\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A54%3A08.5264699Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgwmsx3udfjk/providers/Microsoft.RecoveryServices/vaults/clitest-vaultlatshlotpfk\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultdr4qonfffxf\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A54%3A09.2602342Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgwsht2qhusc/providers/Microsoft.RecoveryServices/vaults/clitest-vaultdr4qonfffxf\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultab3w7xyxrvs\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A54%3A12.6331484Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgxeoki3er7s/providers/Microsoft.RecoveryServices/vaults/clitest-vaultab3w7xyxrvs\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultudr7tyxj2hb\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A54%3A15.8181232Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgxqp5r6uwst/providers/Microsoft.RecoveryServices/vaults/clitest-vaultudr7tyxj2hb\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultts2dx52w2op\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A54%3A17.2806527Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgxz75dffllwwc5trdklyvt5yplt5ezu42z327dycsyztsiac5hqxp43srveuqb5sam/providers/Microsoft.RecoveryServices/vaults/clitest-vaultts2dx52w2op\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaulthvtb3u5uflr\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A54%3A19.1960364Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgy4q4r753h4/providers/Microsoft.RecoveryServices/vaults/clitest-vaulthvtb3u5uflr\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultkodrrji3ynw\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A54%3A20.8105171Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgyd7li7qt7d/providers/Microsoft.RecoveryServices/vaults/clitest-vaultkodrrji3ynw\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultrzk2n76c2ge\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A54%3A22.2610505Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgye7qrsbohq/providers/Microsoft.RecoveryServices/vaults/clitest-vaultrzk2n76c2ge\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"sfsag\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A07.4465112Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abcc-copilot-testing/providers/Microsoft.RecoveryServices/vaults/sfsag\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"akkanasefasdf\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A14.5424346Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/akkanasefasdf\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"akkanaseGRS\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A08.5009054Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/akkanaseGRS\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"akkanaseTestabc\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A56.1935094Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/akkanaseTestabc\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"TestDoubleSlashVault\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A21.4124879Z'\\\"\",\"tags\":{\"kpl\":\"kjl\"},\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cmk.system/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identity1\":{\"clientId\":\"73571b84-6f37-4bdd-a60f-1121cb5d31d7\",\"principalId\":\"13a05d1f-eae9-47ae-944f-46270c95d12e\"}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":{\"keyVaultProperties\":{\"keyUri\":\"https://cmkkeyvaultea1.vault.azure.net/keys/key1\"},\"kekIdentity\":{\"useSystemAssignedIdentity\":false,\"userAssignedIdentity\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cmk.system/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identity1\"},\"infrastructureEncryption\":\"Disabled\"},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/TestDoubleSlashVault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"afs-pstest-vault\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A00%3A55.4084275Z'\\\"\",\"tags\":{\"MABUsed\":\"yes\",\"Owner\":\"hiaga\",\"Purpose\":\"testing\",\"DeleteBy\":\"01-2099\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/afs-pstest-rg/providers/Microsoft.RecoveryServices/vaults/afs-pstest-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"afsdeletevault\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A34.6718716Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/afstests/providers/Microsoft.RecoveryServices/vaults/afsdeletevault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"akkanaseTest123f\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A20.3470998Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/afstests/providers/Microsoft.RecoveryServices/vaults/akkanaseTest123f\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"crr-test\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A00%3A39.6135011Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":null,\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/afstests/providers/Microsoft.RecoveryServices/vaults/crr-test\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"Donotuse-afsnavigation-ea-vault\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A00%3A39.8823468Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/afstests/providers/Microsoft.RecoveryServices/vaults/Donotuse-afsnavigation-ea-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"akkanaseCmkUserTest\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A06.0633074Z'\\\"\",\"identity\":{\"type\":\"None\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanase-diskaccess/providers/Microsoft.RecoveryServices/vaults/akkanaseCmkUserTest/privateEndpointConnections/akkanasediskaccess.3980868635877947304.backup.b5a72c23-e8d6-4a09-bac3-ba346f4a9cdd\",\"name\":\"akkanasediskaccess.3980868635877947304.backup.b5a72c23-e8d6-4a09-bac3-ba346f4a9cdd\",\"type\":\"Microsoft.RecoveryServices/vaults/privateEndpointConnections\",\"location\":\"eastasia\",\"properties\":{\"provisioningState\":\"Failed\",\"privateEndpoint\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanase-diskaccess/providers/Microsoft.Network/privateEndpoints/akkanasediskaccess\"},\"groupIds\":[\"AzureBackup\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"None\",\"actionsRequired\":\"None\"}}}],\"privateEndpointStateForBackup\":\"Enabled\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanase-diskaccess/providers/Microsoft.RecoveryServices/vaults/akkanaseCmkUserTest\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"akkanaseTest\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A33.5115381Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseAFSTest/providers/Microsoft.RecoveryServices/vaults/akkanaseTest\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"akkanaseTest\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A53.675955Z'\\\"\",\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cmk.system/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identity1\":{\"clientId\":\"73571b84-6f37-4bdd-a60f-1121cb5d31d7\",\"principalId\":\"13a05d1f-eae9-47ae-944f-46270c95d12e\"}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseTest/providers/Microsoft.RecoveryServices/vaults/akkanaseTest/privateEndpointConnections/akkanaseTime.7422943731775250981.backup.503d360e-d81b-4b94-8f13-b68f9a16b2ab\",\"name\":\"akkanaseTime.7422943731775250981.backup.503d360e-d81b-4b94-8f13-b68f9a16b2ab\",\"type\":\"Microsoft.RecoveryServices/vaults/privateEndpointConnections\",\"location\":\"eastasia\",\"properties\":{\"provisioningState\":\"Failed\",\"privateEndpoint\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseTest/providers/Microsoft.Network/privateEndpoints/akkanaseTime\"},\"groupIds\":[\"AzureBackup\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"None\",\"actionsRequired\":\"None\"}}}],\"privateEndpointStateForBackup\":\"Enabled\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":{\"keyVaultProperties\":{\"keyUri\":\"https://cmkkeyvaultea1.vault.azure.net/keys/key1\"},\"kekIdentity\":{\"useSystemAssignedIdentity\":false,\"userAssignedIdentity\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cmk.system/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identity1\"},\"infrastructureEncryption\":\"Disabled\"},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseTest/providers/Microsoft.RecoveryServices/vaults/akkanaseTest\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"akkanaseTestfsa\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A08.5928528Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseTest/providers/Microsoft.RecoveryServices/vaults/akkanaseTestfsa\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"newVault1\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A59.7764529Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseTest/providers/Microsoft.RecoveryServices/vaults/newVault1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"akneema-alert-vault1\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A54.9542223Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-alert-vault1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"akneema-alert-vault2\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A39.4791099Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-alert-vault2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"akneema-alert-vault3\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A02%3A09.4428987Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-alert-vault3\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"eatestvault\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A32.2812449Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/eatestvault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"amchandnEArsv\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A00%3A56.6717012Z'\\\"\",\"tags\":{\"Owner\":\"mabteam\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amchandnEA/providers/Microsoft.RecoveryServices/vaults/amchandnEArsv\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"asmaskar123\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A02%3A09.3409577Z'\\\"\",\"tags\":{\"Owner\":\"asmaskar\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"b779b5de-9095-4102-abb4-72ef36f76315\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":{\"keyVaultProperties\":{\"keyUri\":\"https:\\\\\\\\ab.vault.azure.net\"},\"kekIdentity\":{\"useSystemAssignedIdentity\":true,\"userAssignedIdentity\":null},\"infrastructureEncryption\":\"Disabled\"},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amchandnEA/providers/Microsoft.RecoveryServices/vaults/asmaskar123\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"ankur-vault-resourceguard\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A00%3A29.8091349Z'\\\"\",\"tags\":{\"Owner\":\"hiaga\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurRG137/providers/Microsoft.RecoveryServices/vaults/ankur-vault-resourceguard\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"ankurRSV96\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A00%3A37.9254709Z'\\\"\",\"tags\":{\"Owner\":\"ankur\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurRG137/providers/Microsoft.RecoveryServices/vaults/ankurRSV96\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"AnkurRSVRGTest2\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A34.6928595Z'\\\"\",\"tags\":{\"Owner\":\"ankur\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurRG137/providers/Microsoft.RecoveryServices/vaults/AnkurRSVRGTest2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"RG12\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A15.6757833Z'\\\"\",\"tags\":{\"Owner\":\"ankur\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurRG137/providers/Microsoft.RecoveryServices/vaults/RG12\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"RGVaultTest\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A02%3A09.3939266Z'\\\"\",\"tags\":{\"Owner\":\"ankur\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurRG137/providers/Microsoft.RecoveryServices/vaults/RGVaultTest\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"RSRansomewareHackathonVault\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A52.4816423Z'\\\"\",\"tags\":{\"Name\":\"Hackathon2024Vault\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurRG137/providers/Microsoft.RecoveryServices/vaults/RSRansomewareHackathonVault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"RSV2211\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A00%3A28.4209337Z'\\\"\",\"tags\":{\"Owner\":\"ankur\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurRG137/providers/Microsoft.RecoveryServices/vaults/RSV2211\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"RSV2411\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A26.4565902Z'\\\"\",\"tags\":{\"Owner\":\"ankur\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurRG137/providers/Microsoft.RecoveryServices/vaults/RSV2411\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"RSV241111\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A00%3A26.2731674Z'\\\"\",\"tags\":{\"Owner\":\"ankur\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurRG137/providers/Microsoft.RecoveryServices/vaults/RSV241111\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"RSVaultForTesting\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A00%3A26.5230228Z'\\\"\",\"tags\":{\"Owner\":\"ankur\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurRG137/providers/Microsoft.RecoveryServices/vaults/RSVaultForTesting\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"testVault1891\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A35.8991671Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurRG137/providers/Microsoft.RecoveryServices/vaults/testVault1891\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"TestVault219\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A02%3A11.7795568Z'\\\"\",\"tags\":{\"Owner\":\"ankur\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurRG137/providers/Microsoft.RecoveryServices/vaults/TestVault219\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"TestVault2610\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A04.9739311Z'\\\"\",\"tags\":{\"Owner\":\"ankur\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurRG137/providers/Microsoft.RecoveryServices/vaults/TestVault2610\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"TestVaultRepro\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A27.4889974Z'\\\"\",\"tags\":{\"Owner\":\"ankur\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurRG137/providers/Microsoft.RecoveryServices/vaults/TestVaultRepro\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"Vault119\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A00%3A55.3624537Z'\\\"\",\"tags\":{\"Owner\":\"ankur\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurRG137/providers/Microsoft.RecoveryServices/vaults/Vault119\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"DonotUse-sapasedatabaseworkload-BVT-Vault\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A34.7148478Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ase-workload.existing/providers/Microsoft.RecoveryServices/vaults/DonotUse-sapasedatabaseworkload-BVT-Vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"sapasedatabaseworkloadexistingvaulteastasia\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A31.0369591Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ase-workload.existing/providers/Microsoft.RecoveryServices/vaults/sapasedatabaseworkloadexistingvaulteastasia\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"DonotUse-sapasedatabase-BVT-Vault\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A33.4685621Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ase.workload/providers/Microsoft.RecoveryServices/vaults/DonotUse-sapasedatabase-BVT-Vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"testcsrsrc\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A02%3A14.0742386Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chandrikarg/providers/Microsoft.RecoveryServices/vaults/testcsrsrc\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"clitest-vaultxiatviv3gcr\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A20.343102Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3kqkpka2eh/providers/Microsoft.RecoveryServices/vaults/clitest-vaultxiatviv3gcr\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"clitest-vaulttvvff46kmtl\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A02%3A16.4548722Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":null,\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg6wcbdfnzw5/providers/Microsoft.RecoveryServices/vaults/clitest-vaulttvvff46kmtl\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"clitest-vault2k3fqj54ds7\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A02%3A16.5867956Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":null,\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgijzhkmzp2x/providers/Microsoft.RecoveryServices/vaults/clitest-vault2k3fqj54ds7\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"clitest-vault5u6owqetawx\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A02%3A04.4827481Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgiv6mglu63d/providers/Microsoft.RecoveryServices/vaults/clitest-vault5u6owqetawx\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"clitest-vaultajgisvb5lcb\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A34.717846Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":null,\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgq2ngzm2cfv23h26gwc2vgkzykpubprmwhfecdhfgigdi5a3igjbwbffa2arltxuoh/providers/Microsoft.RecoveryServices/vaults/clitest-vaultajgisvb5lcb\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"clitest-vaultfkwemaxgduh\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A44.2663608Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":null,\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgujpkcer63dnd7lksn2rtkjzdr5eolvm54rd4rlh3qvhj73vpfdwwu6dfbxof3e7kz/providers/Microsoft.RecoveryServices/vaults/clitest-vaultfkwemaxgduh\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"sqlageacanvault\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A00%3A32.9833111Z'\\\"\",\"tags\":{\"Owner\":\"gesahoo\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/donot-use-bvt-ea-can2-oss/providers/Microsoft.RecoveryServices/vaults/sqlageacanvault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"Donot-Use-Port-Accessibility-Vault\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A32.1952957Z'\\\"\",\"tags\":{\"Purpose\":\"BVT\",\"Owner\":\"akkanase\",\" - DeleteBy\":\"05-2040\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DoNotUse-Accessibility-Test/providers/Microsoft.RecoveryServices/vaults/Donot-Use-Port-Accessibility-Vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"bvt-alert-navigation\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A06.0912894Z'\\\"\",\"tags\":{\"Owner\":\"adigupt\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DONOTUSE-BVT-EA-CAN-RG/providers/Microsoft.RecoveryServices/vaults/bvt-alert-navigation\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"DonotUse-iaasvmsqlworkload-BVT-EUS-Vault\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A44.1184456Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DonotUse-iaasvmsqlworkload-BVT-EUS-RG/providers/Microsoft.RecoveryServices/vaults/DonotUse-iaasvmsqlworkload-BVT-EUS-Vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"donotuse-immutability-bvt-ea-vault\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A02%3A19.396182Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/donotuse-ransomware-bvt-ea-rg/providers/Microsoft.RecoveryServices/vaults/donotuse-immutability-bvt-ea-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"donotuse-immutability-bvt-ea-vault-to-update-state\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A34.6248991Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/donotuse-ransomware-bvt-ea-rg/providers/Microsoft.RecoveryServices/vaults/donotuse-immutability-bvt-ea-vault-to-update-state\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"Donotuse-navigation-vault\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A00%3A43.712146Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/doNotUsePortalBVT/providers/Microsoft.RecoveryServices/vaults/Donotuse-navigation-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"gesahoonew\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A50.3508656Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoohana/providers/Microsoft.RecoveryServices/vaults/gesahoonew\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"newvault\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A13.3711078Z'\\\"\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoohana/providers/Microsoft.RecoveryServices/vaults/newvault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"test\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A00%3A34.2245974Z'\\\"\",\"tags\":{\"Owner\":\"gesahoo\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoohana/providers/Microsoft.RecoveryServices/vaults/test\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"vault966\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A59.733476Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoohana/providers/Microsoft.RecoveryServices/vaults/vault966\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"gesahooAGvault\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A02%3A09.4229116Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gsAG1-EASTASIA/providers/Microsoft.RecoveryServices/vaults/gesahooAGvault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"gvjreddy-eacan-rsvault-vault-softdelete-testing\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A50.3048925Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-eacan-rsvault-vault-softdelete-testing\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"gvjreddy-test-ea-rsvault\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A22.7587145Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-test-ea-rsvault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"gvjreddy-test-ea-rsvault-with-userassigned-cmk\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A00%3A47.1831519Z'\\\"\",\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/gvjreddy-test-ea-mi\":{\"clientId\":\"7af51b8c-f9bf-44b6-9de4-fd3ba8a8d90b\",\"principalId\":\"6b5a9e25-7d46-4c7f-bdf6-165ce283ff9e\"}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":{\"keyVaultProperties\":{\"keyUri\":\"https://gvjreddy-test-ea-kv.vault.azure.net/keys/gvjreddy-test-key-for-vault-encryption-alternate\"},\"kekIdentity\":{\"useSystemAssignedIdentity\":false,\"userAssignedIdentity\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/gvjreddy-test-ea-mi\"},\"infrastructureEncryption\":\"Disabled\"},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-test-ea-rsvault-with-userassigned-cmk\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"hiaga-eacan-acis1\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A00%3A44.8045206Z'\\\"\",\"tags\":{\"MABUsed\":\"Yes\",\"Owner\":\"hiaga\",\"Purpose\":\"testing\",\"DeleteBy\":\"01-2025\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-eacan-acis1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"iaasvm-encryptedvm-vault\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A11.0354497Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvm.encryptedvm-eastasia/providers/Microsoft.RecoveryServices/vaults/iaasvm-encryptedvm-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"donotuse-iaasvm-policymigration-vault-east-asia\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A00%3A39.7734099Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvm.existing.vaults/providers/Microsoft.RecoveryServices/vaults/donotuse-iaasvm-policymigration-vault-east-asia\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"donotuse-iaasvm-selectivedisk-vault-eastasia\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A02%3A12.8399479Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvm.existing.vaults/providers/Microsoft.RecoveryServices/vaults/donotuse-iaasvm-selectivedisk-vault-eastasia\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"iaasmchangepol-eastasia\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A46.5250637Z'\\\"\",\"tags\":{\"Purpose\":\"BVT\",\"Owner\":\"akkanase\",\"MabUsed\":\"yes\",\"DeleteBy\":\"05-2099\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvm.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasmchangepol-eastasia\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"iaasvmexistingvault-eastasia\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A00%3A39.4016227Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvm.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmexistingvault-eastasia\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"newvault\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A53.7748987Z'\\\"\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvm.existing.vaults/providers/Microsoft.RecoveryServices/vaults/newvault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"sarathtestiaasvmvault\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A00%3A57.4552514Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvm.new/providers/Microsoft.RecoveryServices/vaults/sarathtestiaasvmvault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"iaasvmnavigationtestvault\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A25.1353518Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IaasVMNavigationTest-RG-eastasia/providers/Microsoft.RecoveryServices/vaults/iaasvmnavigationtestvault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"donotusegrantpermissionvault\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A00%3A56.5137919Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlinstanceworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/donotusegrantpermissionvault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"donotusesqlinstanceworkloadvault\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A00%3A56.7196736Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlinstanceworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/donotusesqlinstanceworkloadvault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"iaasvmsqlinstanceworkloadexistingvaulteastasia\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A13.6859263Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlinstanceworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlinstanceworkloadexistingvaulteastasia\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"iaasvmsqlworkloadexistingvaulteastasia\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A38.1628661Z'\\\"\",\"tags\":{\"MAB - Used\":\"Yes\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvaulteastasia\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"acisactiontest2\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A00%3A39.0748112Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ishan_softDeleteContainerTest/providers/Microsoft.RecoveryServices/vaults/acisactiontest2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"acisactiontest3\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A31.0119737Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ishan_softDeleteContainerTest/providers/Microsoft.RecoveryServices/vaults/acisactiontest3\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"acisactiontest4\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A00.0757459Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ishan_softDeleteContainerTest/providers/Microsoft.RecoveryServices/vaults/acisactiontest4\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"ankurMuaTestingVault1\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A31.0269648Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ishan_softDeleteContainerTest/providers/Microsoft.RecoveryServices/vaults/ankurMuaTestingVault1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"ankurTestVault\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A02%3A19.3522075Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ishan_softDeleteContainerTest/providers/Microsoft.RecoveryServices/vaults/ankurTestVault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"ankurVault1245\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A58.6051242Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ishan_softDeleteContainerTest/providers/Microsoft.RecoveryServices/vaults/ankurVault1245\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"DMTest\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A03.8575729Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ishan_softDeleteContainerTest/providers/Microsoft.RecoveryServices/vaults/DMTest\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"tp2\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A44.168418Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ishan_softDeleteContainerTest/providers/Microsoft.RecoveryServices/vaults/tp2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"vault1\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A02%3A15.530403Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ishan_softDeleteContainerTest/providers/Microsoft.RecoveryServices/vaults/vault1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"vault123\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A02.5573202Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ishan_softDeleteContainerTest/providers/Microsoft.RecoveryServices/vaults/vault123\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"vault1705delete\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A48.9996419Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ishan_softDeleteContainerTest/providers/Microsoft.RecoveryServices/vaults/vault1705delete\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"vaultsoftdelete120420242\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A02%3A05.7830011Z'\\\"\",\"tags\":{\"Owner\":\"Kalyan\",\"DeleteBy\":\"05-2024\",\"Purpose\":\"Testing\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ishan_softDeleteContainerTest/providers/Microsoft.RecoveryServices/vaults/vaultsoftdelete120420242\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"testVault111\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A07.3925431Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ishansap/providers/Microsoft.RecoveryServices/vaults/testVault111\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"vault2406\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A27.7808297Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ishansap/providers/Microsoft.RecoveryServices/vaults/vault2406\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"vaultNew2406\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A19.0238607Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ishansap/providers/Microsoft.RecoveryServices/vaults/vaultNew2406\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"jsinghVault\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A54.9832048Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jsinghRG/providers/Microsoft.RecoveryServices/vaults/jsinghVault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"mkheranirsv\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A13.4660528Z'\\\"\",\"tags\":{\"Owner\":\"mkherani\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mkherani/providers/Microsoft.RecoveryServices/vaults/mkheranirsv\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"ankurMuaTestingVault1\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A47.7423642Z'\\\"\",\"tags\":{\"Owner\":\"ishanjindal\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redundancyTestingVault/providers/Microsoft.RecoveryServices/vaults/ankurMuaTestingVault1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"argTest2\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A44.1454306Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redundancyTestingVault/providers/Microsoft.RecoveryServices/vaults/argTest2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"hotfix1\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A26.2786927Z'\\\"\",\"tags\":{\"Owner\":\"ishanjindal\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redundancyTestingVault/providers/Microsoft.RecoveryServices/vaults/hotfix1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"hotfix2\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A00%3A42.4858517Z'\\\"\",\"tags\":{\"Owner\":\"ishanjindal\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redundancyTestingVault/providers/Microsoft.RecoveryServices/vaults/hotfix2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"hotfixTest1\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A21.5354177Z'\\\"\",\"tags\":{\"Owner\":\"ishanjindal\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redundancyTestingVault/providers/Microsoft.RecoveryServices/vaults/hotfixTest1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"hotfixTest2\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A02%3A17.1094956Z'\\\"\",\"tags\":{\"Owner\":\"ishanjindal\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redundancyTestingVault/providers/Microsoft.RecoveryServices/vaults/hotfixTest2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"hotfixTest3\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A01.4619495Z'\\\"\",\"tags\":{\"Owner\":\"ishanjindal\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redundancyTestingVault/providers/Microsoft.RecoveryServices/vaults/hotfixTest3\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"oldFlowTest1\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A55.0221817Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redundancyTestingVault/providers/Microsoft.RecoveryServices/vaults/oldFlowTest1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"test1\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A00%3A48.2905166Z'\\\"\",\"tags\":{\"Owner\":\"ishanjindal\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redundancyTestingVault/providers/Microsoft.RecoveryServices/vaults/test1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"timepass1\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A02.520341Z'\\\"\",\"tags\":{\"Owner\":\"ishanjindal\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redundancyTestingVault/providers/Microsoft.RecoveryServices/vaults/timepass1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"ResourceMove-b890e7-0\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A26.3726385Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ResourceMoverRG-southeastasia-eastasia-sea/providers/Microsoft.RecoveryServices/vaults/ResourceMove-b890e7-0\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"testvaultishan\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A02%3A15.0936531Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RG_BTALTYAP\u0131GUVENLIK/providers/Microsoft.RecoveryServices/vaults/testvaultishan\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"saphanaworkloadexistingvaulteastasia\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A02%3A02.1790722Z'\\\"\",\"tags\":{\"MABUsed\":\"Yes\"},\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cmk.system/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identity1\":{\"clientId\":\"73571b84-6f37-4bdd-a60f-1121cb5d31d7\",\"principalId\":\"13a05d1f-eae9-47ae-944f-46270c95d12e\"},\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cmk.system/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identity2\":{\"clientId\":\"c105dcb0-b19f-4d55-adba-749e0037c42e\",\"principalId\":\"ab44c749-c400-4689-bcd1-128d7ecefd94\"},\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dimunj_mua_rm_test/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testUAMIECY\":{\"clientId\":\"d84cf4ae-ec92-4843-8909-3f96e243a737\",\"principalId\":\"714861d4-74f2-460f-b4c1-0813a88faddb\"}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":null,\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/saphanaworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/saphanaworkloadexistingvaulteastasia\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"sarath-afs-hardening-vault\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A08.6668101Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-afs-hardening-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"sarath-dmtest-sourcevault\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A02%3A00.9987497Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-dmtest-sourcevault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"sarath-securescore-vault\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A16.3394022Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-securescore-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"sarathhanatarget\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A06.0962868Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarathhanatarget\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"sarathsourcevault1\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A56.098564Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarathsourcevault1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"sarathsourcevault2\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A44.1814178Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarathsourcevault2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"sarathsourcevault3\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A02%3A14.2601319Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarathsourcevault3\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"sarathtargetvault2\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A02%3A16.3439351Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarathtargetvault2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"vault132\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A21.4504658Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/vault132\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"vault227\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A00%3A41.2615542Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/vault227\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"vault251\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A00%3A29.6912018Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/vault251\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"vault5512\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A00%3A26.2142005Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/vault5512\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"sarathsourcevault1\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A16.7231816Z'\\\"\",\"tags\":{\"Owner\":\"sarath\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarathmovedrg4/providers/Microsoft.RecoveryServices/vaults/sarathsourcevault1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"sarathtargetvault1\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A00%3A43.6771662Z'\\\"\",\"tags\":{\"Owner\":\"sarath\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarathmovedrg4/providers/Microsoft.RecoveryServices/vaults/sarathtargetvault1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"softdeletevault-1403-1\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A02%3A10.5032911Z'\\\"\",\"tags\":{\"Owner\":\"Ishan;ishanjindal\",\"Purpose\":\"Testing\",\"DeleteBy\":\"05-2024\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vault_sd/providers/Microsoft.RecoveryServices/vaults/softdeletevault-1403-1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"vaultalerttest150225\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A02%3A13.3856423Z'\\\"\",\"tags\":{\"Owner\":\"Kalyan\",\"Purpose\":\"Testing\",\"DeleteBy\":\"10-2025\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vaultsd/providers/Microsoft.RecoveryServices/vaults/vaultalerttest150225\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"vaultsd-180901-2\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A44.1924028Z'\\\"\",\"tags\":{\"Owner\":\"Kalyan\",\"DeleteBy\":\"11-2024\",\"Purpose\":\"TEsting\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vaultsd/providers/Microsoft.RecoveryServices/vaults/vaultsd-180901-2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"vaultsd180924-1\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A01%3A04.9969192Z'\\\"\",\"tags\":{\"Owner\":\"Kalyan\",\"DeleteBy\":\"11-2024\",\"Purpose\":\"Testing\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vaultsd/providers/Microsoft.RecoveryServices/vaults/vaultsd180924-1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"vepothir-sql-snapshot-rsv\",\"etag\":\"W/\\\"datetime'2025-10-27T07%3A00%3A55.4623966Z'\\\"\",\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"74042e57-15b4-4f12-88e4-27f074e74c05\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vepothir-rg-ram-sub/providers/Microsoft.RecoveryServices/vaults/vepothir-sql-snapshot-rsv\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}}],\"nextLink\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/vaults?api-version=2025-08-01&%24skiptoken=7dDPT8IwFMDxv4UmetGyrmUIJMagIJpQNDAGLFxK%2bxiD%2fbItCCP8705Pnj17e%2fke3nv5nFEGRzuMs51BnTPqdyf%2bdEL70%2b476qCNtYXpOE4qMhFBCpmti3KvoS7z1DH7lZE6LmycZ8ZhLUYa4DLMvDvADeIBbkNbYEoJ81wlJbSkU%2bj8ECvQxuGx1LnJ17Y%2bBpkfQJ8moA%2bxBOMcxD6x5kEUMa66qbbfU0I9TFqYuNdXtGF21dF8B9m9W2uRGi%2bjkvfGCfe55eWUhRNCeC9Ihn6SvM36lm9fP6t%2bDAejbehvtvPycb2gx0INglI9eaeQJYnoqY1g6mM16OMbt9YkNZkG5YoFpwUN1vy5TRfzwKiX0fe8XQ0SEs5HZDgPN2p2JCEdf6gsbFadwmyB0eUWCZ12o0hDJCwo%2f%2fvbyrM75uj2B5wLvQNdpfPyt%2fkSdZb%2f6n9TX6ILunwB\"}" + Used\":\"yes\",\"DeleteBy\":\"01-2025\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseZRS/providers/Microsoft.RecoveryServices/vaults/akkanaseZRSVault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"amansha-imm-02\",\"etag\":\"W/\\\"datetime'2026-06-04T08%3A46%3A18.040392Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amansha-rg/providers/Microsoft.RecoveryServices/vaults/amansha-imm-02\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"ankurResourceGuardVaultTest1\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A43%3A28.248523Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurResourceGuard1/providers/Microsoft.RecoveryServices/vaults/ankurResourceGuardVaultTest1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"testrsv177\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A43%3A32.030305Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurResourceGuard1/providers/Microsoft.RecoveryServices/vaults/testrsv177\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"demoRSVault-MUA\",\"etag\":\"W/\\\"datetime'2025-08-14T10%3A50%3A38.2961298Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurRG137/providers/Microsoft.RecoveryServices/vaults/demoRSVault-MUA\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"ABCCSQLInstanceTestVault\",\"etag\":\"W/\\\"datetime'2026-07-17T07%3A56%3A18.0404057Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_abcctestsqlinstancerg/providers/Microsoft.RecoveryServices/vaults/ABCCSQLInstanceTestVault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vault23ykopsnchw\",\"etag\":\"W/\\\"datetime'2026-07-20T07%3A40%3A38.0664478Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_6dhofk7z5y/providers/Microsoft.RecoveryServices/vaults/clitest-vault23ykopsnchw\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultx6cpy5v3tcg\",\"etag\":\"W/\\\"datetime'2026-07-20T07%3A40%3A22.0030691Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_76t2xnx6my/providers/Microsoft.RecoveryServices/vaults/clitest-vaultx6cpy5v3tcg\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultqhdmhsti6s3\",\"etag\":\"W/\\\"datetime'2026-07-20T07%3A39%3A52.9269035Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_aztxgovpaky74kjushdo4eko53dmg5guohs6b45kkcrnhyhqjlqsi/providers/Microsoft.RecoveryServices/vaults/clitest-vaultqhdmhsti6s3\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vault6sqlfc2cs4t\",\"etag\":\"W/\\\"datetime'2026-07-20T07%3A41%3A14.3780942Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_baez54hmbl/providers/Microsoft.RecoveryServices/vaults/clitest-vault6sqlfc2cs4t\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultvbgttzl3yqv\",\"etag\":\"W/\\\"datetime'2026-07-20T07%3A40%3A58.2937079Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_d62mkibysi/providers/Microsoft.RecoveryServices/vaults/clitest-vaultvbgttzl3yqv\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaulteeyvtppnlrq\",\"etag\":\"W/\\\"datetime'2026-07-20T07%3A40%3A16.2947015Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_dr3gb3wzru/providers/Microsoft.RecoveryServices/vaults/clitest-vaulteeyvtppnlrq\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaulth4kh2lwo3ix\",\"etag\":\"W/\\\"datetime'2026-07-20T07%3A39%3A37.2276739Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_h25oswkkpz/providers/Microsoft.RecoveryServices/vaults/clitest-vaulth4kh2lwo3ix\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultvw725vnz6nk\",\"etag\":\"W/\\\"datetime'2026-07-20T07%3A40%3A07.0285109Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_hb7icahwjdjivpzi766cu4tb46d7seb7aspu5lppmqihithjzirxi/providers/Microsoft.RecoveryServices/vaults/clitest-vaultvw725vnz6nk\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vault2hbubota64q\",\"etag\":\"W/\\\"datetime'2026-07-20T07%3A40%3A51.2903519Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_itzxcbe3cd/providers/Microsoft.RecoveryServices/vaults/clitest-vault2hbubota64q\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vault7mxxlft3ltp\",\"etag\":\"W/\\\"datetime'2026-07-20T07%3A39%3A44.7373295Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_jq7g3b3af4/providers/Microsoft.RecoveryServices/vaults/clitest-vault7mxxlft3ltp\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vault000003\",\"etag\":\"W/\\\"datetime'2026-07-21T05%3A02%3A07.0287516Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"costManagementSettings\":{\"granularityLevel\":\"VaultLevel\"},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vault000004\",\"etag\":\"W/\\\"datetime'2026-07-21T05%3A19%3A05.2282235Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"costManagementSettings\":{\"granularityLevel\":\"ProtectedItemWithParentTag\"},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000004\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vault000002\",\"etag\":\"W/\\\"datetime'2026-07-21T05%3A16%3A47.8658154Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Disabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Disabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"costManagementSettings\":{\"granularityLevel\":\"VaultLevel\"},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultf64enu2f6eg\",\"etag\":\"W/\\\"datetime'2026-07-20T07%3A41%3A53.8020055Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_qw3m5phfarru4lcfrmlrbpp6vz456kl2uzltyq3sqtvz4a2cp2khn/providers/Microsoft.RecoveryServices/vaults/clitest-vaultf64enu2f6eg\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultrwpggd6zkal\",\"etag\":\"W/\\\"datetime'2026-07-20T07%3A40%3A36.5727274Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_rvugmkl5prak5iefbykpefg5hubw7kya6f55iztyftdr4xx3hhced/providers/Microsoft.RecoveryServices/vaults/clitest-vaultrwpggd6zkal\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultfnn4wvrjbee\",\"etag\":\"W/\\\"datetime'2026-07-20T07%3A40%3A00.7449702Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_sip4ch76sj/providers/Microsoft.RecoveryServices/vaults/clitest-vaultfnn4wvrjbee\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultehcljeqp5b7\",\"etag\":\"W/\\\"datetime'2026-07-20T07%3A39%3A24.6068702Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_teaunbt7zh4aajutojc7bkqfmrov7uvngaxfqqpfmjtoui52lu4qx/providers/Microsoft.RecoveryServices/vaults/clitest-vaultehcljeqp5b7\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultlvilvjdpo66\",\"etag\":\"W/\\\"datetime'2026-07-20T07%3A40%3A30.2725728Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_tisaspz46i/providers/Microsoft.RecoveryServices/vaults/clitest-vaultlvilvjdpo66\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultlvoxwagchuc\",\"etag\":\"W/\\\"datetime'2026-07-20T07%3A39%3A44.3716478Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_tpyrrinjq7/providers/Microsoft.RecoveryServices/vaults/clitest-vaultlvoxwagchuc\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultxpvbrzsvxpp\",\"etag\":\"W/\\\"datetime'2026-07-20T07%3A42%3A00.8727187Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_wnaytgcsbg266od3bejveopxcfxeccvrsqv2wkqeurgrxfe6ygmlb/providers/Microsoft.RecoveryServices/vaults/clitest-vaultxpvbrzsvxpp\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultxjp4bkeod4z\",\"etag\":\"W/\\\"datetime'2026-07-20T07%3A41%3A05.8304979Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_xxydv2hluw/providers/Microsoft.RecoveryServices/vaults/clitest-vaultxjp4bkeod4z\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaults6pfszhe2ck\",\"etag\":\"W/\\\"datetime'2026-07-20T07%3A41%3A45.7344838Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_z67kba7wyip2ylk76yijtmtx7pi7nebo3jnjwglvs5b3xhuophfoh/providers/Microsoft.RecoveryServices/vaults/clitest-vaults6pfszhe2ck\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vault3jxvjdveygp\",\"etag\":\"W/\\\"datetime'2026-07-20T07%3A40%3A32.048704Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_znqbkpa6fr/providers/Microsoft.RecoveryServices/vaults/clitest-vault3jxvjdveygp\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"ztestdeletethisvault1\",\"etag\":\"W/\\\"datetime'2025-10-24T09%3A29%3A40.2343797Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_randomtestingrg/providers/Microsoft.RecoveryServices/vaults/ztestdeletethisvault1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vault-secondary-donotuse\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A55%3A00.2608233Z'\\\"\",\"tags\":{\"Owner\":\"akneema\",\"Purpose\":\"Testing\",\"MABUsed\":\"Yes\",\"DeleteBy\":\"12-9999\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-rg-donotuse/providers/Microsoft.RecoveryServices/vaults/clitest-vault-secondary-donotuse\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultqais36fqgin\",\"etag\":\"W/\\\"datetime'2025-12-12T08%3A49%3A14.6918865Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2rgxr5gfjtccsjn6gbc7xrit6gy34fqc5uqxlfdec5xe4uz3s4smat2wrjya6b5go/providers/Microsoft.RecoveryServices/vaults/clitest-vaultqais36fqgin\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultqkax5oaneau\",\"etag\":\"W/\\\"datetime'2025-12-12T07%3A16%3A02.6645118Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg33op5uzqbz/providers/Microsoft.RecoveryServices/vaults/clitest-vaultqkax5oaneau\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultxwdk54obumt\",\"etag\":\"W/\\\"datetime'2025-12-12T07%3A16%3A05.5605834Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3hcuks3vwd/providers/Microsoft.RecoveryServices/vaults/clitest-vaultxwdk54obumt\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultitnv4jgu6vn\",\"etag\":\"W/\\\"datetime'2025-12-12T08%3A50%3A10.1961569Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3qtvuvtx6x/providers/Microsoft.RecoveryServices/vaults/clitest-vaultitnv4jgu6vn\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultohm6lktembg\",\"etag\":\"W/\\\"datetime'2025-12-12T07%3A17%3A11.7043639Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg4fw5qlufuw/providers/Microsoft.RecoveryServices/vaults/clitest-vaultohm6lktembg\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultamwfm52xmeh\",\"etag\":\"W/\\\"datetime'2025-12-12T07%3A18%3A14.2222988Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg6dy534jexa/providers/Microsoft.RecoveryServices/vaults/clitest-vaultamwfm52xmeh\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vault7ksvlz5ry57\",\"etag\":\"W/\\\"datetime'2025-12-12T07%3A19%3A17.1502376Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg6msouzoxmw/providers/Microsoft.RecoveryServices/vaults/clitest-vault7ksvlz5ry57\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultpgk5xlaa4z2\",\"etag\":\"W/\\\"datetime'2025-12-12T07%3A20%3A20.4952436Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg7ytcrgwbjp/providers/Microsoft.RecoveryServices/vaults/clitest-vaultpgk5xlaa4z2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vault5zxsqzdqxku\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A42%3A16.7087016Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg7yyrnbsvcm/providers/Microsoft.RecoveryServices/vaults/clitest-vault5zxsqzdqxku\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultnap3nzblec7\",\"etag\":\"W/\\\"datetime'2025-12-12T08%3A49%3A29.0802931Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg7zxbmjfftz/providers/Microsoft.RecoveryServices/vaults/clitest-vaultnap3nzblec7\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultpguf7ztztux\",\"etag\":\"W/\\\"datetime'2025-12-12T07%3A22%3A25.3806055Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgahlurnanmm/providers/Microsoft.RecoveryServices/vaults/clitest-vaultpguf7ztztux\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultkvhtussu5rz\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A42%3A27.2992962Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgayeccgm3vp/providers/Microsoft.RecoveryServices/vaults/clitest-vaultkvhtussu5rz\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultbiexkxvg4zy\",\"etag\":\"W/\\\"datetime'2025-12-12T08%3A50%3A25.2793351Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbq3yof5nlzlywpgn6di7eq4b7igsxczzlqqan5f2ye6txjoh3xkrqqngsrcz3voen/providers/Microsoft.RecoveryServices/vaults/clitest-vaultbiexkxvg4zy\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vault75p46maplcs\",\"etag\":\"W/\\\"datetime'2025-12-12T08%3A48%3A38.3244896Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbs4r3blwcg/providers/Microsoft.RecoveryServices/vaults/clitest-vault75p46maplcs\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vault57v3kafwdfm\",\"etag\":\"W/\\\"datetime'2025-12-12T07%3A22%3A29.8891703Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbsz32pqjpl/providers/Microsoft.RecoveryServices/vaults/clitest-vault57v3kafwdfm\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultml7cvf2azby\",\"etag\":\"W/\\\"datetime'2025-12-12T07%3A22%3A33.6139838Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbztq7mogmw/providers/Microsoft.RecoveryServices/vaults/clitest-vaultml7cvf2azby\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vault6bsy3xb4aap\",\"etag\":\"W/\\\"datetime'2025-12-12T08%3A51%3A48.2849686Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgcuoiullr4besuyzqgagrmj3ep32oq3mbzazzy6l7c5vmlmjagz2zhzesozayda2wh/providers/Microsoft.RecoveryServices/vaults/clitest-vault6bsy3xb4aap\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultbe4dlgt2lpm\",\"etag\":\"W/\\\"datetime'2025-12-12T07%3A23%3A36.1440526Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgd2nvyrskhg/providers/Microsoft.RecoveryServices/vaults/clitest-vaultbe4dlgt2lpm\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultxbfk5qjts6l\",\"etag\":\"W/\\\"datetime'2025-12-12T08%3A52%3A32.6508517Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgdndsqcnmop7g4vi7rsk6ybemgegz4dttpsnss2l2qtviqz3657d7olez2js32iugz/providers/Microsoft.RecoveryServices/vaults/clitest-vaultxbfk5qjts6l\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vault2tdcuvjpity\",\"etag\":\"W/\\\"datetime'2025-12-12T07%3A23%3A39.6279406Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgds4de4zrjy/providers/Microsoft.RecoveryServices/vaults/clitest-vault2tdcuvjpity\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultjr4jmsi2eiu\",\"etag\":\"W/\\\"datetime'2025-12-12T08%3A50%3A40.2855561Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgds7bi4bu3bc5pqz5jrwlagohwyea7bkuevt7ijgyei254vdr4ti6upa6mnijpjfbk/providers/Microsoft.RecoveryServices/vaults/clitest-vaultjr4jmsi2eiu\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vault5vsucjbzarw\",\"etag\":\"W/\\\"datetime'2025-12-12T07%3A24%3A41.2872496Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeieca3mc5v/providers/Microsoft.RecoveryServices/vaults/clitest-vault5vsucjbzarw\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaulttnc5n5ijuzz\",\"etag\":\"W/\\\"datetime'2025-12-12T07%3A25%3A44.6710601Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgesi4bpmzxr/providers/Microsoft.RecoveryServices/vaults/clitest-vaulttnc5n5ijuzz\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultjd6w7jfv2bq\",\"etag\":\"W/\\\"datetime'2025-12-12T08%3A50%3A38.1592331Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgf5gzj463lafuhlg2nwntquakqgbbbdfavyz5tsijqmsfk3jzsr7w73xoq76y23nti/providers/Microsoft.RecoveryServices/vaults/clitest-vaultjd6w7jfv2bq\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultbhxymvkehbl\",\"etag\":\"W/\\\"datetime'2025-12-12T07%3A26%3A47.4751Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgfdjr374owj/providers/Microsoft.RecoveryServices/vaults/clitest-vaultbhxymvkehbl\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vault7mubxheaf3t\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A46%3A23.6022932Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgfhjnqlf6uz/providers/Microsoft.RecoveryServices/vaults/clitest-vault7mubxheaf3t\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultksstyz2bqji\",\"etag\":\"W/\\\"datetime'2025-12-12T08%3A50%3A32.1301516Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rghlhm5ss2i6rdj2lmudim5sy6muwxfzukjosntesn2sgx5slwj6s4wpcej4cqvre3x/providers/Microsoft.RecoveryServices/vaults/clitest-vaultksstyz2bqji\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultthw3lxxufr2\",\"etag\":\"W/\\\"datetime'2025-12-12T08%3A51%3A58.6726654Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rghr3j7i5g5jneijnggfb55qpmmu7oqklu6alfsyqq2k6kc3krzie5odex7fr7nfyct/providers/Microsoft.RecoveryServices/vaults/clitest-vaultthw3lxxufr2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultblftka53s2w\",\"etag\":\"W/\\\"datetime'2025-12-12T08%3A50%3A13.146214Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgiveu7vegifoae36zzhsg62h2jvryowumipeibzhpovnik73edhcj4o6z5gzh6ti34/providers/Microsoft.RecoveryServices/vaults/clitest-vaultblftka53s2w\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vault3nx74hynsys\",\"etag\":\"W/\\\"datetime'2025-12-12T07%3A27%3A50.5410063Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgj6ogktzcy4/providers/Microsoft.RecoveryServices/vaults/clitest-vault3nx74hynsys\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultlsyuc4oarrt\",\"etag\":\"W/\\\"datetime'2025-12-12T07%3A27%3A54.0108996Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjavqfa3dci/providers/Microsoft.RecoveryServices/vaults/clitest-vaultlsyuc4oarrt\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultyzc2qr7oz2r\",\"etag\":\"W/\\\"datetime'2025-12-12T07%3A28%3A55.906139Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgl6dfqhvffv/providers/Microsoft.RecoveryServices/vaults/clitest-vaultyzc2qr7oz2r\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vault5bx3ugmgygp\",\"etag\":\"W/\\\"datetime'2025-12-12T07%3A28%3A58.7842199Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgl6wnxfiybx/providers/Microsoft.RecoveryServices/vaults/clitest-vault5bx3ugmgygp\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultozj3mmhyqql\",\"etag\":\"W/\\\"datetime'2025-12-12T08%3A51%3A57.890914Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgln73szhokgzbkwczfj6forrlqvu23avn7ytfrpxt7tt4driu7dswlv5bk34lzcm5q/providers/Microsoft.RecoveryServices/vaults/clitest-vaultozj3mmhyqql\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultimh5b3ekl6v\",\"etag\":\"W/\\\"datetime'2025-12-12T08%3A52%3A24.3235034Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmkx7s34knwnhgsls2pcd7konemac2rxqjfqtt7v63x7k2jpagj7y7rrlc3ibptqy2/providers/Microsoft.RecoveryServices/vaults/clitest-vaultimh5b3ekl6v\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultoc663vigb2w\",\"etag\":\"W/\\\"datetime'2025-12-12T08%3A49%3A53.3795311Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgnltlmkgi2u/providers/Microsoft.RecoveryServices/vaults/clitest-vaultoc663vigb2w\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultxa3xhztpvtu\",\"etag\":\"W/\\\"datetime'2025-12-12T08%3A48%3A42.7280854Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgnvoelwrvnb/providers/Microsoft.RecoveryServices/vaults/clitest-vaultxa3xhztpvtu\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultrpyba3nnz43\",\"etag\":\"W/\\\"datetime'2025-12-12T08%3A51%3A39.2048545Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgoi6qydosfi/providers/Microsoft.RecoveryServices/vaults/clitest-vaultrpyba3nnz43\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultotbbkjtxtaj\",\"etag\":\"W/\\\"datetime'2025-12-12T08%3A51%3A47.1793202Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgooldj62n6ch7hxxvqmo6x5y2vydsyue5d25qcpovyyup3b4zzojnjumds5mojnrag/providers/Microsoft.RecoveryServices/vaults/clitest-vaultotbbkjtxtaj\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultx6tk4nykhno\",\"etag\":\"W/\\\"datetime'2025-12-12T08%3A51%3A16.795972Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgoqq67trjre/providers/Microsoft.RecoveryServices/vaults/clitest-vaultx6tk4nykhno\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultexbgejmcend\",\"etag\":\"W/\\\"datetime'2025-12-12T08%3A51%3A51.8248435Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgowu2oj3ndo6t35od2rs53gsirzwigoa6yscj6ogjtyhqhsc6cl4yuqxnovyzlwcyz/providers/Microsoft.RecoveryServices/vaults/clitest-vaultexbgejmcend\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultqxiqco5vnor\",\"etag\":\"W/\\\"datetime'2025-12-12T07%3A31%3A11.4877604Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpjoqnu6cat/providers/Microsoft.RecoveryServices/vaults/clitest-vaultqxiqco5vnor\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultwkoh2cbjarm\",\"etag\":\"W/\\\"datetime'2025-12-12T08%3A51%3A33.1957637Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpljtsfw7lxg4nxrai36gnbgqs6qmbvkk3beiiqbpqbkwdwto35qk5scnpviniyhxo/providers/Microsoft.RecoveryServices/vaults/clitest-vaultwkoh2cbjarm\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaulto2ke4jqomwa\",\"etag\":\"W/\\\"datetime'2025-12-12T07%3A31%3A13.681058Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqsy2zpp6g3/providers/Microsoft.RecoveryServices/vaults/clitest-vaulto2ke4jqomwa\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaulttj52ufwrzro\",\"etag\":\"W/\\\"datetime'2025-12-12T07%3A31%3A15.7064094Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqxwksoei53/providers/Microsoft.RecoveryServices/vaults/clitest-vaulttj52ufwrzro\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultlg3y55oug3o\",\"etag\":\"W/\\\"datetime'2025-12-12T08%3A51%3A59.1275209Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgrgslm3qrce/providers/Microsoft.RecoveryServices/vaults/clitest-vaultlg3y55oug3o\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultk2etnwnn36e\",\"etag\":\"W/\\\"datetime'2025-12-12T07%3A31%3A20.1119984Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgrlw46nuuq5/providers/Microsoft.RecoveryServices/vaults/clitest-vaultk2etnwnn36e\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultrvnnjmspgtu\",\"etag\":\"W/\\\"datetime'2025-12-12T08%3A52%3A07.8527453Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgsdjg4s4g3o4blwa3fql3h25zoigszrlhiqeyidoapjlaizqzjato5zl5mxvs55iqv/providers/Microsoft.RecoveryServices/vaults/clitest-vaultrvnnjmspgtu\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultngfyxuuw4ht\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A49%3A48.2143225Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgseham3cwxw/providers/Microsoft.RecoveryServices/vaults/clitest-vaultngfyxuuw4ht\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vault4f2giyrpoyh\",\"etag\":\"W/\\\"datetime'2025-12-12T08%3A51%3A32.5819589Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtcctfl4ua2dynim2dfypgaotoylnv775vvo74u36e6urroz64kzoh674tjkg6hz37/providers/Microsoft.RecoveryServices/vaults/clitest-vault4f2giyrpoyh\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultkg55mljaqar\",\"etag\":\"W/\\\"datetime'2025-12-12T08%3A51%3A25.3792466Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtxoa4t73iiowggvc7n23ovriz647lwom4kzncygykizvh35ldfhesxdv2n2criqjc/providers/Microsoft.RecoveryServices/vaults/clitest-vaultkg55mljaqar\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaulteurjc2gbt7e\",\"etag\":\"W/\\\"datetime'2025-12-12T08%3A51%3A33.7895758Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgu5hbhumhqcxgjnrptz76srkqowm4la25xnaqmqh4mp7ytzis3qkg4vmdobaj6cteb/providers/Microsoft.RecoveryServices/vaults/clitest-vaulteurjc2gbt7e\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultu6htfs26nqh\",\"etag\":\"W/\\\"datetime'2025-12-12T07%3A32%3A24.3534104Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rguormbicymt/providers/Microsoft.RecoveryServices/vaults/clitest-vaultu6htfs26nqh\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaulthwq3iqbfb4s\",\"etag\":\"W/\\\"datetime'2025-12-12T07%3A33%3A27.9010315Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgv24ocqvpdj/providers/Microsoft.RecoveryServices/vaults/clitest-vaulthwq3iqbfb4s\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vault7y4fhdiqv4i\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A54%3A01.1528432Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgva5vlyuayc/providers/Microsoft.RecoveryServices/vaults/clitest-vault7y4fhdiqv4i\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultyjbqxp6mtuu\",\"etag\":\"W/\\\"datetime'2025-12-12T08%3A49%3A49.7107033Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgvenkcmmuky/providers/Microsoft.RecoveryServices/vaults/clitest-vaultyjbqxp6mtuu\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultbb7zul236z2\",\"etag\":\"W/\\\"datetime'2025-12-12T07%3A41%3A06.8238388Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgwhn5zwkci6/providers/Microsoft.RecoveryServices/vaults/clitest-vaultbb7zul236z2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultk4eqdutogrq\",\"etag\":\"W/\\\"datetime'2025-12-12T08%3A52%3A01.3008298Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgwl3udk2zry46qt6wpxpomk5tcz6aj4yytxhiszhsbisjdnfrgzisxeai5cdfk3w6k/providers/Microsoft.RecoveryServices/vaults/clitest-vaultk4eqdutogrq\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultdr4qonfffxf\",\"etag\":\"W/\\\"datetime'2025-12-12T08%3A51%3A26.8417821Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgwsht2qhusc/providers/Microsoft.RecoveryServices/vaults/clitest-vaultdr4qonfffxf\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaulthvtb3u5uflr\",\"etag\":\"W/\\\"datetime'2025-12-12T07%3A41%3A13.5346955Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgy4q4r753h4/providers/Microsoft.RecoveryServices/vaults/clitest-vaulthvtb3u5uflr\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultkodrrji3ynw\",\"etag\":\"W/\\\"datetime'2025-12-12T08%3A48%3A35.6383463Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgyd7li7qt7d/providers/Microsoft.RecoveryServices/vaults/clitest-vaultkodrrji3ynw\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultrzk2n76c2ge\",\"etag\":\"W/\\\"datetime'2025-12-12T08%3A51%3A54.0021505Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgye7qrsbohq/providers/Microsoft.RecoveryServices/vaults/clitest-vaultrzk2n76c2ge\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultkp5kmtwtal5\",\"etag\":\"W/\\\"datetime'2025-12-12T07%3A42%3A21.0811195Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgytoc3bdlt3/providers/Microsoft.RecoveryServices/vaults/clitest-vaultkp5kmtwtal5\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultyovqxpe34f4\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A54%3A43.3572622Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgyymobtr3rk/providers/Microsoft.RecoveryServices/vaults/clitest-vaultyovqxpe34f4\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vault4f4kqwll2qr\",\"etag\":\"W/\\\"datetime'2025-12-12T07%3A42%3A23.5403367Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgyzhyosvymr/providers/Microsoft.RecoveryServices/vaults/clitest-vault4f4kqwll2qr\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"clitest-vaultfozqtljmy7s\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A54%3A46.9511058Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgz664mkbgvz/providers/Microsoft.RecoveryServices/vaults/clitest-vaultfozqtljmy7s\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"vaultsd180425-2\",\"etag\":\"W/\\\"datetime'2025-08-14T11%3A55%3A41.2996206Z'\\\"\",\"tags\":{\"Owner\":\"Kalyan\",\"Purpose\":\"Testing\",\"DeleteBy\":\"10-2025\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/deleterg/providers/Microsoft.RecoveryServices/vaults/vaultsd180425-2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"DonotUse-iaasvmsqlworkload-BVT-Ecy-vault\",\"etag\":\"W/\\\"datetime'2025-08-14T12%3A02%3A25.6245775Z'\\\"\",\"tags\":{\"MABUsed\":\"Yes\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DonotUse-iaasvmsqlworkload-BVT-Ecy-RG/providers/Microsoft.RecoveryServices/vaults/DonotUse-iaasvmsqlworkload-BVT-Ecy-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"newvaultqqq\",\"etag\":\"W/\\\"datetime'2025-08-14T12%3A31%3A14.1289891Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoocreateVMM/providers/Microsoft.RecoveryServices/vaults/newvaultqqq\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"testgesahoo\",\"etag\":\"W/\\\"datetime'2025-08-19T10%3A23%3A52.7906557Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoocreateVMM/providers/Microsoft.RecoveryServices/vaults/testgesahoo\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"testVault22\",\"etag\":\"W/\\\"datetime'2025-10-03T04%3A58%3A13.5286278Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoocreateVMM/providers/Microsoft.RecoveryServices/vaults/testVault22\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"asw1\",\"etag\":\"W/\\\"datetime'2026-07-19T12%3A34%3A16.0051486Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoohana/providers/Microsoft.RecoveryServices/vaults/asw1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"asw2\",\"etag\":\"W/\\\"datetime'2026-07-19T12%3A49%3A12.5917416Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoohana/providers/Microsoft.RecoveryServices/vaults/asw2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"asw3\",\"etag\":\"W/\\\"datetime'2026-07-19T12%3A59%3A48.6677659Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoohana/providers/Microsoft.RecoveryServices/vaults/asw3\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"asw5\",\"etag\":\"W/\\\"datetime'2026-07-19T13%3A01%3A21.6096596Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoohana/providers/Microsoft.RecoveryServices/vaults/asw5\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"grsVault55\",\"etag\":\"W/\\\"datetime'2026-03-07T07%3A32%3A13.2654913Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoohana/providers/Microsoft.RecoveryServices/vaults/grsVault55\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"NONROCVaultECY2\",\"etag\":\"W/\\\"datetime'2026-07-13T07%3A30%3A08.5000743Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoohana/providers/Microsoft.RecoveryServices/vaults/NONROCVaultECY2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"ROCVaultECY2\",\"etag\":\"W/\\\"datetime'2026-07-11T03%3A56%3A22.8463038Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoohana/providers/Microsoft.RecoveryServices/vaults/ROCVaultECY2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"vfx1\",\"etag\":\"W/\\\"datetime'2026-04-01T05%3A51%3A51.9479635Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoohana/providers/Microsoft.RecoveryServices/vaults/vfx1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"zrsVault2\",\"etag\":\"W/\\\"datetime'2026-02-19T06%3A38%3A39.4288527Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoohana/providers/Microsoft.RecoveryServices/vaults/zrsVault2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"gvjreddy-czr-grsvaultwithcrr\",\"etag\":\"W/\\\"datetime'2026-06-15T09%3A05%3A58.5776955Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-czr-grsvaultwithcrr\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"gvjreddy-czr-grsvaultwithoutcrr\",\"etag\":\"W/\\\"datetime'2025-08-14T12%3A39%3A28.4769301Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-czr-grsvaultwithoutcrr\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"gvjreddy-czr-lrsvault\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A34%3A56.0057331Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-czr-lrsvault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"gvjreddy-czr-zrsvault\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A34%3A57.2641781Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-czr-zrsvault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"gvjreddy-ecy-time-based-immutability-202605061853\",\"etag\":\"W/\\\"datetime'2026-06-05T13%3A43%3A37.4706175Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-ecy-time-based-immutability-202605061853\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"gvjreddy-ecy-time-based-immutability-202605061914\",\"etag\":\"W/\\\"datetime'2026-06-05T13%3A51%3A30.0626058Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-ecy-time-based-immutability-202605061914\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"gvjreddy-ecy-time-based-immutability-202605061917\",\"etag\":\"W/\\\"datetime'2026-06-05T14%3A07%3A08.5470571Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-ecy-time-based-immutability-202605061917\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"gvjreddy-ecy-time-based-immutability-202605061925\",\"etag\":\"W/\\\"datetime'2026-06-09T09%3A13%3A23.9085976Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-ecy-time-based-immutability-202605061925\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"gvjreddy-ecy-time-based-immutability-202605061939\",\"etag\":\"W/\\\"datetime'2026-06-05T14%3A12%3A40.9621189Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-ecy-time-based-immutability-202605061939\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"gvjreddy-ecy-time-based-immutability-202606091423\",\"etag\":\"W/\\\"datetime'2026-06-09T09%3A09%3A58.020639Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-ecy-time-based-immutability-202606091423\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"gvjreddy-ecy-time-based-immutability-202606091440\",\"etag\":\"W/\\\"datetime'2026-06-09T09%3A10%3A41.7846628Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-ecy-time-based-immutability-202606091440\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"gvjreddy-ecy-vault-for-softdelete\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A34%3A58.2737335Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-ecy-vault-for-softdelete\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"gvjreddy-immutability-vault\",\"etag\":\"W/\\\"datetime'2026-05-29T06%3A55%3A57.222139Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-immutability-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"gvjreddy-test-ecy-rsvault\",\"etag\":\"W/\\\"datetime'2026-06-09T07%3A03%3A56.7167536Z'\\\"\",\"tags\":{\"BackupVMName\":\"edgezonetest1\",\"BackupVM + Name Test\":\"Sample VM Name\"},\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"08acd955-274e-4697-883b-8f7775b6d4bf\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-test-ecy-rsvault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"gvjreddy-test-ecy-rsvault-cmk-after-enabling-mua\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A35%3A01.3983582Z'\\\"\",\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"22adfe74-493b-4305-a61f-6c6fcc53eee1\",\"type\":\"SystemAssigned, + UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/gvjreddy-test-ecy-mi\":{\"clientId\":\"c2412e13-88a8-4835-b396-54b237b06074\",\"principalId\":\"555834a3-dae4-40c9-a316-bcdaa9cf290d\"}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-test-ecy-rsvault-cmk-after-enabling-mua\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"gvjreddy-test-ecy-rsvault-with-telemetry\",\"etag\":\"W/\\\"datetime'2026-05-19T06%3A57%3A39.993562Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-test-ecy-rsvault-with-telemetry\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"gvjreddy-test-ecy-rsvault-with-telemetry-1\",\"etag\":\"W/\\\"datetime'2026-05-19T08%3A37%3A12.3383565Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-test-ecy-rsvault-with-telemetry-1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"gvjreddy-test-ecy-rsvault-with-userassigned-cmk\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A35%3A02.7167763Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":{\"keyVaultProperties\":{\"keyUri\":\"https://gvjreddy-test-ecy-kv.vault.azure.net/keys/gvjreddy-test-ecy-key-alternate\"},\"kekIdentity\":{\"useSystemAssignedIdentity\":false,\"userAssignedIdentity\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/gvjreddy-test-ecy-mi\"},\"infrastructureEncryption\":\"Disabled\"},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-test-ecy-rsvault-with-userassigned-cmk\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"gvjreddy-test-ecy-rsvault-with-userassigned-cmk-1\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A35%3A04.0971682Z'\\\"\",\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"b36c6baf-d775-4bea-b407-0cf5c6854048\",\"type\":\"SystemAssigned, + UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/gvjreddy-test-ecy-mi\":{\"clientId\":\"c2412e13-88a8-4835-b396-54b237b06074\",\"principalId\":\"555834a3-dae4-40c9-a316-bcdaa9cf290d\"}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-test-ecy-rsvault-with-userassigned-cmk-1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"gvjreddy-test-ecy-vault-muadeletescenario\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A35%3A04.8588324Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-test-ecy-vault-muadeletescenario\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"gvjreddy-test-ecy-vault-muawithcontributor\",\"etag\":\"W/\\\"datetime'2026-01-13T10%3A15%3A21.5306545Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-test-ecy-vault-muawithcontributor\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"gvjreddy-test-ecy-vault-muawithreader\",\"etag\":\"W/\\\"datetime'2026-06-25T13%3A01%3A35.6123303Z'\\\"\",\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"0d26ad4d-7fd5-4b8c-9c00-30d4ce7b46e0\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-test-ecy-vault-muawithreader\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"gvjreddy-test-vault-20230714-1237\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A35%3A07.9254815Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-test-vault-20230714-1237\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"gvjreddy-test-vault-20230714-1349\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A35%3A08.725129Z'\\\"\",\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"e43e0a3d-2e6b-412e-bfdc-07f95f93def3\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":{\"keyVaultProperties\":{\"keyUri\":\"https://gvjreddy-test-ecy-kv.vault.azure.net/keys/gvjreddy-test-ecy-key\"},\"kekIdentity\":{\"useSystemAssignedIdentity\":true,\"userAssignedIdentity\":null},\"infrastructureEncryption\":\"Disabled\"},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-test-vault-20230714-1349\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"gvjreddy-test-vault-20230714-1353\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A35%3A09.5937463Z'\\\"\",\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"b80e21cc-d9b7-4527-bb86-fc15e4d4d735\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":{\"keyVaultProperties\":{\"keyUri\":\"https://gvjreddy-test-ecy-kv.vault.azure.net/keys/gvjreddy-test-ecy-key-alternate\"},\"kekIdentity\":{\"useSystemAssignedIdentity\":true,\"userAssignedIdentity\":null},\"infrastructureEncryption\":\"Disabled\"},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-test-vault-20230714-1353\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"gvjreddy-test-vault-202307181605\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A35%3A10.2034779Z'\\\"\",\"tags\":{\"DeleteBy\":\"08-2023\",\"Purpose\":\"PolicyType + change testing\",\"Owner\":\"gvjreddy\",\"AutoShutdown\":\"Yes\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-test-vault-202307181605\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"gvjreddy-test-vault-240711\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A35%3A10.7162517Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-test-vault-240711\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"hiagaeuap-vault1\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A35%3A11.3249843Z'\\\"\",\"tags\":{\"MABUsed\":\"Yes\",\"Owner\":\"hiaga\",\"Purpose\":\"Testing\",\"DeleteBy\":\"06-2022\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagaCZR-rg/providers/Microsoft.RecoveryServices/vaults/hiagaeuap-vault1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"hiagaeuapVault2\",\"etag\":\"W/\\\"datetime'2025-08-14T16%3A35%3A11.7787836Z'\\\"\",\"tags\":{\"MABUsed\":\"Yes\",\"Owner\":\"hiaga\",\"Purpose\":\"Testing\",\"DeleteBy\":\"01-2025\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Disabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagaCZR-rg/providers/Microsoft.RecoveryServices/vaults/hiagaeuapVault2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"sfsag\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A16%3A48.4038785Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abcc-copilot-testing/providers/Microsoft.RecoveryServices/vaults/sfsag\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"ctr-sqlinstance-testing\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A18%3A40.8837566Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adigupt-ecy-rg/providers/Microsoft.RecoveryServices/vaults/ctr-sqlinstance-testing\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"ctr-eacan-restore\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A19%3A13.6734055Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adigupt-mua-rg/providers/Microsoft.RecoveryServices/vaults/ctr-eacan-restore\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"target-vault\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A15%3A18.356761Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adigupt-mua-rg/providers/Microsoft.RecoveryServices/vaults/target-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"akkanasefasdf\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A17%3A04.5416452Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/akkanasefasdf\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"akkanaseGRS\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A16%3A48.4528504Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/akkanaseGRS\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"akkanaseTestabc\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A18%3A27.983085Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/akkanaseTestabc\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"TestDoubleSlashVault\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A17%3A17.1525996Z'\\\"\",\"tags\":{\"kpl\":\"kjl\"},\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cmk.system/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identity1\":{\"clientId\":\"73571b84-6f37-4bdd-a60f-1121cb5d31d7\",\"principalId\":\"13a05d1f-eae9-47ae-944f-46270c95d12e\"}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":{\"keyVaultProperties\":{\"keyUri\":\"https://cmkkeyvaultea1.vault.azure.net/keys/key1\"},\"kekIdentity\":{\"useSystemAssignedIdentity\":false,\"userAssignedIdentity\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cmk.system/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identity1\"},\"infrastructureEncryption\":\"Disabled\"},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adkayeth/providers/Microsoft.RecoveryServices/vaults/TestDoubleSlashVault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"afs-pstest-vault\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A16%3A22.6665495Z'\\\"\",\"tags\":{\"MABUsed\":\"yes\",\"Owner\":\"hiaga\",\"Purpose\":\"testing\",\"DeleteBy\":\"01-2099\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/afs-pstest-rg/providers/Microsoft.RecoveryServices/vaults/afs-pstest-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"afsdeletevault\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A17%3A45.2623602Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/afstests/providers/Microsoft.RecoveryServices/vaults/afsdeletevault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"akkanaseTest123f\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A17%3A17.0806397Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/afstests/providers/Microsoft.RecoveryServices/vaults/akkanaseTest123f\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"crr-test\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A15%3A48.8894044Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":null,\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/afstests/providers/Microsoft.RecoveryServices/vaults/crr-test\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"Donotuse-afsnavigation-ea-vault\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A15%3A49.6639738Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/afstests/providers/Microsoft.RecoveryServices/vaults/Donotuse-afsnavigation-ea-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"akkanaseCmkUserTest\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A16%3A43.7022837Z'\\\"\",\"identity\":{\"type\":\"None\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanase-diskaccess/providers/Microsoft.RecoveryServices/vaults/akkanaseCmkUserTest/privateEndpointConnections/akkanasediskaccess.3980868635877947304.backup.b5a72c23-e8d6-4a09-bac3-ba346f4a9cdd\",\"name\":\"akkanasediskaccess.3980868635877947304.backup.b5a72c23-e8d6-4a09-bac3-ba346f4a9cdd\",\"type\":\"Microsoft.RecoveryServices/vaults/privateEndpointConnections\",\"location\":\"eastasia\",\"properties\":{\"provisioningState\":\"Failed\",\"privateEndpoint\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanase-diskaccess/providers/Microsoft.Network/privateEndpoints/akkanasediskaccess\"},\"groupIds\":[\"AzureBackup\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"None\",\"actionsRequired\":\"None\"}}}],\"privateEndpointStateForBackup\":\"Enabled\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanase-diskaccess/providers/Microsoft.RecoveryServices/vaults/akkanaseCmkUserTest\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"akkanaseTest\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A17%3A43.9749526Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseAFSTest/providers/Microsoft.RecoveryServices/vaults/akkanaseTest\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"akkanaseTest\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A18%3A22.1969002Z'\\\"\",\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cmk.system/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identity1\":{\"clientId\":\"73571b84-6f37-4bdd-a60f-1121cb5d31d7\",\"principalId\":\"13a05d1f-eae9-47ae-944f-46270c95d12e\"}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseTest/providers/Microsoft.RecoveryServices/vaults/akkanaseTest/privateEndpointConnections/akkanaseTime.7422943731775250981.backup.503d360e-d81b-4b94-8f13-b68f9a16b2ab\",\"name\":\"akkanaseTime.7422943731775250981.backup.503d360e-d81b-4b94-8f13-b68f9a16b2ab\",\"type\":\"Microsoft.RecoveryServices/vaults/privateEndpointConnections\",\"location\":\"eastasia\",\"properties\":{\"provisioningState\":\"Failed\",\"privateEndpoint\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseTest/providers/Microsoft.Network/privateEndpoints/akkanaseTime\"},\"groupIds\":[\"AzureBackup\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"None\",\"actionsRequired\":\"None\"}}}],\"privateEndpointStateForBackup\":\"Enabled\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":{\"keyVaultProperties\":{\"keyUri\":\"https://cmkkeyvaultea1.vault.azure.net/keys/key1\"},\"kekIdentity\":{\"useSystemAssignedIdentity\":false,\"userAssignedIdentity\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cmk.system/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identity1\"},\"infrastructureEncryption\":\"Disabled\"},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseTest/providers/Microsoft.RecoveryServices/vaults/akkanaseTest\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"akkanaseTestfsa\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A16%3A49.5960933Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseTest/providers/Microsoft.RecoveryServices/vaults/akkanaseTestfsa\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"newVault1\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A18%3A35.0454778Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseTest/providers/Microsoft.RecoveryServices/vaults/newVault1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"amansha-bug-imm\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A16%3A38.861793Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amansha-rg/providers/Microsoft.RecoveryServices/vaults/amansha-bug-imm\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"amansha-ctr-rsv-ea-1\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A18%3A45.448896Z'\\\"\",\"tags\":{\"ManagerAlias\":\"vepothir\",\"DeleteBy\":\"02-2029\",\"Purpose\":\"Testing\",\"Owner\":\"amansha\",\"azsecpack\":\"nonprod\",\"platformsettings.host_environment.service.platform_optedin_for_rootcerts\":\"true\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amansha-rg/providers/Microsoft.RecoveryServices/vaults/amansha-ctr-rsv-ea-1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"amansha-ctr-rsv-target-1\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A16%3A25.0524742Z'\\\"\",\"tags\":{\"ManagerAlias\":\"vepothir\",\"DeleteBy\":\"02-2029\",\"Purpose\":\"Testing\",\"Owner\":\"amansha\",\"azsecpack\":\"nonprod\",\"platformsettings.host_environment.service.platform_optedin_for_rootcerts\":\"true\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amansha-rg/providers/Microsoft.RecoveryServices/vaults/amansha-ctr-rsv-target-1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"amansha-rsv-ea\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A17%3A27.7098955Z'\\\"\",\"tags\":{\"Owner\":\"amansha\",\"Purpose\":\"Testing\",\"ManagerAlias\":\"vepothir\",\"Workload\":\"CTR\",\"TestType\":\"LongHaul\",\"DeleteBy\":\"09-2026\"},\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"8e0b0865-4886-475c-affd-57a3099548c4\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Disabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amansha-rg/providers/Microsoft.RecoveryServices/vaults/amansha-rsv-ea\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"amchandnEArsv\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A16%3A26.073226Z'\\\"\",\"tags\":{\"Owner\":\"mabteam\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amchandnEA/providers/Microsoft.RecoveryServices/vaults/amchandnEArsv\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"asmaskar123\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A18%3A51.5228333Z'\\\"\",\"tags\":{\"Owner\":\"asmaskar\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"b779b5de-9095-4102-abb4-72ef36f76315\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":{\"keyVaultProperties\":{\"keyUri\":\"https:\\\\\\\\ab.vault.azure.net\"},\"kekIdentity\":{\"useSystemAssignedIdentity\":true,\"userAssignedIdentity\":null},\"infrastructureEncryption\":\"Disabled\"},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amchandnEA/providers/Microsoft.RecoveryServices/vaults/asmaskar123\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"ankur-vault-resourceguard\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A15%3A29.2389078Z'\\\"\",\"tags\":{\"Owner\":\"hiaga\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurRG137/providers/Microsoft.RecoveryServices/vaults/ankur-vault-resourceguard\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"ankurRSV96\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A15%3A45.160347Z'\\\"\",\"tags\":{\"Owner\":\"ankur\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurRG137/providers/Microsoft.RecoveryServices/vaults/ankurRSV96\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"AnkurRSVRGTest2\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A17%3A45.2863461Z'\\\"\",\"tags\":{\"Owner\":\"ankur\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurRG137/providers/Microsoft.RecoveryServices/vaults/AnkurRSVRGTest2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"RG12\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A17%3A06.7890875Z'\\\"\",\"tags\":{\"Owner\":\"ankur\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurRG137/providers/Microsoft.RecoveryServices/vaults/RG12\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"RGVaultTest\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A18%3A52.7223941Z'\\\"\",\"tags\":{\"Owner\":\"ankur\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurRG137/providers/Microsoft.RecoveryServices/vaults/RGVaultTest\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"RSRansomewareHackathonVault\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A18%3A19.8127756Z'\\\"\",\"tags\":{\"Name\":\"Hackathon2024Vault\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurRG137/providers/Microsoft.RecoveryServices/vaults/RSRansomewareHackathonVault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"RSV2211\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A15%3A26.2875948Z'\\\"\",\"tags\":{\"Owner\":\"ankur\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurRG137/providers/Microsoft.RecoveryServices/vaults/RSV2211\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"RSV2411\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A17%3A30.0463806Z'\\\"\",\"tags\":{\"Owner\":\"ankur\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurRG137/providers/Microsoft.RecoveryServices/vaults/RSV2411\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"RSV241111\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A15%3A22.8001669Z'\\\"\",\"tags\":{\"Owner\":\"ankur\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurRG137/providers/Microsoft.RecoveryServices/vaults/RSV241111\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"RSVaultForTesting\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A15%3A22.9031069Z'\\\"\",\"tags\":{\"Owner\":\"ankur\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurRG137/providers/Microsoft.RecoveryServices/vaults/RSVaultForTesting\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"testVault1891\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A17%3A48.6892302Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurRG137/providers/Microsoft.RecoveryServices/vaults/testVault1891\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"TestVault219\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A18%3A57.4124985Z'\\\"\",\"tags\":{\"Owner\":\"ankur\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurRG137/providers/Microsoft.RecoveryServices/vaults/TestVault219\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"TestVault2610\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A16%3A42.516492Z'\\\"\",\"tags\":{\"Owner\":\"ankur\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurRG137/providers/Microsoft.RecoveryServices/vaults/TestVault2610\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"TestVaultRepro\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A17%3A31.3222839Z'\\\"\",\"tags\":{\"Owner\":\"ankur\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Disabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurRG137/providers/Microsoft.RecoveryServices/vaults/TestVaultRepro\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"Vault119\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A16%3A22.528373Z'\\\"\",\"tags\":{\"Owner\":\"ankur\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurRG137/providers/Microsoft.RecoveryServices/vaults/Vault119\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"DonotUse-sapasedatabaseworkload-BVT-Vault\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A17%3A45.4649011Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ase-workload.existing/providers/Microsoft.RecoveryServices/vaults/DonotUse-sapasedatabaseworkload-BVT-Vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"sapasedatabaseworkloadexistingvaulteastasia\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A17%3A38.282891Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ase-workload.existing/providers/Microsoft.RecoveryServices/vaults/sapasedatabaseworkloadexistingvaulteastasia\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"DonotUse-sapasedatabase-BVT-Vault\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A17%3A43.0015042Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ase.workload/providers/Microsoft.RecoveryServices/vaults/DonotUse-sapasedatabase-BVT-Vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"testcsrsrc\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A19%3A03.0385791Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chandrikarg/providers/Microsoft.RecoveryServices/vaults/testcsrsrc\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"clitest-vaultxiatviv3gcr\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A17%3A17.0286694Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3kqkpka2eh/providers/Microsoft.RecoveryServices/vaults/clitest-vaultxiatviv3gcr\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"clitest-vaulttvvff46kmtl\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A19%3A07.9562355Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":null,\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg6wcbdfnzw5/providers/Microsoft.RecoveryServices/vaults/clitest-vaulttvvff46kmtl\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"clitest-vault2k3fqj54ds7\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A19%3A08.0461839Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":null,\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgijzhkmzp2x/providers/Microsoft.RecoveryServices/vaults/clitest-vault2k3fqj54ds7\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"clitest-vault5u6owqetawx\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A18%3A43.1436676Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgiv6mglu63d/providers/Microsoft.RecoveryServices/vaults/clitest-vault5u6owqetawx\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"clitest-vaultajgisvb5lcb\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A17%3A45.5839506Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":null,\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgq2ngzm2cfv23h26gwc2vgkzykpubprmwhfecdhfgigdi5a3igjbwbffa2arltxuoh/providers/Microsoft.RecoveryServices/vaults/clitest-vaultajgisvb5lcb\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"clitest-vaultfkwemaxgduh\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A18%3A03.8826991Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":null,\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgujpkcer63dnd7lksn2rtkjzdr5eolvm54rd4rlh3qvhj73vpfdwwu6dfbxof3e7kz/providers/Microsoft.RecoveryServices/vaults/clitest-vaultfkwemaxgduh\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"deepu-ctr-source-vault\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A17%3A58.1009684Z'\\\"\",\"tags\":{\"Owner\":\"deepuyadav\",\"ManagerAlias\":\"vintib\",\"TestType\":\"Ad-hoc\",\"Purpose\":\"ctr + bug bash\",\"DeleteBy\":\"12-2026\",\"Workload\":\"SQL\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Enabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/deepu-ctr-source-rg/providers/Microsoft.RecoveryServices/vaults/deepu-ctr-source-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"sqlageacanvault\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A15%3A35.529951Z'\\\"\",\"tags\":{\"Owner\":\"gesahoo\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/donot-use-bvt-ea-can2-oss/providers/Microsoft.RecoveryServices/vaults/sqlageacanvault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"Donot-Use-Port-Accessibility-Vault\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A17%3A39.4749617Z'\\\"\",\"tags\":{\"Purpose\":\"BVT\",\"Owner\":\"akkanase\",\" + DeleteBy\":\"05-2040\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DoNotUse-Accessibility-Test/providers/Microsoft.RecoveryServices/vaults/Donot-Use-Port-Accessibility-Vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"bvt-alert-navigation\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A16%3A44.6987203Z'\\\"\",\"tags\":{\"Owner\":\"adigupt\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DONOTUSE-BVT-EA-CAN-RG/providers/Microsoft.RecoveryServices/vaults/bvt-alert-navigation\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"DonotUse-iaasvmsqlworkload-BVT-EUS-Vault\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A18%3A02.7540022Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DonotUse-iaasvmsqlworkload-BVT-EUS-RG/providers/Microsoft.RecoveryServices/vaults/DonotUse-iaasvmsqlworkload-BVT-EUS-Vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"donotuse-immutability-bvt-ea-vault\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A19%3A13.6794019Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/donotuse-ransomware-bvt-ea-rg/providers/Microsoft.RecoveryServices/vaults/donotuse-immutability-bvt-ea-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"donotuse-immutability-bvt-ea-vault-to-update-state\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A17%3A45.194398Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/donotuse-ransomware-bvt-ea-rg/providers/Microsoft.RecoveryServices/vaults/donotuse-immutability-bvt-ea-vault-to-update-state\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"Donotuse-navigation-vault\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A15%3A59.1275008Z'\\\"\",\"tags\":{\"Owner\":\"akkanase\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/doNotUsePortalBVT/providers/Microsoft.RecoveryServices/vaults/Donotuse-navigation-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"eacangesahoo\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A17%3A43.8360313Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoohana/providers/Microsoft.RecoveryServices/vaults/eacangesahoo\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"gesahoonew\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A18%3A17.4765212Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoohana/providers/Microsoft.RecoveryServices/vaults/gesahoonew\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"lrsAbhinavvault\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A16%3A08.6470702Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoohana/providers/Microsoft.RecoveryServices/vaults/lrsAbhinavvault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"newqw\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A17%3A40.619789Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoohana/providers/Microsoft.RecoveryServices/vaults/newqw\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"newvault\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A17%3A02.1902849Z'\\\"\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoohana/providers/Microsoft.RecoveryServices/vaults/newvault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"newVault71\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A17%3A34.7693447Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoohana/providers/Microsoft.RecoveryServices/vaults/newVault71\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"softdelete1\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A16%3A50.7512248Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoohana/providers/Microsoft.RecoveryServices/vaults/softdelete1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"test\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A15%3A36.3910849Z'\\\"\",\"tags\":{\"Owner\":\"gesahoo\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoohana/providers/Microsoft.RecoveryServices/vaults/test\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"vaau13\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A18%3A53.790434Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoohana/providers/Microsoft.RecoveryServices/vaults/vaau13\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"vau07\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A16%3A36.663582Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoohana/providers/Microsoft.RecoveryServices/vaults/vau07\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"vau12\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A16%3A22.5680442Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"monitoringSettings\":{\"azureMonitorAlertSettings\":{\"alertsForAllJobFailures\":\"Enabled\",\"alertsForAllReplicationIssues\":\"Enabled\",\"alertsForAllFailoverIssues\":\"Enabled\"},\"classicAlertSettings\":{\"alertsForCriticalOperations\":\"Disabled\",\"emailNotificationsForSiteRecovery\":\"Enabled\"}},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoohana/providers/Microsoft.RecoveryServices/vaults/vau12\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"vau16\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A15%3A48.4836343Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoohana/providers/Microsoft.RecoveryServices/vaults/vau16\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"vau17\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A15%3A46.2290065Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoohana/providers/Microsoft.RecoveryServices/vaults/vau17\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"vau20\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A18%3A33.8033935Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoohana/providers/Microsoft.RecoveryServices/vaults/vau20\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"vau22\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A16%3A53.1566448Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoohana/providers/Microsoft.RecoveryServices/vaults/vau22\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"vau33\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A16%3A59.7870549Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoohana/providers/Microsoft.RecoveryServices/vaults/vau33\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"vault966\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A18%3A34.047799Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoohana/providers/Microsoft.RecoveryServices/vaults/vault966\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"gesahooAGvault\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A18%3A53.8540328Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gsAG1-EASTASIA/providers/Microsoft.RecoveryServices/vaults/gesahooAGvault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"gvjreddy-eacan-rsvault-vault-softdelete-testing\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A18%3A17.4655268Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-eacan-rsvault-vault-softdelete-testing\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"gvjreddy-test-ea-rsvault\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A17%3A21.8185468Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-test-ea-rsvault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"gvjreddy-test-ea-rsvault-with-userassigned-cmk\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A16%3A05.0022181Z'\\\"\",\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/gvjreddy-test-ea-mi\":{\"clientId\":\"7af51b8c-f9bf-44b6-9de4-fd3ba8a8d90b\",\"principalId\":\"6b5a9e25-7d46-4c7f-bdf6-165ce283ff9e\"}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":{\"keyVaultProperties\":{\"keyUri\":\"https://gvjreddy-test-ea-kv.vault.azure.net/keys/gvjreddy-test-key-for-vault-encryption-alternate\"},\"kekIdentity\":{\"useSystemAssignedIdentity\":false,\"userAssignedIdentity\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/gvjreddy-test-ea-mi\"},\"infrastructureEncryption\":\"Disabled\"},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-test-ea-rsvault-with-userassigned-cmk\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"hiaga-eacan-acis1\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A15%3A59.4173373Z'\\\"\",\"tags\":{\"MABUsed\":\"Yes\",\"Owner\":\"hiaga\",\"Purpose\":\"testing\",\"DeleteBy\":\"01-2025\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-eacan-acis1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"iaasvm-encryptedvm-vault\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A16%3A57.1073599Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvm.encryptedvm-eastasia/providers/Microsoft.RecoveryServices/vaults/iaasvm-encryptedvm-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"donotuse-iaasvm-selectivedisk-vault-eastasia\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A18%3A59.7467516Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvm.existing.vaults/providers/Microsoft.RecoveryServices/vaults/donotuse-iaasvm-selectivedisk-vault-eastasia\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"doNotUseSoftDeleteTestVaultEastAsia\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A15%3A51.7726883Z'\\\"\",\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dimunj-eus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/test-uami-wus2-1\":{\"clientId\":\"3cbdfe2c-4c86-49e9-a9f1-75065b32bf36\",\"principalId\":\"84506a41-2c01-49fb-bdc5-a0d100f6b193\"}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvm.existing.vaults/providers/Microsoft.RecoveryServices/vaults/doNotUseSoftDeleteTestVaultEastAsia\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"iaasmchangepol-eastasia\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A18%3A07.3368399Z'\\\"\",\"tags\":{\"Purpose\":\"BVT\",\"Owner\":\"akkanase\",\"MabUsed\":\"yes\",\"DeleteBy\":\"05-2099\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvm.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasmchangepol-eastasia\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"iaasvmexistingvault-eastasia\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A15%3A48.5775812Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvm.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmexistingvault-eastasia\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"newvault\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A18%3A23.3554483Z'\\\"\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvm.existing.vaults/providers/Microsoft.RecoveryServices/vaults/newvault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"donotuse-sourcescan-bulk-BVT-vault\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A16%3A22.5620479Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvm.new/providers/Microsoft.RecoveryServices/vaults/donotuse-sourcescan-bulk-BVT-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"donotuse-sourcescan-bulk-BVT-vault-12\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A16%3A51.930835Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvm.new/providers/Microsoft.RecoveryServices/vaults/donotuse-sourcescan-bulk-BVT-vault-12\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"sarathtestiaasvmvault\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A16%3A27.2988808Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvm.new/providers/Microsoft.RecoveryServices/vaults/sarathtestiaasvmvault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"scourcescanx-1\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A15%3A52.9682154Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvm.new/providers/Microsoft.RecoveryServices/vaults/scourcescanx-1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"sourcescan2\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A16%3A44.8870446Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvm.new/providers/Microsoft.RecoveryServices/vaults/sourcescan2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"sourcescannewvaultlwhpx\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A17%3A45.5218655Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvm.new/providers/Microsoft.RecoveryServices/vaults/sourcescannewvaultlwhpx\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"sourcescannewvaultrvrmk\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A18%3A41.9581441Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvm.new/providers/Microsoft.RecoveryServices/vaults/sourcescannewvaultrvrmk\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"sourcescany-2\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A18%3A05.0133234Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvm.new/providers/Microsoft.RecoveryServices/vaults/sourcescany-2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"iaasvm-enablevmbackup-vaultdncub\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A19%3A09.2413418Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvm.vmbackup-eastasia/providers/Microsoft.RecoveryServices/vaults/iaasvm-enablevmbackup-vaultdncub\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"iaasvmnavigationtestvault\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A17%3A26.5421887Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IaasVMNavigationTest-RG-eastasia/providers/Microsoft.RecoveryServices/vaults/iaasvmnavigationtestvault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"donotuse-sqlinstance-workload-vault-hpqfc\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A17%3A40.5648204Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlinstanceworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/donotuse-sqlinstance-workload-vault-hpqfc\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"donotuse-sqlinstance-workload-vault-nwwts\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A17%3A14.3222055Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlinstanceworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/donotuse-sqlinstance-workload-vault-nwwts\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"donotuse-sqlinstance-workload-vault-qczof\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A15%3A52.904251Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlinstanceworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/donotuse-sqlinstance-workload-vault-qczof\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"donotuse-sqlinstance-workload-vault-vjvkz\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A16%3A41.2694883Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlinstanceworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/donotuse-sqlinstance-workload-vault-vjvkz\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"donotusegrantpermissionvault\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A16%3A23.8478821Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlinstanceworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/donotusegrantpermissionvault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"donotusesqlinstanceworkloadvault\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A16%3A26.1581776Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlinstanceworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/donotusesqlinstanceworkloadvault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"iaasvmsqlinstanceworkloadexistingvaulteastasia\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A17%3A03.3100208Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlinstanceworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlinstanceworkloadexistingvaulteastasia\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"donotuse-sql-vm-nav-abcd\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A17%3A17.0286694Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing/providers/Microsoft.RecoveryServices/vaults/donotuse-sql-vm-nav-abcd\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"donotuse-sqlworkload-bvt-vault-ktgct\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A15%3A29.3348619Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/donotuse-sqlworkload-bvt-vault-ktgct\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"iaasvmsqlworkloadexistingvaulteastasia\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A17%3A50.9763716Z'\\\"\",\"tags\":{\"MAB + Used\":\"Yes\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvaulteastasia\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"acisactiontest2\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A15%3A48.4886314Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ishan_softDeleteContainerTest/providers/Microsoft.RecoveryServices/vaults/acisactiontest2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"acisactiontest3\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A17%3A38.2409152Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ishan_softDeleteContainerTest/providers/Microsoft.RecoveryServices/vaults/acisactiontest3\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"acisactiontest4\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A16%3A32.0671175Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ishan_softDeleteContainerTest/providers/Microsoft.RecoveryServices/vaults/acisactiontest4\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"ankurMuaTestingVault1\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A17%3A38.2549074Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ishan_softDeleteContainerTest/providers/Microsoft.RecoveryServices/vaults/ankurMuaTestingVault1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"ankurTestVault\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A19%3A12.6583864Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ishan_softDeleteContainerTest/providers/Microsoft.RecoveryServices/vaults/ankurTestVault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"ankurVault1245\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A18%3A32.7350007Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ishan_softDeleteContainerTest/providers/Microsoft.RecoveryServices/vaults/ankurVault1245\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"DMTest\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A16%3A41.3224583Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ishan_softDeleteContainerTest/providers/Microsoft.RecoveryServices/vaults/DMTest\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"tp2\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A18%3A03.4949193Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ishan_softDeleteContainerTest/providers/Microsoft.RecoveryServices/vaults/tp2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"vault1\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A19%3A05.7894647Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ishan_softDeleteContainerTest/providers/Microsoft.RecoveryServices/vaults/vault1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"vault123\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A16%3A37.7551895Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ishan_softDeleteContainerTest/providers/Microsoft.RecoveryServices/vaults/vault123\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"vault1705delete\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A18%3A14.0009005Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ishan_softDeleteContainerTest/providers/Microsoft.RecoveryServices/vaults/vault1705delete\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"vaultsoftdelete120420242\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A18%3A46.6442404Z'\\\"\",\"tags\":{\"Owner\":\"Kalyan\",\"DeleteBy\":\"05-2024\",\"Purpose\":\"Testing\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ishan_softDeleteContainerTest/providers/Microsoft.RecoveryServices/vaults/vaultsoftdelete120420242\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"testVault111\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A16%3A47.2567158Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ishansap/providers/Microsoft.RecoveryServices/vaults/testVault111\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"vault2406\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A17%3A32.4435082Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ishansap/providers/Microsoft.RecoveryServices/vaults/vault2406\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"vaultNew2406\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A17%3A12.5074295Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ishansap/providers/Microsoft.RecoveryServices/vaults/vaultNew2406\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"jsinghVault\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A18%3A25.6613045Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jsinghRG/providers/Microsoft.RecoveryServices/vaults/jsinghVault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"mkheranirsv\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A17%3A02.2902272Z'\\\"\",\"tags\":{\"Owner\":\"mkherani\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mkherani/providers/Microsoft.RecoveryServices/vaults/mkheranirsv\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"rama-ctr-src\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A15%3A20.6147512Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RamatBugbash/providers/Microsoft.RecoveryServices/vaults/rama-ctr-src\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"rama-ctr-tgt\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A19%3A14.8587323Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RamatBugbash/providers/Microsoft.RecoveryServices/vaults/rama-ctr-tgt\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"ankurMuaTestingVault1\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A18%3A09.8519041Z'\\\"\",\"tags\":{\"Owner\":\"ishanjindal\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redundancyTestingVault/providers/Microsoft.RecoveryServices/vaults/ankurMuaTestingVault1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"argTest2\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A18%3A02.811969Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redundancyTestingVault/providers/Microsoft.RecoveryServices/vaults/argTest2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"hotfix1\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A17%3A27.7708602Z'\\\"\",\"tags\":{\"Owner\":\"ishanjindal\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redundancyTestingVault/providers/Microsoft.RecoveryServices/vaults/hotfix1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"hotfix2\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A15%3A54.291585Z'\\\"\",\"tags\":{\"Owner\":\"ishanjindal\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redundancyTestingVault/providers/Microsoft.RecoveryServices/vaults/hotfix2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"hotfixTest1\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A17%3A19.4334237Z'\\\"\",\"tags\":{\"Owner\":\"ishanjindal\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redundancyTestingVault/providers/Microsoft.RecoveryServices/vaults/hotfixTest1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"hotfixTest2\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A19%3A09.1314055Z'\\\"\",\"tags\":{\"Owner\":\"ishanjindal\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redundancyTestingVault/providers/Microsoft.RecoveryServices/vaults/hotfixTest2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"hotfixTest3\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A16%3A36.5256597Z'\\\"\",\"tags\":{\"Owner\":\"ishanjindal\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redundancyTestingVault/providers/Microsoft.RecoveryServices/vaults/hotfixTest3\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"oldFlowTest1\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A18%3A26.7280783Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redundancyTestingVault/providers/Microsoft.RecoveryServices/vaults/oldFlowTest1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"test1\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A16%3A06.3140912Z'\\\"\",\"tags\":{\"Owner\":\"ishanjindal\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redundancyTestingVault/providers/Microsoft.RecoveryServices/vaults/test1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"timepass1\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A16%3A37.7481937Z'\\\"\",\"tags\":{\"Owner\":\"ishanjindal\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redundancyTestingVault/providers/Microsoft.RecoveryServices/vaults/timepass1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"AFSVaultedOlrTestEA\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A16%3A14.3820665Z'\\\"\",\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"0725fe37-d48c-47a0-a5e5-4105bdcfa7ed\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/reregistration-test-rg/providers/Microsoft.RecoveryServices/vaults/AFSVaultedOlrTestEA\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"ResourceMove-b890e7-0\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A17%3A28.9295014Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ResourceMoverRG-southeastasia-eastasia-sea/providers/Microsoft.RecoveryServices/vaults/ResourceMove-b890e7-0\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"testvaultishan\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A19%3A05.5186453Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RG_BTALTYAP\u0131GUVENLIK/providers/Microsoft.RecoveryServices/vaults/testvaultishan\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"saphanaworkloadexistingvaulteastasia\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A18%3A38.5460423Z'\\\"\",\"tags\":{\"MABUsed\":\"Yes\"},\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cmk.system/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identity1\":{\"clientId\":\"73571b84-6f37-4bdd-a60f-1121cb5d31d7\",\"principalId\":\"13a05d1f-eae9-47ae-944f-46270c95d12e\"},\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cmk.system/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identity2\":{\"clientId\":\"c105dcb0-b19f-4d55-adba-749e0037c42e\",\"principalId\":\"ab44c749-c400-4689-bcd1-128d7ecefd94\"},\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dimunj_mua_rm_test/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testUAMIECY\":{\"clientId\":\"d84cf4ae-ec92-4843-8909-3f96e243a737\",\"principalId\":\"714861d4-74f2-460f-b4c1-0813a88faddb\"}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":null,\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/saphanaworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/saphanaworkloadexistingvaulteastasia\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"sarath-afs-hardening-vault\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A16%3A50.755222Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-afs-hardening-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"sarath-dmtest-sourcevault\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A18%3A37.3620478Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-dmtest-sourcevault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"sarath-securescore-vault\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A17%3A08.0142085Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-securescore-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"sarathhanatarget\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A16%3A44.7724949Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarathhanatarget\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"sarathsourcevault1\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A18%3A26.8220246Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarathsourcevault1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"sarathsourcevault2\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A18%3A03.6358398Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarathsourcevault2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"sarathsourcevault3\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A19%3A03.2590334Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarathsourcevault3\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"sarathtargetvault2\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A19%3A07.9432424Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarathtargetvault2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"vault132\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A17%3A18.2082407Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/vault132\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"vault227\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A15%3A51.8816263Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/vault227\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"vault251\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A15%3A27.9226676Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/vault251\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"vault5512\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A15%3A22.7851742Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/vault5512\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"sarathsourcevault1\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A17%3A08.894315Z'\\\"\",\"tags\":{\"Owner\":\"sarath\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarathmovedrg4/providers/Microsoft.RecoveryServices/vaults/sarathsourcevault1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"sarathtargetvault1\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A15%3A59.1444913Z'\\\"\",\"tags\":{\"Owner\":\"sarath\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarathmovedrg4/providers/Microsoft.RecoveryServices/vaults/sarathtargetvault1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"softdeletevault-1403-1\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A18%3A54.9034364Z'\\\"\",\"tags\":{\"Owner\":\"Ishan;ishanjindal\",\"Purpose\":\"Testing\",\"DeleteBy\":\"05-2024\",\"AutoAddedTagsSpendMgmt\":\"Owner\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vault_sd/providers/Microsoft.RecoveryServices/vaults/softdeletevault-1403-1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"vaultalerttest150225\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A19%3A02.0304441Z'\\\"\",\"tags\":{\"Owner\":\"Kalyan\",\"Purpose\":\"Testing\",\"DeleteBy\":\"10-2025\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vaultsd/providers/Microsoft.RecoveryServices/vaults/vaultalerttest150225\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"vaultsd-180901-2\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A18%3A03.6958053Z'\\\"\",\"tags\":{\"Owner\":\"Kalyan\",\"DeleteBy\":\"11-2024\",\"Purpose\":\"TEsting\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vaultsd/providers/Microsoft.RecoveryServices/vaults/vaultsd-180901-2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"vaultsd180924-1\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A16%3A43.5973432Z'\\\"\",\"tags\":{\"Owner\":\"Kalyan\",\"DeleteBy\":\"11-2024\",\"Purpose\":\"Testing\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vaultsd/providers/Microsoft.RecoveryServices/vaults/vaultsd180924-1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"vepothir-sql-snapshot-rsv\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A16%3A23.7819187Z'\\\"\",\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"74042e57-15b4-4f12-88e4-27f074e74c05\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vepothir-rg-ram-sub/providers/Microsoft.RecoveryServices/vaults/vepothir-sql-snapshot-rsv\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"cmk-newrsv-sami1\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A19%3A00.9917801Z'\\\"\",\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"a5eac032-6e8b-4def-8152-3bc0304bdf1a\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"encryption\":{\"keyVaultProperties\":{\"keyUri\":\"https://risrajkeyvault.vault.azure.net/keys/key1/5d60de0ea55f45cc85a27ff505242e70\"},\"kekIdentity\":{\"useSystemAssignedIdentity\":true,\"userAssignedIdentity\":null},\"infrastructureEncryption\":\"Enabled\"},\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zubaireacan02/providers/Microsoft.RecoveryServices/vaults/cmk-newrsv-sami1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastasia\",\"name\":\"random-rsv1\",\"etag\":\"W/\\\"datetime'2026-07-21T04%3A17%3A13.6200828Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\",\"secureScore\":\"None\",\"bcdrSecurityLevel\":\"Poor\",\"publicNetworkAccess\":\"Enabled\",\"restoreSettings\":{\"crossSubscriptionRestoreSettings\":{\"crossSubscriptionRestoreState\":\"Enabled\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zubaireacan02/providers/Microsoft.RecoveryServices/vaults/random-rsv1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}}],\"nextLink\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/vaults?api-version=2026-05-01&%24skiptoken=7dDNboJAEMDxZ3GT9lKRZRGrJqah8aM2rm0EAYmXdRkB5cPsrlYxvnuxp976Ar1N%2foeZye%2bKCjirWVrsJepf0ch23KVDRkv7E%2fVRotRB9nU9ZwWLIYdCtVh1FNDiZa7L40ZykR5UWhZSN7smboNhaqb1DFobW6D1oMc0QrBpGRHn0OX6QZSnNAIhdZpyUcpyq1oL4OUJxMUBcUo5SP3EjpmSL%2byQanWX9fYBwaSjYUvDxuMDact9fbTcQzEwGp1ug1ZxRYeLjLpU0Wpphg7GdOhlMzfLPvyRorvpV93P4WS%2bC91kF1SvWzbJkpCMd1BMFc%2b59mQ0LNLguVdtTO%2byIt6WjntkFXgyepvf55L542LlZ2oTeHjlv8swCJPIP2N0ayImcjuOBcRMQeTeP6vt7AVFzR9cysQeRJ2u69%2b%2ba9Rf%2fwv%2fLbxGN3T7Bg%3d%3d\"}" headers: cache-control: - no-cache content-length: - - '618806' + - '521079' content-type: - application/json; charset=utf-8 date: - - Mon, 27 Oct 2025 13:58:21 GMT + - Tue, 21 Jul 2026 05:21:19 GMT expires: - '-1' pragma: @@ -2862,35 +3474,33 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - 0be0d709-c854-4d1a-951f-1b48b300e874 - - 0be0d709-c854-4d1a-951f-1b48b300e874 - - 0be0d709-c854-4d1a-951f-1b48b300e874 - - 0be0d709-c854-4d1a-951f-1b48b300e874 - - 0be0d709-c854-4d1a-951f-1b48b300e874 - - 0be0d709-c854-4d1a-951f-1b48b300e874 - - 0be0d709-c854-4d1a-951f-1b48b300e874 - - 0be0d709-c854-4d1a-951f-1b48b300e874 - - 0be0d709-c854-4d1a-951f-1b48b300e874 - - 0be0d709-c854-4d1a-951f-1b48b300e874 - - 0be0d709-c854-4d1a-951f-1b48b300e874 - - 0be0d709-c854-4d1a-951f-1b48b300e874 - - 0be0d709-c854-4d1a-951f-1b48b300e874 - - 0be0d709-c854-4d1a-951f-1b48b300e874 - - 0be0d709-c854-4d1a-951f-1b48b300e874 - - 0be0d709-c854-4d1a-951f-1b48b300e874 - - 0be0d709-c854-4d1a-951f-1b48b300e874 - - 0be0d709-c854-4d1a-951f-1b48b300e874 - - 0be0d709-c854-4d1a-951f-1b48b300e874 - - 0be0d709-c854-4d1a-951f-1b48b300e874 - - 0be0d709-c854-4d1a-951f-1b48b300e874 - - 0be0d709-c854-4d1a-951f-1b48b300e874 - - 0be0d709-c854-4d1a-951f-1b48b300e874 - - 0be0d709-c854-4d1a-951f-1b48b300e874 - - 0be0d709-c854-4d1a-951f-1b48b300e874 - x-ms-throttling-version: - - v2 + - a0d1b73e-45e7-436c-9f58-659a3490c14e + - a0d1b73e-45e7-436c-9f58-659a3490c14e + - a0d1b73e-45e7-436c-9f58-659a3490c14e + - a0d1b73e-45e7-436c-9f58-659a3490c14e + - a0d1b73e-45e7-436c-9f58-659a3490c14e + - a0d1b73e-45e7-436c-9f58-659a3490c14e + - a0d1b73e-45e7-436c-9f58-659a3490c14e + - a0d1b73e-45e7-436c-9f58-659a3490c14e + - a0d1b73e-45e7-436c-9f58-659a3490c14e + - a0d1b73e-45e7-436c-9f58-659a3490c14e + - a0d1b73e-45e7-436c-9f58-659a3490c14e + - a0d1b73e-45e7-436c-9f58-659a3490c14e + - a0d1b73e-45e7-436c-9f58-659a3490c14e + - a0d1b73e-45e7-436c-9f58-659a3490c14e + - a0d1b73e-45e7-436c-9f58-659a3490c14e + - a0d1b73e-45e7-436c-9f58-659a3490c14e + - a0d1b73e-45e7-436c-9f58-659a3490c14e + - a0d1b73e-45e7-436c-9f58-659a3490c14e + - a0d1b73e-45e7-436c-9f58-659a3490c14e + - a0d1b73e-45e7-436c-9f58-659a3490c14e + - a0d1b73e-45e7-436c-9f58-659a3490c14e + - a0d1b73e-45e7-436c-9f58-659a3490c14e + - a0d1b73e-45e7-436c-9f58-659a3490c14e + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: D23624B30784414590D92B6625F7C995 Ref B: JKT201051407025 Ref C: 2025-10-27T13:58:18Z' + - 'Ref A: 42C77188AC974065819C5FA13105A45A Ref B: PNQ231110906029 Ref C: 2026-07-21T05:21:15Z' status: code: 200 message: OK @@ -2906,33 +3516,29 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.11.9 (Windows-10-10.0.26200-SP0) + - AZURECLI/2.88.0 azsdk-python-core/1.39.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/vaults?api-version=2025-08-01&$skiptoken=7dDPT8IwFMDxv4UmetGyrmUIJMagIJpQNDAGLFxK%2BxiD/bItCCP8705Pnj17e/ke3nv5nFEGRzuMs51BnTPqdyf%2BdEL70%2B476qCNtYXpOE4qMhFBCpmti3KvoS7z1DH7lZE6LmycZ8ZhLUYa4DLMvDvADeIBbkNbYEoJ81wlJbSkU%2Bj8ECvQxuGx1LnJ17Y%2BBpkfQJ8moA%2BxBOMcxD6x5kEUMa66qbbfU0I9TFqYuNdXtGF21dF8B9m9W2uRGi%2BjkvfGCfe55eWUhRNCeC9Ihn6SvM36lm9fP6t%2BDAejbehvtvPycb2gx0INglI9eaeQJYnoqY1g6mM16OMbt9YkNZkG5YoFpwUN1vy5TRfzwKiX0fe8XQ0SEs5HZDgPN2p2JCEdf6gsbFadwmyB0eUWCZ12o0hDJCwo/vbyrM75uj2B5wLvQNdpfPyt/kSdZb/6n9TX6ILunwB + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/vaults?api-version=2026-05-01&$skiptoken=7dDNboJAEMDxZ3GT9lKRZRGrJqah8aM2rm0EAYmXdRkB5cPsrlYxvnuxp976Ar1N/oeZye%2BKCjirWVrsJepf0ch23KVDRkv7E/VRotRB9nU9ZwWLIYdCtVh1FNDiZa7L40ZykR5UWhZSN7smboNhaqb1DFobW6D1oMc0QrBpGRHn0OX6QZSnNAIhdZpyUcpyq1oL4OUJxMUBcUo5SP3EjpmSL%2ByQanWX9fYBwaSjYUvDxuMDact9fbTcQzEwGp1ug1ZxRYeLjLpU0Wpphg7GdOhlMzfLPvyRorvpV93P4WS%2BC91kF1SvWzbJkpCMd1BMFc%2B59mQ0LNLguVdtTO%2ByIt6WjntkFXgyepvf55L542LlZ2oTeHjlv8swCJPIP2N0ayImcjuOBcRMQeTeP6vt7AVFzR9cysQeRJ2u69%2B%2Ba9Rf/wv/LbxGN3T7Bg%3D%3D response: body: - string: '{"value":[{"location":"eastus2euap","name":"clitest-vaultkp5kmtwtal5","etag":"W/\"datetime''2025-08-14T11%3A54%3A42.5855108Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","monitoringSettings":{"azureMonitorAlertSettings":{"alertsForAllJobFailures":"Enabled","alertsForAllReplicationIssues":"Enabled","alertsForAllFailoverIssues":"Enabled"},"classicAlertSettings":{"alertsForCriticalOperations":"Enabled","emailNotificationsForSiteRecovery":"Enabled"}},"secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgytoc3bdlt3/providers/Microsoft.RecoveryServices/vaults/clitest-vaultkp5kmtwtal5","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"eastus2euap","name":"clitest-vaultyovqxpe34f4","etag":"W/\"datetime''2025-08-14T11%3A54%3A43.3572622Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","monitoringSettings":{"azureMonitorAlertSettings":{"alertsForAllJobFailures":"Enabled","alertsForAllReplicationIssues":"Enabled","alertsForAllFailoverIssues":"Enabled"},"classicAlertSettings":{"alertsForCriticalOperations":"Enabled","emailNotificationsForSiteRecovery":"Enabled"}},"secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgyymobtr3rk/providers/Microsoft.RecoveryServices/vaults/clitest-vaultyovqxpe34f4","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"eastus2euap","name":"clitest-vault4f4kqwll2qr","etag":"W/\"datetime''2025-08-14T11%3A54%3A45.1346904Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","monitoringSettings":{"azureMonitorAlertSettings":{"alertsForAllJobFailures":"Enabled","alertsForAllReplicationIssues":"Enabled","alertsForAllFailoverIssues":"Enabled"},"classicAlertSettings":{"alertsForCriticalOperations":"Enabled","emailNotificationsForSiteRecovery":"Enabled"}},"secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgyzhyosvymr/providers/Microsoft.RecoveryServices/vaults/clitest-vault4f4kqwll2qr","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"eastus2euap","name":"clitest-vaultfozqtljmy7s","etag":"W/\"datetime''2025-08-14T11%3A54%3A46.9511058Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","monitoringSettings":{"azureMonitorAlertSettings":{"alertsForAllJobFailures":"Enabled","alertsForAllReplicationIssues":"Enabled","alertsForAllFailoverIssues":"Enabled"},"classicAlertSettings":{"alertsForCriticalOperations":"Enabled","emailNotificationsForSiteRecovery":"Enabled"}},"secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgz664mkbgvz/providers/Microsoft.RecoveryServices/vaults/clitest-vaultfozqtljmy7s","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"eastus2euap","name":"clitest-vaultmiqnjknkgi2","etag":"W/\"datetime''2025-08-14T11%3A54%3A48.0427547Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","monitoringSettings":{"azureMonitorAlertSettings":{"alertsForAllJobFailures":"Enabled","alertsForAllReplicationIssues":"Enabled","alertsForAllFailoverIssues":"Enabled"},"classicAlertSettings":{"alertsForCriticalOperations":"Enabled","emailNotificationsForSiteRecovery":"Enabled"}},"secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgz7htufhyfzobhsnzzcll75ozfdd6zcofqgbrnh7djdp6i6umlgtfgtf6asu4hek45/providers/Microsoft.RecoveryServices/vaults/clitest-vaultmiqnjknkgi2","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"eastus2euap","name":"clitest-vaultesea4gxskcu","etag":"W/\"datetime''2025-08-14T11%3A54%3A51.5056403Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","monitoringSettings":{"azureMonitorAlertSettings":{"alertsForAllJobFailures":"Enabled","alertsForAllReplicationIssues":"Enabled","alertsForAllFailoverIssues":"Enabled"},"classicAlertSettings":{"alertsForCriticalOperations":"Enabled","emailNotificationsForSiteRecovery":"Enabled"}},"secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgz7r3acas4b/providers/Microsoft.RecoveryServices/vaults/clitest-vaultesea4gxskcu","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"eastus2euap","name":"vaultsd180425-2","etag":"W/\"datetime''2025-08-14T11%3A55%3A41.2996206Z''\"","tags":{"Owner":"Kalyan","Purpose":"Testing","DeleteBy":"10-2025"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/deleterg/providers/Microsoft.RecoveryServices/vaults/vaultsd180425-2","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"DonotUse-iaasvmsqlworkload-BVT-Ecy-vault","etag":"W/\"datetime''2025-08-14T12%3A02%3A25.6245775Z''\"","tags":{"MABUsed":"Yes"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DonotUse-iaasvmsqlworkload-BVT-Ecy-RG/providers/Microsoft.RecoveryServices/vaults/DonotUse-iaasvmsqlworkload-BVT-Ecy-vault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"newvaultqqq","etag":"W/\"datetime''2025-08-14T12%3A31%3A14.1289891Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoocreateVMM/providers/Microsoft.RecoveryServices/vaults/newvaultqqq","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"testgesahoo","etag":"W/\"datetime''2025-08-19T10%3A23%3A52.7906557Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoocreateVMM/providers/Microsoft.RecoveryServices/vaults/testgesahoo","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"testVault22","etag":"W/\"datetime''2025-10-03T04%3A58%3A13.5286278Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoocreateVMM/providers/Microsoft.RecoveryServices/vaults/testVault22","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"gvjreddy-czr-grsvaultwithcrr","etag":"W/\"datetime''2025-08-14T12%3A39%3A27.6961823Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-czr-grsvaultwithcrr","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"gvjreddy-czr-grsvaultwithoutcrr","etag":"W/\"datetime''2025-08-14T12%3A39%3A28.4769301Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-czr-grsvaultwithoutcrr","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"gvjreddy-czr-lrsvault","etag":"W/\"datetime''2025-08-14T16%3A34%3A56.0057331Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-czr-lrsvault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"gvjreddy-czr-zrsvault","etag":"W/\"datetime''2025-08-14T16%3A34%3A57.2641781Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-czr-zrsvault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"gvjreddy-ecy-vault-for-softdelete","etag":"W/\"datetime''2025-08-14T16%3A34%3A58.2737335Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-ecy-vault-for-softdelete","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"gvjreddy-immutability-vault","etag":"W/\"datetime''2025-08-14T16%3A34%3A58.9064556Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-immutability-vault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"gvjreddy-test-ecy-rsvault","etag":"W/\"datetime''2025-08-14T16%3A35%3A00.3258306Z''\"","tags":{"BackupVMName":"edgezonetest1","BackupVM - Name Test":"Sample VM Name"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-test-ecy-rsvault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"gvjreddy-test-ecy-rsvault-cmk-after-enabling-mua","etag":"W/\"datetime''2025-08-14T16%3A35%3A01.3983582Z''\"","identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"22adfe74-493b-4305-a61f-6c6fcc53eee1","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/gvjreddy-test-ecy-mi":{"clientId":"c2412e13-88a8-4835-b396-54b237b06074","principalId":"555834a3-dae4-40c9-a316-bcdaa9cf290d"}}},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-test-ecy-rsvault-cmk-after-enabling-mua","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"gvjreddy-test-ecy-rsvault-with-userassigned-cmk","etag":"W/\"datetime''2025-08-14T16%3A35%3A02.7167763Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","encryption":{"keyVaultProperties":{"keyUri":"https://gvjreddy-test-ecy-kv.vault.azure.net/keys/gvjreddy-test-ecy-key-alternate"},"kekIdentity":{"useSystemAssignedIdentity":false,"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/gvjreddy-test-ecy-mi"},"infrastructureEncryption":"Disabled"},"secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-test-ecy-rsvault-with-userassigned-cmk","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"gvjreddy-test-ecy-rsvault-with-userassigned-cmk-1","etag":"W/\"datetime''2025-08-14T16%3A35%3A04.0971682Z''\"","identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"b36c6baf-d775-4bea-b407-0cf5c6854048","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/gvjreddy-test-ecy-mi":{"clientId":"c2412e13-88a8-4835-b396-54b237b06074","principalId":"555834a3-dae4-40c9-a316-bcdaa9cf290d"}}},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-test-ecy-rsvault-with-userassigned-cmk-1","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"gvjreddy-test-ecy-vault-muadeletescenario","etag":"W/\"datetime''2025-08-14T16%3A35%3A04.8588324Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-test-ecy-vault-muadeletescenario","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"gvjreddy-test-ecy-vault-muawithcontributor","etag":"W/\"datetime''2025-08-14T16%3A35%3A06.1612588Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-test-ecy-vault-muawithcontributor","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"gvjreddy-test-ecy-vault-muawithreader","etag":"W/\"datetime''2025-08-14T16%3A35%3A07.2497798Z''\"","identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"0d26ad4d-7fd5-4b8c-9c00-30d4ce7b46e0","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-test-ecy-vault-muawithreader","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"gvjreddy-test-vault-20230714-1237","etag":"W/\"datetime''2025-08-14T16%3A35%3A07.9254815Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-test-vault-20230714-1237","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"gvjreddy-test-vault-20230714-1349","etag":"W/\"datetime''2025-08-14T16%3A35%3A08.725129Z''\"","identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"e43e0a3d-2e6b-412e-bfdc-07f95f93def3","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","encryption":{"keyVaultProperties":{"keyUri":"https://gvjreddy-test-ecy-kv.vault.azure.net/keys/gvjreddy-test-ecy-key"},"kekIdentity":{"useSystemAssignedIdentity":true,"userAssignedIdentity":null},"infrastructureEncryption":"Disabled"},"secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-test-vault-20230714-1349","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"gvjreddy-test-vault-20230714-1353","etag":"W/\"datetime''2025-08-14T16%3A35%3A09.5937463Z''\"","identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"b80e21cc-d9b7-4527-bb86-fc15e4d4d735","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","encryption":{"keyVaultProperties":{"keyUri":"https://gvjreddy-test-ecy-kv.vault.azure.net/keys/gvjreddy-test-ecy-key-alternate"},"kekIdentity":{"useSystemAssignedIdentity":true,"userAssignedIdentity":null},"infrastructureEncryption":"Disabled"},"secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-test-vault-20230714-1353","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"gvjreddy-test-vault-202307181605","etag":"W/\"datetime''2025-08-14T16%3A35%3A10.2034779Z''\"","tags":{"DeleteBy":"08-2023","Purpose":"PolicyType - change testing","Owner":"gvjreddy","AutoShutdown":"Yes"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-test-vault-202307181605","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"gvjreddy-test-vault-240711","etag":"W/\"datetime''2025-08-14T16%3A35%3A10.7162517Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gvjreddy_test_rg/providers/Microsoft.RecoveryServices/vaults/gvjreddy-test-vault-240711","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"hiagaeuap-vault1","etag":"W/\"datetime''2025-08-14T16%3A35%3A11.3249843Z''\"","tags":{"MABUsed":"Yes","Owner":"hiaga","Purpose":"Testing","DeleteBy":"06-2022"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagaCZR-rg/providers/Microsoft.RecoveryServices/vaults/hiagaeuap-vault1","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"hiagaeuapVault2","etag":"W/\"datetime''2025-08-14T16%3A35%3A11.7787836Z''\"","tags":{"MABUsed":"Yes","Owner":"hiaga","Purpose":"Testing","DeleteBy":"01-2025"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","monitoringSettings":{"classicAlertSettings":{"alertsForCriticalOperations":"Enabled","emailNotificationsForSiteRecovery":"Enabled"}},"secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Disabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagaCZR-rg/providers/Microsoft.RecoveryServices/vaults/hiagaeuapVault2","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"hiagaImmutableVault2","etag":"W/\"datetime''2025-08-14T16%3A35%3A12.5984227Z''\"","tags":{"Owner":"hiaga","DeleteBy":"01-2024","Purpose":"Testing","MABUsed":"Yes"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","encryption":null,"secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagaCZR-rg/providers/Microsoft.RecoveryServices/vaults/hiagaImmutableVault2","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"eastus2euap","name":"vault543","etag":"W/\"datetime''2025-08-14T16%3A35%3A13.2291445Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/vault543","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"iaasvmexistingczrvault1","etag":"W/\"datetime''2025-08-14T16%3A35%3A14.3246626Z''\"","tags":{"Mab + string: '{"value":[{"location":"eastus2euap","name":"hiagaImmutableVault2","etag":"W/\"datetime''2025-08-14T16%3A35%3A12.5984227Z''\"","tags":{"Owner":"hiaga","DeleteBy":"01-2024","Purpose":"Testing","MABUsed":"Yes"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","encryption":null,"secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagaCZR-rg/providers/Microsoft.RecoveryServices/vaults/hiagaImmutableVault2","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"eastus2euap","name":"vault543","etag":"W/\"datetime''2025-08-14T16%3A35%3A13.2291445Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/vault543","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"iaasvmexistingczrvault1","etag":"W/\"datetime''2025-08-14T16%3A35%3A14.3246626Z''\"","tags":{"Mab Used":"yes","Purpose":"BVT","Owner":"akkanase","DeleteBy":"01-2030"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvm.existing.czr.ecy/providers/Microsoft.RecoveryServices/vaults/iaasvmexistingczrvault1","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"iaasvmexistingczrvaultecy1","etag":"W/\"datetime''2025-08-14T16%3A35%3A14.6925002Z''\"","tags":{"Mab - Used":"yes","Purpose":"BVT","Owner":"akkanase","DeleteBy":"01-2030"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvm.existing.czr.ecy/providers/Microsoft.RecoveryServices/vaults/iaasvmexistingczrvaultecy1","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"iaasvmsqlworkloadexistingcrrsecondaryvault","etag":"W/\"datetime''2025-08-14T16%3A35%3A15.4681588Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Disabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.crr/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingcrrsecondaryvault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"testing12345","etag":"W/\"datetime''2025-08-14T16%3A35%3A16.2498145Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ishan_softDeleteContainerTest/providers/Microsoft.RecoveryServices/vaults/testing12345","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"testvault1","etag":"W/\"datetime''2025-08-14T16%3A35%3A16.6926193Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ishan_softDeleteContainerTest/providers/Microsoft.RecoveryServices/vaults/testvault1","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"testvault2","etag":"W/\"datetime''2025-08-14T16%3A35%3A17.5832264Z''\"","tags":{"Testing":"123"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ishan_softDeleteContainerTest/providers/Microsoft.RecoveryServices/vaults/testvault2","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"testvault33","etag":"W/\"datetime''2025-08-14T16%3A35%3A18.0710113Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ishan_softDeleteContainerTest/providers/Microsoft.RecoveryServices/vaults/testvault33","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"immutableVaultTest111","etag":"W/\"datetime''2025-08-14T16%3A35%3A18.7527116Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ishansap/providers/Microsoft.RecoveryServices/vaults/immutableVaultTest111","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"tpppp","etag":"W/\"datetime''2025-08-14T16%3A35%3A19.6323244Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ishansap/providers/Microsoft.RecoveryServices/vaults/tpppp","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"JCE-WE-MGMT-RSV-ONPREM","etag":"W/\"datetime''2025-08-14T16%3A35%3A20.2470527Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JCE-WE-MGMT-RG-DISASTERRECOVERY/providers/Microsoft.RecoveryServices/vaults/JCE-WE-MGMT-RSV-ONPREM","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"mkheranirsvvaultecy","etag":"W/\"datetime''2025-08-14T16%3A35%3A20.9297518Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mkheraniecyrg/providers/Microsoft.RecoveryServices/vaults/mkheranirsvvaultecy","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"mkheraniecyrgtarget2","etag":"W/\"datetime''2025-08-14T16%3A35%3A21.5644728Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mkheraniecyrgtarget/providers/Microsoft.RecoveryServices/vaults/mkheraniecyrgtarget2","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"mkheranitargetvault","etag":"W/\"datetime''2025-08-14T16%3A35%3A22.0222707Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mkheraniecyrgtarget/providers/Microsoft.RecoveryServices/vaults/mkheranitargetvault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"vault89","etag":"W/\"datetime''2025-08-14T16%3A35%3A22.6489951Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/newRG/providers/Microsoft.RecoveryServices/vaults/vault89","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"akkanaseTest","etag":"W/\"datetime''2025-08-14T16%3A35%3A23.3097032Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RamatBugbash/providers/Microsoft.RecoveryServices/vaults/akkanaseTest","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"VaultSoftDelete","etag":"W/\"datetime''2025-08-14T16%3A35%3A24.0373828Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RamatBugbash/providers/Microsoft.RecoveryServices/vaults/VaultSoftDelete","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"argTest3","etag":"W/\"datetime''2025-08-14T16%3A35%3A25.0719269Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redundancyTestingVault/providers/Microsoft.RecoveryServices/vaults/argTest3","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"argTest4","etag":"W/\"datetime''2025-08-14T16%3A35%3A26.272398Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redundancyTestingVault/providers/Microsoft.RecoveryServices/vaults/argTest4","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"test11","etag":"W/\"datetime''2025-08-14T16%3A35%3A27.8117202Z''\"","tags":{"Owner":"ishanjindal","AutoAddedTagsSpendMgmt":"Owner"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redundancyTestingVault/providers/Microsoft.RecoveryServices/vaults/test11","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"test12","etag":"W/\"datetime''2025-08-14T16%3A35%3A29.2960653Z''\"","tags":{"Owner":"ishanjindal","AutoAddedTagsSpendMgmt":"Owner"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redundancyTestingVault/providers/Microsoft.RecoveryServices/vaults/test12","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"test654","etag":"W/\"datetime''2025-08-14T16%3A35%3A44.58033Z''\"","tags":{"Owner":"ishanjindal","AutoAddedTagsSpendMgmt":"Owner"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redundancyTestingVault/providers/Microsoft.RecoveryServices/vaults/test654","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"test6543","etag":"W/\"datetime''2025-08-14T16%3A35%3A45.3569884Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redundancyTestingVault/providers/Microsoft.RecoveryServices/vaults/test6543","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"Rereg-AFS-Test","etag":"W/\"datetime''2025-10-27T07%3A19%3A18.250199Z''\"","tags":{"Owner":"kalyan","Purpose":"Test","DeleteBy":"10-2025"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/reregistration-test-rg/providers/Microsoft.RecoveryServices/vaults/Rereg-AFS-Test","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"Rereg-VM-Test","etag":"W/\"datetime''2025-10-27T07%3A22%3A20.9832261Z''\"","tags":{"Owner":"Kalyan","Purpose":"Testing","DeleteBy":"10-2025"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/reregistration-test-rg/providers/Microsoft.RecoveryServices/vaults/Rereg-VM-Test","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"reregistration-demo-vault","etag":"W/\"datetime''2025-10-27T07%3A22%3A21.1231643Z''\"","tags":{"CreatedOn":"2025-07-01T04:46:19.3664265Z"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/reregistration-test-rg/providers/Microsoft.RecoveryServices/vaults/reregistration-demo-vault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"testclassicsa","etag":"W/\"datetime''2025-08-14T16%3A35%3A47.8019101Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rohinitest/providers/Microsoft.RecoveryServices/vaults/testclassicsa","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"saphana-clitest-secondary-vault","etag":"W/\"datetime''2025-08-14T16%3A35%3A48.2517118Z''\"","tags":{"Owner":"akneema","MABUsed":"Yes","DeleteBy":"12-9999","Purpose":"CLITest"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/saphana-clitest-rg/providers/Microsoft.RecoveryServices/vaults/saphana-clitest-secondary-vault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"saphanaworkloadexistingsecondaryvault","etag":"W/\"datetime''2025-08-14T16%3A35%3A49.0133769Z''\"","tags":{"MABUsed":"Yes","Purpose":"BVT"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","encryption":null,"secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/saphanaworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/saphanaworkloadexistingsecondaryvault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"sarathecyvault","etag":"W/\"datetime''2025-08-14T16%3A36%3A53.0851312Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarathecyvault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"simran-rs","etag":"W/\"datetime''2025-08-14T16%3A43%3A53.6017981Z''\"","tags":{"Auto + Used":"yes","Purpose":"BVT","Owner":"akkanase","DeleteBy":"01-2030"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvm.existing.czr.ecy/providers/Microsoft.RecoveryServices/vaults/iaasvmexistingczrvaultecy1","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"iaasvmsqlworkloadexistingcrrsecondaryvault","etag":"W/\"datetime''2025-08-14T16%3A35%3A15.4681588Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Disabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.crr/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingcrrsecondaryvault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"testing12345","etag":"W/\"datetime''2025-08-14T16%3A35%3A16.2498145Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ishan_softDeleteContainerTest/providers/Microsoft.RecoveryServices/vaults/testing12345","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"testvault1","etag":"W/\"datetime''2025-08-14T16%3A35%3A16.6926193Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ishan_softDeleteContainerTest/providers/Microsoft.RecoveryServices/vaults/testvault1","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"testvault2","etag":"W/\"datetime''2025-08-14T16%3A35%3A17.5832264Z''\"","tags":{"Testing":"123"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ishan_softDeleteContainerTest/providers/Microsoft.RecoveryServices/vaults/testvault2","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"testvault33","etag":"W/\"datetime''2025-08-14T16%3A35%3A18.0710113Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ishan_softDeleteContainerTest/providers/Microsoft.RecoveryServices/vaults/testvault33","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"immutableVaultTest111","etag":"W/\"datetime''2025-08-14T16%3A35%3A18.7527116Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ishansap/providers/Microsoft.RecoveryServices/vaults/immutableVaultTest111","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"tpppp","etag":"W/\"datetime''2025-08-14T16%3A35%3A19.6323244Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ishansap/providers/Microsoft.RecoveryServices/vaults/tpppp","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"JCE-WE-MGMT-RSV-ONPREM","etag":"W/\"datetime''2025-08-14T16%3A35%3A20.2470527Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JCE-WE-MGMT-RG-DISASTERRECOVERY/providers/Microsoft.RecoveryServices/vaults/JCE-WE-MGMT-RSV-ONPREM","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"mkheranirsvvaultecy","etag":"W/\"datetime''2025-08-14T16%3A35%3A20.9297518Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mkheraniecyrg/providers/Microsoft.RecoveryServices/vaults/mkheranirsvvaultecy","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"mkheraniecyrgtarget2","etag":"W/\"datetime''2025-08-14T16%3A35%3A21.5644728Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mkheraniecyrgtarget/providers/Microsoft.RecoveryServices/vaults/mkheraniecyrgtarget2","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"mkheranitargetvault","etag":"W/\"datetime''2025-08-14T16%3A35%3A22.0222707Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mkheraniecyrgtarget/providers/Microsoft.RecoveryServices/vaults/mkheranitargetvault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"vault89","etag":"W/\"datetime''2025-08-14T16%3A35%3A22.6489951Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/newRG/providers/Microsoft.RecoveryServices/vaults/vault89","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"afscrrtest","etag":"W/\"datetime''2026-06-15T08%3A59%3A39.4917713Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raghavchugh-rg/providers/Microsoft.RecoveryServices/vaults/afscrrtest","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"csbCzrTestVault","etag":"W/\"datetime''2026-03-08T17%3A48%3A42.2092997Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raghavchugh-rg/providers/Microsoft.RecoveryServices/vaults/csbCzrTestVault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"raghav-mars-vault","etag":"W/\"datetime''2026-01-20T14%3A16%3A00.3308169Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raghavchugh-rg/providers/Microsoft.RecoveryServices/vaults/raghav-mars-vault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"raghavTestImmutableVault","etag":"W/\"datetime''2026-03-05T06%3A04%3A53.2809478Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","costManagementSettings":{"granularityLevel":"ProtectedItemWithParentTag"},"secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raghavchugh-rg/providers/Microsoft.RecoveryServices/vaults/raghavTestImmutableVault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"SoftDeleteVaultTestFlagOn","etag":"W/\"datetime''2026-01-01T12%3A59%3A47.7545227Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raghavchugh-rg/providers/Microsoft.RecoveryServices/vaults/SoftDeleteVaultTestFlagOn","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"tb-immutability-30d","etag":"W/\"datetime''2026-06-12T11%3A43%3A45.595814Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raghavchugh-rg/providers/Microsoft.RecoveryServices/vaults/tb-immutability-30d","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"tb-immutability-60d","etag":"W/\"datetime''2026-06-12T12%3A42%3A39.950836Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raghavchugh-rg/providers/Microsoft.RecoveryServices/vaults/tb-immutability-60d","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"tb-immutability-off","etag":"W/\"datetime''2026-06-12T12%3A32%3A45.6497033Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raghavchugh-rg/providers/Microsoft.RecoveryServices/vaults/tb-immutability-off","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"tb-immutability-policy","etag":"W/\"datetime''2026-06-12T12%3A27%3A37.7366446Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raghavchugh-rg/providers/Microsoft.RecoveryServices/vaults/tb-immutability-policy","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"testVault","etag":"W/\"datetime''2026-04-24T06%3A01%3A52.6165071Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raghavchugh-rg/providers/Microsoft.RecoveryServices/vaults/testVault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"vaultDeletionTest","etag":"W/\"datetime''2026-04-16T07%3A30%3A48.2199412Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raghavchugh-rg/providers/Microsoft.RecoveryServices/vaults/vaultDeletionTest","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"crosssubscriptionbackup-czr-test","etag":"W/\"datetime''2026-03-05T04%3A01%3A28.9377361Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raghavchugh-test-rg/providers/Microsoft.RecoveryServices/vaults/crosssubscriptionbackup-czr-test","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"akkanaseTest","etag":"W/\"datetime''2025-08-14T16%3A35%3A23.3097032Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RamatBugbash/providers/Microsoft.RecoveryServices/vaults/akkanaseTest","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"VaultSoftDelete","etag":"W/\"datetime''2025-08-14T16%3A35%3A24.0373828Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RamatBugbash/providers/Microsoft.RecoveryServices/vaults/VaultSoftDelete","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"argTest3","etag":"W/\"datetime''2025-08-14T16%3A35%3A25.0719269Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redundancyTestingVault/providers/Microsoft.RecoveryServices/vaults/argTest3","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"argTest4","etag":"W/\"datetime''2025-08-14T16%3A35%3A26.272398Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redundancyTestingVault/providers/Microsoft.RecoveryServices/vaults/argTest4","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"test11","etag":"W/\"datetime''2025-08-14T16%3A35%3A27.8117202Z''\"","tags":{"Owner":"ishanjindal","AutoAddedTagsSpendMgmt":"Owner"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redundancyTestingVault/providers/Microsoft.RecoveryServices/vaults/test11","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"test12","etag":"W/\"datetime''2025-08-14T16%3A35%3A29.2960653Z''\"","tags":{"Owner":"ishanjindal","AutoAddedTagsSpendMgmt":"Owner"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redundancyTestingVault/providers/Microsoft.RecoveryServices/vaults/test12","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"test654","etag":"W/\"datetime''2025-08-14T16%3A35%3A44.58033Z''\"","tags":{"Owner":"ishanjindal","AutoAddedTagsSpendMgmt":"Owner"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redundancyTestingVault/providers/Microsoft.RecoveryServices/vaults/test654","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"test6543","etag":"W/\"datetime''2025-08-14T16%3A35%3A45.3569884Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redundancyTestingVault/providers/Microsoft.RecoveryServices/vaults/test6543","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"Rereg-AFS-Test","etag":"W/\"datetime''2025-10-30T18%3A17%3A23.363862Z''\"","tags":{"Owner":"kalyan","Purpose":"Test","DeleteBy":"10-2025"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/reregistration-test-rg/providers/Microsoft.RecoveryServices/vaults/Rereg-AFS-Test","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"Rereg-VM-Test","etag":"W/\"datetime''2026-03-30T07%3A00%3A36.58315Z''\"","tags":{"Owner":"Kalyan","Purpose":"Testing","DeleteBy":"10-2025"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/reregistration-test-rg/providers/Microsoft.RecoveryServices/vaults/Rereg-VM-Test","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"reregistration-demo-vault","etag":"W/\"datetime''2025-10-27T07%3A22%3A21.1231643Z''\"","tags":{"CreatedOn":"2025-07-01T04:46:19.3664265Z"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/reregistration-test-rg/providers/Microsoft.RecoveryServices/vaults/reregistration-demo-vault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"testclassicsa","etag":"W/\"datetime''2025-08-14T16%3A35%3A47.8019101Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rohinitest/providers/Microsoft.RecoveryServices/vaults/testclassicsa","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"saphana-clitest-secondary-vault","etag":"W/\"datetime''2025-08-14T16%3A35%3A48.2517118Z''\"","tags":{"Owner":"akneema","MABUsed":"Yes","DeleteBy":"12-9999","Purpose":"CLITest"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/saphana-clitest-rg/providers/Microsoft.RecoveryServices/vaults/saphana-clitest-secondary-vault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"saphanaworkloadexistingsecondaryvault","etag":"W/\"datetime''2025-08-14T16%3A35%3A49.0133769Z''\"","tags":{"MABUsed":"Yes","Purpose":"BVT"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","encryption":null,"secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/saphanaworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/saphanaworkloadexistingsecondaryvault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"sarathecyvault","etag":"W/\"datetime''2025-08-14T16%3A36%3A53.0851312Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarathecyvault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"simran-rs","etag":"W/\"datetime''2025-08-14T16%3A43%3A53.6017981Z''\"","tags":{"Auto Shutdown":"No"," DeleteBy":"05-2039"},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cmk.system/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identity2":{"clientId":"c105dcb0-b19f-4d55-adba-749e0037c42e","principalId":"ab44c749-c400-4689-bcd1-128d7ecefd94"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cmk.system/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identityea1":{"clientId":"72141888-2ff1-4b7c-a17c-7c727f93e2da","principalId":"6b5aa7f8-362a-4e49-bd0d-d22e2e10ef09"}}},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Disabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/simran-test/providers/Microsoft.RecoveryServices/vaults/simran-rs","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"snirsvault-sys","etag":"W/\"datetime''2025-08-14T16%3A43%3A54.4824096Z''\"","tags":{"Owner":"zubairabid","Purpose":"SNI Testing"},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"0e188efb-b4f7-4276-b7df-516b39e9ff1f","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/snitestingrgecy/providers/Microsoft.RecoveryServices/vaults/snirsvault-sys","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"snirsvault-sysuser","etag":"W/\"datetime''2025-08-14T16%3A43%3A55.1041355Z''\"","tags":{"Owner":"zubairabid","Purpose":"SNI Testing"},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"959ceaf3-1fae-428e-83f1-7e48f8a021b9","type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg7pyzsjevhwekdbuqz553tg6kgb6slt5rnpfllucxn5hfwmjf2ajkuvi2gbdaaxgwv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity1lo6xcwqhnfjlvnrua4ltft5sexv2vwbdq":{"clientId":"da517d21-5e7b-44b8-a1d4-da442e04819f","principalId":"1a4e49c1-5ead-4089-8842-6387e7c47da9"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg7pyzsjevhwekdbuqz553tg6kgb6slt5rnpfllucxn5hfwmjf2ajkuvi2gbdaaxgwv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity2rirallpzdiewl22mxvqokxo33nnpipxka":{"clientId":"4f600a01-5528-4de0-a35a-b50eae847d9c","principalId":"b9ced4e4-c763-4812-a0f5-c0ecb4badecf"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgdzpzsaihvvk3ol7ruhv26iuemblmnbqkpfy4wnc3nlfqvyeb35exxm4ysury32tyd/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity137pbjy65i54ed7o3i2qo7c2wzk6ygda2h":{"clientId":"c126e597-db35-4f69-8a05-d3090fb49e2e","principalId":"f0d76384-52d5-4702-a329-4ce942b74b9e"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgdzpzsaihvvk3ol7ruhv26iuemblmnbqkpfy4wnc3nlfqvyeb35exxm4ysury32tyd/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity2nv45p6srizmxurnkwwa4lgmqil4vo7p57":{"clientId":"62b3a5f2-8bbe-4316-a0fd-ae363fb14e9d","principalId":"0a35a6cc-9b72-46cf-ae32-24bf27872442"}}},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/snitestingrgecy/providers/Microsoft.RecoveryServices/vaults/snirsvault-sysuser","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"snirsvault-user","etag":"W/\"datetime''2025-08-14T16%3A43%3A55.9297716Z''\"","tags":{"Owner":"zubairabid","Purpose":"SNI - Testing"},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg7pyzsjevhwekdbuqz553tg6kgb6slt5rnpfllucxn5hfwmjf2ajkuvi2gbdaaxgwv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity1lo6xcwqhnfjlvnrua4ltft5sexv2vwbdq":{"clientId":"da517d21-5e7b-44b8-a1d4-da442e04819f","principalId":"1a4e49c1-5ead-4089-8842-6387e7c47da9"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg7pyzsjevhwekdbuqz553tg6kgb6slt5rnpfllucxn5hfwmjf2ajkuvi2gbdaaxgwv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity2rirallpzdiewl22mxvqokxo33nnpipxka":{"clientId":"4f600a01-5528-4de0-a35a-b50eae847d9c","principalId":"b9ced4e4-c763-4812-a0f5-c0ecb4badecf"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgdzpzsaihvvk3ol7ruhv26iuemblmnbqkpfy4wnc3nlfqvyeb35exxm4ysury32tyd/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity137pbjy65i54ed7o3i2qo7c2wzk6ygda2h":{"clientId":"c126e597-db35-4f69-8a05-d3090fb49e2e","principalId":"f0d76384-52d5-4702-a329-4ce942b74b9e"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgdzpzsaihvvk3ol7ruhv26iuemblmnbqkpfy4wnc3nlfqvyeb35exxm4ysury32tyd/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity2nv45p6srizmxurnkwwa4lgmqil4vo7p57":{"clientId":"62b3a5f2-8bbe-4316-a0fd-ae363fb14e9d","principalId":"0a35a6cc-9b72-46cf-ae32-24bf27872442"}}},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/snitestingrgecy/providers/Microsoft.RecoveryServices/vaults/snirsvault-user","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"testhanatarget","etag":"W/\"datetime''2025-08-14T16%3A43%3A56.5095161Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testbcdrhana/providers/Microsoft.RecoveryServices/vaults/testhanatarget","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"vepothir-eastus2euap","etag":"W/\"datetime''2025-08-31T19%3A50%3A37.9859179Z''\"","identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"829318ca-d52b-423a-bf44-09303cfd8345","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vepothir-rg-ram-sub/providers/Microsoft.RecoveryServices/vaults/vepothir-eastus2euap","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"vepothir-softdelete-2","etag":"W/\"datetime''2025-08-14T16%3A52%3A02.2833801Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vepothir-rg-ram-sub/providers/Microsoft.RecoveryServices/vaults/vepothir-softdelete-2","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"vepothir-test-sof-create-vault","etag":"W/\"datetime''2025-08-14T16%3A52%3A26.4517321Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vepothir-rg-ram-sub/providers/Microsoft.RecoveryServices/vaults/vepothir-test-sof-create-vault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"vepothir-vault-eastus2euap","etag":"W/\"datetime''2025-08-14T16%3A52%3A26.0908917Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vepothir-rg-ram-sub/providers/Microsoft.RecoveryServices/vaults/vepothir-vault-eastus2euap","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"vepothir-vault-gaurd","etag":"W/\"datetime''2025-08-14T16%3A52%3A26.776589Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vepothir-rg-ram-sub/providers/Microsoft.RecoveryServices/vaults/vepothir-vault-gaurd","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"ABCTestDUPIVault","etag":"W/\"datetime''2025-08-14T16%3A52%3A27.4293019Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vtAG8abcc-EASTUS2EUAP/providers/Microsoft.RecoveryServices/vaults/ABCTestDUPIVault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"ClusterDUPITestABCC","etag":"W/\"datetime''2025-08-14T16%3A52%3A27.9200852Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vtAG9abcc-EASTUS2EUAP/providers/Microsoft.RecoveryServices/vaults/ClusterDUPITestABCC","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"zcmktest","etag":"W/\"datetime''2025-08-14T16%3A52%3A28.549809Z''\"","identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zubairRGecy/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zubairuamiecy":{"clientId":"e5f5dcca-f99a-4722-8de8-b51ba0119ab0","principalId":"08dab2c2-10f7-4cbd-9321-b097e3c2ca84"}}},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","encryption":{"keyVaultProperties":{"keyUri":"https://zubairkv.vault.azure.net/keys/cmktest1"},"kekIdentity":{"useSystemAssignedIdentity":false,"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zubairRGecy/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zubairuamiecy"},"infrastructureEncryption":"Disabled"},"secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zubairRG/providers/Microsoft.RecoveryServices/vaults/zcmktest","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"zecysdtestvault0","etag":"W/\"datetime''2025-08-14T16%3A52%3A29.3004767Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","monitoringSettings":{"azureMonitorAlertSettings":{"alertsForAllJobFailures":"Enabled","alertsForAllReplicationIssues":"Enabled","alertsForAllFailoverIssues":"Enabled"},"classicAlertSettings":{"alertsForCriticalOperations":"Enabled","emailNotificationsForSiteRecovery":"Enabled"}},"secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zubairRG/providers/Microsoft.RecoveryServices/vaults/zecysdtestvault0","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"eastus2euap","name":"zecysdtestvault1","etag":"W/\"datetime''2025-08-14T16%3A52%3A29.613339Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","monitoringSettings":{"azureMonitorAlertSettings":{"alertsForAllJobFailures":"Enabled","alertsForAllReplicationIssues":"Enabled","alertsForAllFailoverIssues":"Enabled"},"classicAlertSettings":{"alertsForCriticalOperations":"Enabled","emailNotificationsForSiteRecovery":"Enabled"}},"secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zubairRG/providers/Microsoft.RecoveryServices/vaults/zecysdtestvault1","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"eastus2euap","name":"zecysdtestvault2","etag":"W/\"datetime''2025-08-14T16%3A52%3A30.3070333Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","monitoringSettings":{"azureMonitorAlertSettings":{"alertsForAllJobFailures":"Enabled","alertsForAllReplicationIssues":"Enabled","alertsForAllFailoverIssues":"Enabled"},"classicAlertSettings":{"alertsForCriticalOperations":"Enabled","emailNotificationsForSiteRecovery":"Enabled"}},"secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zubairRG/providers/Microsoft.RecoveryServices/vaults/zecysdtestvault2","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"eastus2euap","name":"zimmut-ecy-1","etag":"W/\"datetime''2025-08-14T16%3A52%3A30.7138541Z''\"","tags":{"Owner":"zubairabid"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zubairRG/providers/Microsoft.RecoveryServices/vaults/zimmut-ecy-1","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"ztest1005","etag":"W/\"datetime''2025-08-14T16%3A52%3A31.2496178Z''\"","identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zubairRGecy/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zubairuamiecy":{"clientId":"e5f5dcca-f99a-4722-8de8-b51ba0119ab0","principalId":"08dab2c2-10f7-4cbd-9321-b097e3c2ca84"}}},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","monitoringSettings":{"azureMonitorAlertSettings":{"alertsForAllJobFailures":"Enabled","alertsForAllReplicationIssues":"Enabled","alertsForAllFailoverIssues":"Enabled"},"classicAlertSettings":{"alertsForCriticalOperations":"Enabled","emailNotificationsForSiteRecovery":"Enabled"}},"secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zubairRG/providers/Microsoft.RecoveryServices/vaults/ztest1005","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"eastus2euap","name":"test-crr-remove","etag":"W/\"datetime''2025-08-14T16%3A52%3A32.1932021Z''\"","tags":{"Owner":"zubairabid","Purpose":"CSI + Testing"},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg7pyzsjevhwekdbuqz553tg6kgb6slt5rnpfllucxn5hfwmjf2ajkuvi2gbdaaxgwv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity1lo6xcwqhnfjlvnrua4ltft5sexv2vwbdq":{"clientId":"da517d21-5e7b-44b8-a1d4-da442e04819f","principalId":"1a4e49c1-5ead-4089-8842-6387e7c47da9"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg7pyzsjevhwekdbuqz553tg6kgb6slt5rnpfllucxn5hfwmjf2ajkuvi2gbdaaxgwv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity2rirallpzdiewl22mxvqokxo33nnpipxka":{"clientId":"4f600a01-5528-4de0-a35a-b50eae847d9c","principalId":"b9ced4e4-c763-4812-a0f5-c0ecb4badecf"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgdzpzsaihvvk3ol7ruhv26iuemblmnbqkpfy4wnc3nlfqvyeb35exxm4ysury32tyd/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity137pbjy65i54ed7o3i2qo7c2wzk6ygda2h":{"clientId":"c126e597-db35-4f69-8a05-d3090fb49e2e","principalId":"f0d76384-52d5-4702-a329-4ce942b74b9e"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgdzpzsaihvvk3ol7ruhv26iuemblmnbqkpfy4wnc3nlfqvyeb35exxm4ysury32tyd/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest-identity2nv45p6srizmxurnkwwa4lgmqil4vo7p57":{"clientId":"62b3a5f2-8bbe-4316-a0fd-ae363fb14e9d","principalId":"0a35a6cc-9b72-46cf-ae32-24bf27872442"}}},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/snitestingrgecy/providers/Microsoft.RecoveryServices/vaults/snirsvault-user","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"testhanatarget","etag":"W/\"datetime''2025-08-14T16%3A43%3A56.5095161Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testbcdrhana/providers/Microsoft.RecoveryServices/vaults/testhanatarget","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"vepothir-eastus2euap","etag":"W/\"datetime''2026-03-05T05%3A57%3A26.8100307Z''\"","identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"829318ca-d52b-423a-bf44-09303cfd8345","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","costManagementSettings":{"granularityLevel":"ProtectedItemWithParentTag"},"secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vepothir-rg-ram-sub/providers/Microsoft.RecoveryServices/vaults/vepothir-eastus2euap","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"vepothir-softdelete-2","etag":"W/\"datetime''2025-08-14T16%3A52%3A02.2833801Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vepothir-rg-ram-sub/providers/Microsoft.RecoveryServices/vaults/vepothir-softdelete-2","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"vepothir-test-sof-create-vault","etag":"W/\"datetime''2025-08-14T16%3A52%3A26.4517321Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vepothir-rg-ram-sub/providers/Microsoft.RecoveryServices/vaults/vepothir-test-sof-create-vault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"vepothir-vault-eastus2euap","etag":"W/\"datetime''2026-03-05T05%3A52%3A57.6882696Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","costManagementSettings":{"granularityLevel":"ProtectedItemWithParentTag"},"secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vepothir-rg-ram-sub/providers/Microsoft.RecoveryServices/vaults/vepothir-vault-eastus2euap","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"vepothir-vault-gaurd","etag":"W/\"datetime''2025-08-14T16%3A52%3A26.776589Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vepothir-rg-ram-sub/providers/Microsoft.RecoveryServices/vaults/vepothir-vault-gaurd","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"ABCTestDUPIVault","etag":"W/\"datetime''2026-06-01T10%3A10%3A22.5416135Z''\"","identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dimunj-eus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/test-uami-wus2-1":{"clientId":"3cbdfe2c-4c86-49e9-a9f1-75065b32bf36","principalId":"84506a41-2c01-49fb-bdc5-a0d100f6b193"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagaCZR-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/hiagaUserIdentity2":{"clientId":"6059a064-efa4-4f21-a52a-df467ddd1e60","principalId":"a399daa0-490c-4e1c-b7ca-2f4c8175ad9b"}}},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vtAG8abcc-EASTUS2EUAP/providers/Microsoft.RecoveryServices/vaults/ABCTestDUPIVault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"ClusterDUPITestABCC","etag":"W/\"datetime''2025-08-14T16%3A52%3A27.9200852Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vtAG9abcc-EASTUS2EUAP/providers/Microsoft.RecoveryServices/vaults/ClusterDUPITestABCC","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"risraj-resourcemovetest","etag":"W/\"datetime''2026-03-05T06%3A12%3A37.6624328Z''\"","properties":{"provisioningState":"Succeeded","moveDetails":{"operationId":"0cd27352-bb58-44e5-a48d-d6a4c22abb37","startTimeUtc":"2026-01-20T09:44:47.2096239Z","completionTimeUtc":"2026-01-20T09:46:44.6481567Z","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/risraj-rsvtesting/providers/Microsoft.RecoveryServices/vaults/risraj-resourcemovetest","targetResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zubairRG/providers/Microsoft.RecoveryServices/vaults/risraj-resourcemovetest"},"moveState":"MoveSucceeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zubairRG/providers/Microsoft.RecoveryServices/vaults/risraj-resourcemovetest","type":"microsoft.recoveryservices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"risraj-rmove1","etag":"W/\"datetime''2026-01-19T15%3A32%3A40.8780162Z''\"","properties":{"provisioningState":"Succeeded","moveDetails":{"operationId":"54abd589-e11c-49cc-8c24-0a88d42692f0","startTimeUtc":"2026-01-19T15:30:52.785272Z","completionTimeUtc":"2026-01-19T15:32:40.8480876Z","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/risraj-rg/providers/Microsoft.RecoveryServices/vaults/risraj-rmove1","targetResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zubairRG/providers/Microsoft.RecoveryServices/vaults/risraj-rmove1"},"moveState":"MoveSucceeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zubairRG/providers/Microsoft.RecoveryServices/vaults/risraj-rmove1","type":"microsoft.recoveryservices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"zcmktest","etag":"W/\"datetime''2025-08-14T16%3A52%3A28.549809Z''\"","identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zubairRGecy/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zubairuamiecy":{"clientId":"e5f5dcca-f99a-4722-8de8-b51ba0119ab0","principalId":"08dab2c2-10f7-4cbd-9321-b097e3c2ca84"}}},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","encryption":{"keyVaultProperties":{"keyUri":"https://zubairkv.vault.azure.net/keys/cmktest1"},"kekIdentity":{"useSystemAssignedIdentity":false,"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zubairRGecy/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zubairuamiecy"},"infrastructureEncryption":"Disabled"},"secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zubairRG/providers/Microsoft.RecoveryServices/vaults/zcmktest","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"zecysdtestvault0","etag":"W/\"datetime''2025-08-14T16%3A52%3A29.3004767Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","monitoringSettings":{"azureMonitorAlertSettings":{"alertsForAllJobFailures":"Enabled","alertsForAllReplicationIssues":"Enabled","alertsForAllFailoverIssues":"Enabled"},"classicAlertSettings":{"alertsForCriticalOperations":"Enabled","emailNotificationsForSiteRecovery":"Enabled"}},"secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zubairRG/providers/Microsoft.RecoveryServices/vaults/zecysdtestvault0","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"eastus2euap","name":"zecysdtestvault1","etag":"W/\"datetime''2025-08-14T16%3A52%3A29.613339Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","monitoringSettings":{"azureMonitorAlertSettings":{"alertsForAllJobFailures":"Enabled","alertsForAllReplicationIssues":"Enabled","alertsForAllFailoverIssues":"Enabled"},"classicAlertSettings":{"alertsForCriticalOperations":"Enabled","emailNotificationsForSiteRecovery":"Enabled"}},"secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zubairRG/providers/Microsoft.RecoveryServices/vaults/zecysdtestvault1","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"eastus2euap","name":"zecysdtestvault2","etag":"W/\"datetime''2025-08-14T16%3A52%3A30.3070333Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","monitoringSettings":{"azureMonitorAlertSettings":{"alertsForAllJobFailures":"Enabled","alertsForAllReplicationIssues":"Enabled","alertsForAllFailoverIssues":"Enabled"},"classicAlertSettings":{"alertsForCriticalOperations":"Enabled","emailNotificationsForSiteRecovery":"Enabled"}},"secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zubairRG/providers/Microsoft.RecoveryServices/vaults/zecysdtestvault2","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"eastus2euap","name":"zimmut-ecy-1","etag":"W/\"datetime''2025-08-14T16%3A52%3A30.7138541Z''\"","tags":{"Owner":"zubairabid"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zubairRG/providers/Microsoft.RecoveryServices/vaults/zimmut-ecy-1","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"ztest1005","etag":"W/\"datetime''2025-08-14T16%3A52%3A31.2496178Z''\"","identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zubairRGecy/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zubairuamiecy":{"clientId":"e5f5dcca-f99a-4722-8de8-b51ba0119ab0","principalId":"08dab2c2-10f7-4cbd-9321-b097e3c2ca84"}}},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","monitoringSettings":{"azureMonitorAlertSettings":{"alertsForAllJobFailures":"Enabled","alertsForAllReplicationIssues":"Enabled","alertsForAllFailoverIssues":"Enabled"},"classicAlertSettings":{"alertsForCriticalOperations":"Enabled","emailNotificationsForSiteRecovery":"Enabled"}},"secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zubairRG/providers/Microsoft.RecoveryServices/vaults/ztest1005","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"eastus2euap","name":"test-crr-remove","etag":"W/\"datetime''2025-08-14T16%3A52%3A32.1932021Z''\"","tags":{"Owner":"zubairabid","Purpose":"CSI Testing"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zubairRGecy/providers/Microsoft.RecoveryServices/vaults/test-crr-remove","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus2euap","name":"test245","etag":"W/\"datetime''2025-08-14T16%3A52%3A31.7513967Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zubairRGecy/providers/Microsoft.RecoveryServices/vaults/test245","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}}]}' headers: cache-control: - no-cache content-length: - - '66342' + - '51919' content-type: - application/json; charset=utf-8 date: - - Mon, 27 Oct 2025 13:58:27 GMT + - Tue, 21 Jul 2026 05:21:23 GMT expires: - '-1' pragma: @@ -2944,11 +3550,11 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - 48109202-029d-449b-bd00-ad9bb2580a09 + - a7a5508e-daaf-4014-81a1-866fa9bc1803 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 7BED5CEC1DCA4565848432A1DDA86952 Ref B: JKT201051406052 Ref C: 2025-10-27T13:58:26Z' + - 'Ref A: D93718FA7A174054AB9153E71D21AAD9 Ref B: PNQ231110907052 Ref C: 2026-07-21T05:21:21Z' status: code: 200 message: OK @@ -2966,7 +3572,7 @@ interactions: ParameterSetName: - --backup-management-type -v -g --query User-Agent: - - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.11.9 (Windows-10-10.0.26200-SP0) + - AZURECLI/2.88.0 azsdk-python-core/1.39.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupProtectionContainers?api-version=2025-02-01&%24filter=backupManagementType+eq+%27AzureIaasVM%27+and+status+eq+%27Registered%27 response: @@ -2980,7 +3586,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 27 Oct 2025 13:58:33 GMT + - Tue, 21 Jul 2026 05:21:25 GMT expires: - '-1' pragma: @@ -2992,11 +3598,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=12f8ea5c-1212-449e-b31c-0a574f43076e/southeastasia/f8756da3-4695-4abd-8362-029badc83226 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=352782de-cadf-4f14-ad97-08cd2617ef55/eastus2euap/1f495b84-5bb1-4359-bce9-c253950e6ef5 x-ms-ratelimit-remaining-subscription-resource-requests: - '1099' + x-ms-throttling-version: + - v1 x-msedge-ref: - - 'Ref A: FC2982C336FA4F2A829CCFF09911B9BA Ref B: JKT201051406052 Ref C: 2025-10-27T13:58:32Z' + - 'Ref A: DE43443C2121481CA1B78C129404F60F Ref B: PNQ231110909029 Ref C: 2026-07-21T05:21:25Z' status: code: 200 message: OK @@ -3016,25 +3624,25 @@ interactions: ParameterSetName: - -n -g --yes User-Agent: - - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.11.9 (Windows-10-10.0.26200-SP0) + - AZURECLI/2.88.0 azsdk-python-core/1.39.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003?api-version=2025-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003?api-version=2026-05-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/operationStatus/MTAyMztmNWM0MWRhOS0zYzgxLTQxNjEtYTdkYy0yYWJiNDFlNzFjNTI=?api-version=2025-08-01&t=638971703160240973&c=MIIIpDCCBoygAwIBAgITFgIdx-8P5Q2flkVe0wABAh3H7zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUxMDIwMTM0ODIxWhcNMjYwMTE4MTM0ODIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALJsx40wbBQQVymBKxEYB3QsXs7DWrmkLk1cvGC9Oh6ZUsiS6z4fZ9KUiL7u4Cb1R-5gfYTplSDkCfn9Y776fzY9tgxKTFF2KMooWQSUUNfMYuwrWFbbHGDx79k-SN6J44MhkxgVnvirjK5cOgtR1YwGjnk0x5Ea3-szYPplTQi12yBEDft-JR3YCKn54jq1stV1W2hRp_2g1BQImqyuswXZKY2DD-s3bQClN3clms4KDqdtTyXsWYLLd1wyrriHRsQnNbYpC1EqjwDyNGLTXHMVXKbeUefj5AwkYLnb77HgLc0IW7nFQwaOLB01n0OsHuhWZeUiilCDsiV76B_8MF0CAwEAAaOCBJEwggSNMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAdoGCCsGAQUFBwEBBIIBzDCCAcgwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDEuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDQuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwHQYDVR0OBBYEFBIs_XIgrlYGjVV6tC88QEhsK39fMA4GA1UdDwEB_wQEAwIFoDCCATUGA1UdHwSCASwwggEoMIIBJKCCASCgggEchkJodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMB8GA1UdIwQYMBaAFEijrWB1am_sYPNpVdEAsTJX_GzkMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAgEAoWGeh2L-xOp4WFwNcK7-42nE8XWzyiVfNq-en8umv6B7FIlZBqRTSHucIlGoZqT7uEkuOIkyfwKUKMHeX3kte0w5f4gSgSX-JsexZj509BqurtDEgPbEjh9zUpbDAM7sODNvfiZ0HVF6sREKDyDIRGhYl_C7qO6FPNUH0wiEMRNI92WewkvN5kxHFBO56OS26He5ElMpeDPNifRXSj2RrthZNiLhtVNqOXCXV8HvAO-8PBPQGpetO260pqROBjblZfst9LCba3YKdZ8o2ojOeG5_ANB5mSX3bsBsY2ULkbRKgNBi5AXJ7q0-n01yM6-uiSvZ8wrkHLfDJ6KlzSDTLJpoVa8AUeZoPEhJgyQInNCPK5nFOD-F1QNRwQj-B-s7y16iUVZiLZ3hkxODdrbMjfPRL2P3DYn1cg-jZVq0xDX1aSlRyQq6qi9xZ9RfBPeOrsZ3SHGm0XIJdlqtaYt0Evo6fWKiFXuJ-H6nf5Qy8sLTk2q160CH2IgsW5_tA0n0ySGt5n-9j610wwPdH6ImEQ1jli9U8Ur82WjB7qQhpmYPuHOyytAGttfk1271zkw5TOpkzJfGWvT5zYv436XCj6pouSk2GJmG1iR-9pO4kPK1LWp3ujV-IXZjP_-xg0wwwsvc0BDJJZZk4tElY91ySFzLXlN8QfTH67VHl7D8ILg&s=hWbK34QK_rO3EzZBnPmXhpCElXivr2kl9mQGaQqVgw61dwPUAKSqP0BxVSRB0KK3-Fd7S_EE5cp4A7vDnsxCQCiwFCzX8vRci2cfGhk5xzaCtRXZPLWhQ3yZfXE3af4k697LARdzkxeNwyOPv6ERBfeYJb-S6--6HtR4mU-kE87CU4TvdHW0zFkpk8k2Zc52adKryONJQvkMoRaucplYtvH3k7IWHhOGtqFF_g8Z7lVbS1LtXVr1JPaL2FTeXApKRTgSDYTpNPhJj5v49YTQ8G3clEmlo2qJevCDpXeem_1xgPDnDDCvPHWf8AlvxuYkHCiMIRTwLOD4YG5CEYw4TQ&h=-OIXmC1gXaNynuraVTS9UuSG59eDaOiT3RZ7pJIDDgw + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/operationStatus/MTAyMzszM2RkYzIyZS1iZmI1LTRlNDUtODJiMS0xNTIwOGU3ZDM1NmI=?api-version=2026-05-01&t=639202080885557787&c=MIIH9TCCBt2gAwIBAgIRAKnTo6mKeliSYj1GLETof4IwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVUyQyBDQSAwMTAeFw0yNjA3MDIxNTU4NDNaFw0yNjA5MjcyMTU4NDNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAlDQMyX5eVlNoyHQy97t41xstx7ISW3Jpt0fmktBr-SytLFjS2PEwnW3DFpc-bQgfDfHkKP0_FRLvm_mazEvS5KYzyX6nFjGqQTX3SfneJV5jo7nOwYnQHFTbkg0Dngz7AipTBy6yAiQqKMhRo_D-N4o3stwmKHeA0tAiEOx4G_PiAZBVgwqD_hS-porAKnsf-m7-vYsa-g9Cw0SQ2t7YIFgfqGifFcAH79L7QF5n4-toqH20MDZrR10dXpjNK50DvRiltXMo7xC198sVfC6ISY8hDbiFDpsKgL_lz-pJ2kyYJNyq1NUfS79AS70Bkl13eaOYbl8go_Oo41Ma5ArEgQIDAQABo4IE8jCCBO4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7Mv1WvWn7sAfft9pF9lwNBkNam0wHwYDVR0jBBgwFoAUz1EBqulDLGR2G0rwqsDykvhPw7swggHiBgNVHR8EggHZMIIB1TB1oHOgcYZvaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHegdaBzhnFodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyZXVhcC9jcmxzL2NjbWVlYXN0dXMyZXVhcHBraS9jY21lZWFzdHVzMmV1YXBpY2EwMS82NS9jdXJyZW50LmNybDBmoGSgYoZgaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHugeaB3hnVodHRwOi8vY2NtZWVhc3R1czJldWFwcGtpLmVhc3R1czJldWFwLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJldWFwaWNhMDEvNjUvY3VycmVudC5jcmwwggHnBggrBgEFBQcBAQSCAdkwggHVMHgGCCsGAQUFBzAChmxodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwegYIKwYBBQUHMAKGbmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NhY2VydHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxL2NlcnQuY2VyMGkGCCsGAQUFBzAChl1odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwcgYIKwYBBQUHMAKGZmh0dHA6Ly9jY21lZWFzdHVzMmV1YXBwa2kuZWFzdHVzMmV1YXAucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmV1YXBpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAndPCPc-CmjHOQpHPVSFI4dsJ3mAAA9L0QPDWwmXXvm66R08WToYQA9QCpkqxZEzl69AhSTR5x65hpeRv8xhwwj57QIuBD6rfMRghZH83T4x3bdOI4KmhFi_uY_52-cou5_xf0DyGAI_C77U5rC8TmVil8EsUCojV8rWkZXUBQSKZMaC1gzmzWW3pgKG9zwbD6J1M_7PW6f_zhE9KvGfBrLALoabdK0H_in5p3CyRMQee9pXSpsictb8cyfBIRU1fRSNmLnOjVSlF_Ll20gYIhnHvetGUxWU0EE9gWSJVUtwbqJjCeDouKPwe2UYUosoETTC7iluHZc0PV9EMfunH2w&s=A5L-qCrGa_ATY0ehwFtK96DXJfExQdz0cGEl_TQeW676YO8L4gE6vlxbk8a0RFtHHmP71DWKLguRO7FXX1CLDnEbaMlFm_sUJ1Hit6-JaCDW0vFA_3me75K_PherHi_piNfcA_1As4tnY-75ma6ezA6zYeYx0ahk9fibDCDlRlkX8GgrJXre6N9E4GTRbdrF4ulk1Afr-kNKJ0LG2UB3tiC6sl_1GDbAqwP4eJw8I8-yMjUunvJ92qWzMnqqgszE_BXGz2gjEwT2VPeIlxIA9XpcWej5dyIc9pLyQmd5ymW4BmOlpgOwzI2uiAGG9Wr07fhqbU8Mm46KhzylVF_ZHw&h=QEXtWRyKNCfAWDvpNIgW8PCGp4q-cxp5wO1gwZOh48I cache-control: - no-cache content-length: - '0' date: - - Mon, 27 Oct 2025 13:58:35 GMT + - Tue, 21 Jul 2026 05:21:27 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/operationResults/MTAyMztmNWM0MWRhOS0zYzgxLTQxNjEtYTdkYy0yYWJiNDFlNzFjNTI=?api-version=2025-08-01&t=638971703160240973&c=MIIIpDCCBoygAwIBAgITFgIdx-8P5Q2flkVe0wABAh3H7zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUxMDIwMTM0ODIxWhcNMjYwMTE4MTM0ODIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALJsx40wbBQQVymBKxEYB3QsXs7DWrmkLk1cvGC9Oh6ZUsiS6z4fZ9KUiL7u4Cb1R-5gfYTplSDkCfn9Y776fzY9tgxKTFF2KMooWQSUUNfMYuwrWFbbHGDx79k-SN6J44MhkxgVnvirjK5cOgtR1YwGjnk0x5Ea3-szYPplTQi12yBEDft-JR3YCKn54jq1stV1W2hRp_2g1BQImqyuswXZKY2DD-s3bQClN3clms4KDqdtTyXsWYLLd1wyrriHRsQnNbYpC1EqjwDyNGLTXHMVXKbeUefj5AwkYLnb77HgLc0IW7nFQwaOLB01n0OsHuhWZeUiilCDsiV76B_8MF0CAwEAAaOCBJEwggSNMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAdoGCCsGAQUFBwEBBIIBzDCCAcgwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDEuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDQuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwHQYDVR0OBBYEFBIs_XIgrlYGjVV6tC88QEhsK39fMA4GA1UdDwEB_wQEAwIFoDCCATUGA1UdHwSCASwwggEoMIIBJKCCASCgggEchkJodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMB8GA1UdIwQYMBaAFEijrWB1am_sYPNpVdEAsTJX_GzkMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAgEAoWGeh2L-xOp4WFwNcK7-42nE8XWzyiVfNq-en8umv6B7FIlZBqRTSHucIlGoZqT7uEkuOIkyfwKUKMHeX3kte0w5f4gSgSX-JsexZj509BqurtDEgPbEjh9zUpbDAM7sODNvfiZ0HVF6sREKDyDIRGhYl_C7qO6FPNUH0wiEMRNI92WewkvN5kxHFBO56OS26He5ElMpeDPNifRXSj2RrthZNiLhtVNqOXCXV8HvAO-8PBPQGpetO260pqROBjblZfst9LCba3YKdZ8o2ojOeG5_ANB5mSX3bsBsY2ULkbRKgNBi5AXJ7q0-n01yM6-uiSvZ8wrkHLfDJ6KlzSDTLJpoVa8AUeZoPEhJgyQInNCPK5nFOD-F1QNRwQj-B-s7y16iUVZiLZ3hkxODdrbMjfPRL2P3DYn1cg-jZVq0xDX1aSlRyQq6qi9xZ9RfBPeOrsZ3SHGm0XIJdlqtaYt0Evo6fWKiFXuJ-H6nf5Qy8sLTk2q160CH2IgsW5_tA0n0ySGt5n-9j610wwPdH6ImEQ1jli9U8Ur82WjB7qQhpmYPuHOyytAGttfk1271zkw5TOpkzJfGWvT5zYv436XCj6pouSk2GJmG1iR-9pO4kPK1LWp3ujV-IXZjP_-xg0wwwsvc0BDJJZZk4tElY91ySFzLXlN8QfTH67VHl7D8ILg&s=O3SLgNEZ8E1vtmj39mDb8Pzph0Jv3qYPf3I4OQB1l4K3f0c84jdw4lUSreU40pE5iZTN0UY1oWZygN78QvD1uNoALKdXGmuaY5xhbmMn1y7lIp-m1zdCD96fnhLd77P5G51cKjDgf9X1hfcdyT4S-2L3fv2UdFa5xldqU7LGkHhGe-zy76az3ZTYKQj2XjrErjf4RNpXbMLoxdSy-67O5KvcyjTAwxV-1DrHcgKYLi7OeAEy9Mk6ZNg1Hh8UuFpvLnv7YaETA8jX2inArlwhitr7bmzOPfhrDvt_Ebj427qtHARRE9rxvKHt8E6HOwaeXkjxqLVJOP9VmC5fKfMbMA&h=ybvvqyi8J3b7Q5XAIReqaO123-jBS9BryP2LVtLy1G8 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/operationResults/MTAyMzszM2RkYzIyZS1iZmI1LTRlNDUtODJiMS0xNTIwOGU3ZDM1NmI=?api-version=2026-05-01&t=639202080885713659&c=MIIH9TCCBt2gAwIBAgIRAKnTo6mKeliSYj1GLETof4IwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVUyQyBDQSAwMTAeFw0yNjA3MDIxNTU4NDNaFw0yNjA5MjcyMTU4NDNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAlDQMyX5eVlNoyHQy97t41xstx7ISW3Jpt0fmktBr-SytLFjS2PEwnW3DFpc-bQgfDfHkKP0_FRLvm_mazEvS5KYzyX6nFjGqQTX3SfneJV5jo7nOwYnQHFTbkg0Dngz7AipTBy6yAiQqKMhRo_D-N4o3stwmKHeA0tAiEOx4G_PiAZBVgwqD_hS-porAKnsf-m7-vYsa-g9Cw0SQ2t7YIFgfqGifFcAH79L7QF5n4-toqH20MDZrR10dXpjNK50DvRiltXMo7xC198sVfC6ISY8hDbiFDpsKgL_lz-pJ2kyYJNyq1NUfS79AS70Bkl13eaOYbl8go_Oo41Ma5ArEgQIDAQABo4IE8jCCBO4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7Mv1WvWn7sAfft9pF9lwNBkNam0wHwYDVR0jBBgwFoAUz1EBqulDLGR2G0rwqsDykvhPw7swggHiBgNVHR8EggHZMIIB1TB1oHOgcYZvaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHegdaBzhnFodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyZXVhcC9jcmxzL2NjbWVlYXN0dXMyZXVhcHBraS9jY21lZWFzdHVzMmV1YXBpY2EwMS82NS9jdXJyZW50LmNybDBmoGSgYoZgaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHugeaB3hnVodHRwOi8vY2NtZWVhc3R1czJldWFwcGtpLmVhc3R1czJldWFwLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJldWFwaWNhMDEvNjUvY3VycmVudC5jcmwwggHnBggrBgEFBQcBAQSCAdkwggHVMHgGCCsGAQUFBzAChmxodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwegYIKwYBBQUHMAKGbmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NhY2VydHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxL2NlcnQuY2VyMGkGCCsGAQUFBzAChl1odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwcgYIKwYBBQUHMAKGZmh0dHA6Ly9jY21lZWFzdHVzMmV1YXBwa2kuZWFzdHVzMmV1YXAucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmV1YXBpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAndPCPc-CmjHOQpHPVSFI4dsJ3mAAA9L0QPDWwmXXvm66R08WToYQA9QCpkqxZEzl69AhSTR5x65hpeRv8xhwwj57QIuBD6rfMRghZH83T4x3bdOI4KmhFi_uY_52-cou5_xf0DyGAI_C77U5rC8TmVil8EsUCojV8rWkZXUBQSKZMaC1gzmzWW3pgKG9zwbD6J1M_7PW6f_zhE9KvGfBrLALoabdK0H_in5p3CyRMQee9pXSpsictb8cyfBIRU1fRSNmLnOjVSlF_Ll20gYIhnHvetGUxWU0EE9gWSJVUtwbqJjCeDouKPwe2UYUosoETTC7iluHZc0PV9EMfunH2w&s=DRWUVV_21_yaeX46vU6AXgOnYPyOgag3jkqjgDadCXoSebLhZfk9OcDJYPeZbXQsHvTo_gI-VL8QgZxoRksy5irpipIyQ2VLaNMINxrvFbgkbufUwpPQnoA-isVFqy-9DUuEpEpky28EM6blheKFjxjvpLhwqIFaeuK0LKzwXrxSIt5rOCHGs0tGvsVoR_1_s55TwsNqTSzIbV7qG22Gsmmv75SJY5nDBz4-hOvQ9BUC53fwV5Hb2WlaTuAhABYnBMGDl60-v3wijFOE7IWjaI9dYgWC8_1Yg7O-dDO9QYUefOoGy0PHBKJdef8YhmxY3vT2JeJsc32xu2zZrEcErg&h=CkKnzctazpcbrdo6LgevowmIADnu7v7Dy-mQ_ewEdqw pragma: - no-cache strict-transport-security: @@ -3044,13 +3652,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=12f8ea5c-1212-449e-b31c-0a574f43076e/eastus2euap/e50c65cd-210a-468d-a2c5-2d06a6c9827e + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=352782de-cadf-4f14-ad97-08cd2617ef55/eastus2euap/1f73c038-95af-4374-989a-d2b62361126a x-ms-ratelimit-remaining-subscription-resource-requests: - '199' x-ms-throttling-version: - v1 x-msedge-ref: - - 'Ref A: 1255620567204E6C843BF205A9AE2356 Ref B: JKT201051406062 Ref C: 2025-10-27T13:58:35Z' + - 'Ref A: 5E88ABA4BC914986B18BF901B07287B2 Ref B: PNQ231110906042 Ref C: 2026-07-21T05:21:27Z' status: code: 202 message: Accepted @@ -3068,13 +3676,13 @@ interactions: ParameterSetName: - -n -g --yes User-Agent: - - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.11.9 (Windows-10-10.0.26200-SP0) + - AZURECLI/2.88.0 azsdk-python-core/1.39.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/operationStatus/MTAyMztmNWM0MWRhOS0zYzgxLTQxNjEtYTdkYy0yYWJiNDFlNzFjNTI=?api-version=2025-08-01&t=638971703160240973&c=MIIIpDCCBoygAwIBAgITFgIdx-8P5Q2flkVe0wABAh3H7zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUxMDIwMTM0ODIxWhcNMjYwMTE4MTM0ODIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALJsx40wbBQQVymBKxEYB3QsXs7DWrmkLk1cvGC9Oh6ZUsiS6z4fZ9KUiL7u4Cb1R-5gfYTplSDkCfn9Y776fzY9tgxKTFF2KMooWQSUUNfMYuwrWFbbHGDx79k-SN6J44MhkxgVnvirjK5cOgtR1YwGjnk0x5Ea3-szYPplTQi12yBEDft-JR3YCKn54jq1stV1W2hRp_2g1BQImqyuswXZKY2DD-s3bQClN3clms4KDqdtTyXsWYLLd1wyrriHRsQnNbYpC1EqjwDyNGLTXHMVXKbeUefj5AwkYLnb77HgLc0IW7nFQwaOLB01n0OsHuhWZeUiilCDsiV76B_8MF0CAwEAAaOCBJEwggSNMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAdoGCCsGAQUFBwEBBIIBzDCCAcgwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDEuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDQuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwHQYDVR0OBBYEFBIs_XIgrlYGjVV6tC88QEhsK39fMA4GA1UdDwEB_wQEAwIFoDCCATUGA1UdHwSCASwwggEoMIIBJKCCASCgggEchkJodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMB8GA1UdIwQYMBaAFEijrWB1am_sYPNpVdEAsTJX_GzkMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAgEAoWGeh2L-xOp4WFwNcK7-42nE8XWzyiVfNq-en8umv6B7FIlZBqRTSHucIlGoZqT7uEkuOIkyfwKUKMHeX3kte0w5f4gSgSX-JsexZj509BqurtDEgPbEjh9zUpbDAM7sODNvfiZ0HVF6sREKDyDIRGhYl_C7qO6FPNUH0wiEMRNI92WewkvN5kxHFBO56OS26He5ElMpeDPNifRXSj2RrthZNiLhtVNqOXCXV8HvAO-8PBPQGpetO260pqROBjblZfst9LCba3YKdZ8o2ojOeG5_ANB5mSX3bsBsY2ULkbRKgNBi5AXJ7q0-n01yM6-uiSvZ8wrkHLfDJ6KlzSDTLJpoVa8AUeZoPEhJgyQInNCPK5nFOD-F1QNRwQj-B-s7y16iUVZiLZ3hkxODdrbMjfPRL2P3DYn1cg-jZVq0xDX1aSlRyQq6qi9xZ9RfBPeOrsZ3SHGm0XIJdlqtaYt0Evo6fWKiFXuJ-H6nf5Qy8sLTk2q160CH2IgsW5_tA0n0ySGt5n-9j610wwPdH6ImEQ1jli9U8Ur82WjB7qQhpmYPuHOyytAGttfk1271zkw5TOpkzJfGWvT5zYv436XCj6pouSk2GJmG1iR-9pO4kPK1LWp3ujV-IXZjP_-xg0wwwsvc0BDJJZZk4tElY91ySFzLXlN8QfTH67VHl7D8ILg&s=hWbK34QK_rO3EzZBnPmXhpCElXivr2kl9mQGaQqVgw61dwPUAKSqP0BxVSRB0KK3-Fd7S_EE5cp4A7vDnsxCQCiwFCzX8vRci2cfGhk5xzaCtRXZPLWhQ3yZfXE3af4k697LARdzkxeNwyOPv6ERBfeYJb-S6--6HtR4mU-kE87CU4TvdHW0zFkpk8k2Zc52adKryONJQvkMoRaucplYtvH3k7IWHhOGtqFF_g8Z7lVbS1LtXVr1JPaL2FTeXApKRTgSDYTpNPhJj5v49YTQ8G3clEmlo2qJevCDpXeem_1xgPDnDDCvPHWf8AlvxuYkHCiMIRTwLOD4YG5CEYw4TQ&h=-OIXmC1gXaNynuraVTS9UuSG59eDaOiT3RZ7pJIDDgw + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/operationStatus/MTAyMzszM2RkYzIyZS1iZmI1LTRlNDUtODJiMS0xNTIwOGU3ZDM1NmI=?api-version=2026-05-01&t=639202080885557787&c=MIIH9TCCBt2gAwIBAgIRAKnTo6mKeliSYj1GLETof4IwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVUyQyBDQSAwMTAeFw0yNjA3MDIxNTU4NDNaFw0yNjA5MjcyMTU4NDNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAlDQMyX5eVlNoyHQy97t41xstx7ISW3Jpt0fmktBr-SytLFjS2PEwnW3DFpc-bQgfDfHkKP0_FRLvm_mazEvS5KYzyX6nFjGqQTX3SfneJV5jo7nOwYnQHFTbkg0Dngz7AipTBy6yAiQqKMhRo_D-N4o3stwmKHeA0tAiEOx4G_PiAZBVgwqD_hS-porAKnsf-m7-vYsa-g9Cw0SQ2t7YIFgfqGifFcAH79L7QF5n4-toqH20MDZrR10dXpjNK50DvRiltXMo7xC198sVfC6ISY8hDbiFDpsKgL_lz-pJ2kyYJNyq1NUfS79AS70Bkl13eaOYbl8go_Oo41Ma5ArEgQIDAQABo4IE8jCCBO4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7Mv1WvWn7sAfft9pF9lwNBkNam0wHwYDVR0jBBgwFoAUz1EBqulDLGR2G0rwqsDykvhPw7swggHiBgNVHR8EggHZMIIB1TB1oHOgcYZvaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHegdaBzhnFodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyZXVhcC9jcmxzL2NjbWVlYXN0dXMyZXVhcHBraS9jY21lZWFzdHVzMmV1YXBpY2EwMS82NS9jdXJyZW50LmNybDBmoGSgYoZgaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHugeaB3hnVodHRwOi8vY2NtZWVhc3R1czJldWFwcGtpLmVhc3R1czJldWFwLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJldWFwaWNhMDEvNjUvY3VycmVudC5jcmwwggHnBggrBgEFBQcBAQSCAdkwggHVMHgGCCsGAQUFBzAChmxodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwegYIKwYBBQUHMAKGbmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NhY2VydHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxL2NlcnQuY2VyMGkGCCsGAQUFBzAChl1odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwcgYIKwYBBQUHMAKGZmh0dHA6Ly9jY21lZWFzdHVzMmV1YXBwa2kuZWFzdHVzMmV1YXAucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmV1YXBpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAndPCPc-CmjHOQpHPVSFI4dsJ3mAAA9L0QPDWwmXXvm66R08WToYQA9QCpkqxZEzl69AhSTR5x65hpeRv8xhwwj57QIuBD6rfMRghZH83T4x3bdOI4KmhFi_uY_52-cou5_xf0DyGAI_C77U5rC8TmVil8EsUCojV8rWkZXUBQSKZMaC1gzmzWW3pgKG9zwbD6J1M_7PW6f_zhE9KvGfBrLALoabdK0H_in5p3CyRMQee9pXSpsictb8cyfBIRU1fRSNmLnOjVSlF_Ll20gYIhnHvetGUxWU0EE9gWSJVUtwbqJjCeDouKPwe2UYUosoETTC7iluHZc0PV9EMfunH2w&s=A5L-qCrGa_ATY0ehwFtK96DXJfExQdz0cGEl_TQeW676YO8L4gE6vlxbk8a0RFtHHmP71DWKLguRO7FXX1CLDnEbaMlFm_sUJ1Hit6-JaCDW0vFA_3me75K_PherHi_piNfcA_1As4tnY-75ma6ezA6zYeYx0ahk9fibDCDlRlkX8GgrJXre6N9E4GTRbdrF4ulk1Afr-kNKJ0LG2UB3tiC6sl_1GDbAqwP4eJw8I8-yMjUunvJ92qWzMnqqgszE_BXGz2gjEwT2VPeIlxIA9XpcWej5dyIc9pLyQmd5ymW4BmOlpgOwzI2uiAGG9Wr07fhqbU8Mm46KhzylVF_ZHw&h=QEXtWRyKNCfAWDvpNIgW8PCGp4q-cxp5wO1gwZOh48I response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/operationStatus/MTAyMztmNWM0MWRhOS0zYzgxLTQxNjEtYTdkYy0yYWJiNDFlNzFjNTI=\",\r\n - \ \"name\": \"MTAyMztmNWM0MWRhOS0zYzgxLTQxNjEtYTdkYy0yYWJiNDFlNzFjNTI=\",\r\n + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/operationStatus/MTAyMzszM2RkYzIyZS1iZmI1LTRlNDUtODJiMS0xNTIwOGU3ZDM1NmI=\",\r\n + \ \"name\": \"MTAyMzszM2RkYzIyZS1iZmI1LTRlNDUtODJiMS0xNTIwOGU3ZDM1NmI=\",\r\n \ \"status\": \"Succeeded\"\r\n}" headers: cache-control: @@ -3084,7 +3692,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 27 Oct 2025 13:58:37 GMT + - Tue, 21 Jul 2026 05:21:30 GMT expires: - '-1' pragma: @@ -3096,11 +3704,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=12f8ea5c-1212-449e-b31c-0a574f43076e/eastus2euap/aa3ce1a6-94cd-4af9-a581-4f06813eae37 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=352782de-cadf-4f14-ad97-08cd2617ef55/eastus2euap/f10e5e81-fd95-46ac-b4ab-2e2de91fa1d9 x-ms-throttling-version: - v2 x-msedge-ref: - - 'Ref A: A4769F43A9554CD495F1EBB042EACA90 Ref B: JKT201051407042 Ref C: 2025-10-27T13:58:37Z' + - 'Ref A: A566B9F080F64767B251EC7A27F31B1F Ref B: PNQ231110907042 Ref C: 2026-07-21T05:21:31Z' status: code: 200 message: OK @@ -3118,7 +3726,7 @@ interactions: ParameterSetName: - --backup-management-type -v -g --query User-Agent: - - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.11.9 (Windows-10-10.0.26200-SP0) + - AZURECLI/2.88.0 azsdk-python-core/1.39.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectionContainers?api-version=2025-02-01&%24filter=backupManagementType+eq+%27AzureIaasVM%27+and+status+eq+%27Registered%27 response: @@ -3132,7 +3740,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 27 Oct 2025 13:58:39 GMT + - Tue, 21 Jul 2026 05:21:37 GMT expires: - '-1' pragma: @@ -3144,13 +3752,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=12f8ea5c-1212-449e-b31c-0a574f43076e/eastus2euap/f438f1ec-e5b0-4846-a81b-f201b17e9112 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=352782de-cadf-4f14-ad97-08cd2617ef55/eastus2euap/66a5992c-0e52-4551-9fe6-93521019687b x-ms-ratelimit-remaining-subscription-resource-requests: - '1099' x-ms-throttling-version: - v1 x-msedge-ref: - - 'Ref A: 19D1E33688E24C50B20A6BC1048C19C7 Ref B: JKT201051406054 Ref C: 2025-10-27T13:58:39Z' + - 'Ref A: A063D0E40C0D4F33A88328C0E3F111B0 Ref B: PNQ231110908060 Ref C: 2026-07-21T05:21:37Z' status: code: 200 message: OK @@ -3170,25 +3778,25 @@ interactions: ParameterSetName: - -n -g --yes User-Agent: - - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.11.9 (Windows-10-10.0.26200-SP0) + - AZURECLI/2.88.0 azsdk-python-core/1.39.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2025-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2026-05-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationStatus/MTAyMzs3OTc2NTQ4ZC00MGM5LTQ0OTMtYjVhZS00MGNkYTEyNmU3MzI=?api-version=2025-08-01&t=638971703212272124&c=MIIIpDCCBoygAwIBAgITFgIdx-8P5Q2flkVe0wABAh3H7zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUxMDIwMTM0ODIxWhcNMjYwMTE4MTM0ODIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALJsx40wbBQQVymBKxEYB3QsXs7DWrmkLk1cvGC9Oh6ZUsiS6z4fZ9KUiL7u4Cb1R-5gfYTplSDkCfn9Y776fzY9tgxKTFF2KMooWQSUUNfMYuwrWFbbHGDx79k-SN6J44MhkxgVnvirjK5cOgtR1YwGjnk0x5Ea3-szYPplTQi12yBEDft-JR3YCKn54jq1stV1W2hRp_2g1BQImqyuswXZKY2DD-s3bQClN3clms4KDqdtTyXsWYLLd1wyrriHRsQnNbYpC1EqjwDyNGLTXHMVXKbeUefj5AwkYLnb77HgLc0IW7nFQwaOLB01n0OsHuhWZeUiilCDsiV76B_8MF0CAwEAAaOCBJEwggSNMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAdoGCCsGAQUFBwEBBIIBzDCCAcgwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDEuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDQuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwHQYDVR0OBBYEFBIs_XIgrlYGjVV6tC88QEhsK39fMA4GA1UdDwEB_wQEAwIFoDCCATUGA1UdHwSCASwwggEoMIIBJKCCASCgggEchkJodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMB8GA1UdIwQYMBaAFEijrWB1am_sYPNpVdEAsTJX_GzkMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAgEAoWGeh2L-xOp4WFwNcK7-42nE8XWzyiVfNq-en8umv6B7FIlZBqRTSHucIlGoZqT7uEkuOIkyfwKUKMHeX3kte0w5f4gSgSX-JsexZj509BqurtDEgPbEjh9zUpbDAM7sODNvfiZ0HVF6sREKDyDIRGhYl_C7qO6FPNUH0wiEMRNI92WewkvN5kxHFBO56OS26He5ElMpeDPNifRXSj2RrthZNiLhtVNqOXCXV8HvAO-8PBPQGpetO260pqROBjblZfst9LCba3YKdZ8o2ojOeG5_ANB5mSX3bsBsY2ULkbRKgNBi5AXJ7q0-n01yM6-uiSvZ8wrkHLfDJ6KlzSDTLJpoVa8AUeZoPEhJgyQInNCPK5nFOD-F1QNRwQj-B-s7y16iUVZiLZ3hkxODdrbMjfPRL2P3DYn1cg-jZVq0xDX1aSlRyQq6qi9xZ9RfBPeOrsZ3SHGm0XIJdlqtaYt0Evo6fWKiFXuJ-H6nf5Qy8sLTk2q160CH2IgsW5_tA0n0ySGt5n-9j610wwPdH6ImEQ1jli9U8Ur82WjB7qQhpmYPuHOyytAGttfk1271zkw5TOpkzJfGWvT5zYv436XCj6pouSk2GJmG1iR-9pO4kPK1LWp3ujV-IXZjP_-xg0wwwsvc0BDJJZZk4tElY91ySFzLXlN8QfTH67VHl7D8ILg&s=W8a1TekRByXRwAP6blOlsMfr9luCdzZ-zoJjiVSqypGpO5ag_pVI6FQXLyGdW-8pX3AChGdClT4W3aDLEMYNxcqmzTxSKGGrGBa8Kx8oE4TAuDkKXHCh_9acBmv_F_lpVjzWlJmTk21U0-kvkEyL0lSBtYnMkiL2ymc19zlvPF9vMHoUbWKJNNV7DpffWC-Dl8GK2jnqYGyf8IDLS1dX4WueTlxrmIOsssYj8RBWUDC9f0XJ26MLPttdgcWrxLdKYlNGUAtib4XO3KBG6j34Zg7cz25XcNAeMueBaFvfYQ2mORAxaPyPD58jxI7GpUUQ_ymEn-ndjm4juRVVnRlrFw&h=JLR3_x9y2A5YwkLo6afwdZDtOok3Qwgbo17zjZpqBcE + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationStatus/MTAyMzthMDkzNGIwNi1jZWIxLTQ3ZTEtYjkxNi0xYWExOTNmZDEzZDI=?api-version=2026-05-01&t=639202081034704156&c=MIIH9TCCBt2gAwIBAgIRAKnTo6mKeliSYj1GLETof4IwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVUyQyBDQSAwMTAeFw0yNjA3MDIxNTU4NDNaFw0yNjA5MjcyMTU4NDNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAlDQMyX5eVlNoyHQy97t41xstx7ISW3Jpt0fmktBr-SytLFjS2PEwnW3DFpc-bQgfDfHkKP0_FRLvm_mazEvS5KYzyX6nFjGqQTX3SfneJV5jo7nOwYnQHFTbkg0Dngz7AipTBy6yAiQqKMhRo_D-N4o3stwmKHeA0tAiEOx4G_PiAZBVgwqD_hS-porAKnsf-m7-vYsa-g9Cw0SQ2t7YIFgfqGifFcAH79L7QF5n4-toqH20MDZrR10dXpjNK50DvRiltXMo7xC198sVfC6ISY8hDbiFDpsKgL_lz-pJ2kyYJNyq1NUfS79AS70Bkl13eaOYbl8go_Oo41Ma5ArEgQIDAQABo4IE8jCCBO4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7Mv1WvWn7sAfft9pF9lwNBkNam0wHwYDVR0jBBgwFoAUz1EBqulDLGR2G0rwqsDykvhPw7swggHiBgNVHR8EggHZMIIB1TB1oHOgcYZvaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHegdaBzhnFodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyZXVhcC9jcmxzL2NjbWVlYXN0dXMyZXVhcHBraS9jY21lZWFzdHVzMmV1YXBpY2EwMS82NS9jdXJyZW50LmNybDBmoGSgYoZgaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHugeaB3hnVodHRwOi8vY2NtZWVhc3R1czJldWFwcGtpLmVhc3R1czJldWFwLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJldWFwaWNhMDEvNjUvY3VycmVudC5jcmwwggHnBggrBgEFBQcBAQSCAdkwggHVMHgGCCsGAQUFBzAChmxodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwegYIKwYBBQUHMAKGbmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NhY2VydHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxL2NlcnQuY2VyMGkGCCsGAQUFBzAChl1odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwcgYIKwYBBQUHMAKGZmh0dHA6Ly9jY21lZWFzdHVzMmV1YXBwa2kuZWFzdHVzMmV1YXAucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmV1YXBpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAndPCPc-CmjHOQpHPVSFI4dsJ3mAAA9L0QPDWwmXXvm66R08WToYQA9QCpkqxZEzl69AhSTR5x65hpeRv8xhwwj57QIuBD6rfMRghZH83T4x3bdOI4KmhFi_uY_52-cou5_xf0DyGAI_C77U5rC8TmVil8EsUCojV8rWkZXUBQSKZMaC1gzmzWW3pgKG9zwbD6J1M_7PW6f_zhE9KvGfBrLALoabdK0H_in5p3CyRMQee9pXSpsictb8cyfBIRU1fRSNmLnOjVSlF_Ll20gYIhnHvetGUxWU0EE9gWSJVUtwbqJjCeDouKPwe2UYUosoETTC7iluHZc0PV9EMfunH2w&s=j6pkKvLcDi8s1H5rfV2Yw6A0gHQXhQcy3q6Y-XdzFTJ-BH05srto5j1lp0bgH4n8ThIqjqn8Q7jQhzNHsDlxtO_sJ7G9QPaRf4WCjsg0BvRhQPv2c1LQYuUyQg521sv1vVYTDL5KjMZVLLTFpuORHWPGUK5_EpU3PzUDM5IzVvsrt0ZSxtUdNn5s_0FKlLqiYDYEpcO9trY6Zi2079kdC8Lvz38v-KbsVSzhIyunittA5NGhHEIkVE8e9WyKgRioP9LxjWHWJkl5nQMo0oCzAObLfVV4BGzbUm-lHVseCZlNL2f3YwPJAl1Del6R44xn2swCzdsFzIfCzcdIfRpbag&h=i6fksusWDQ45Xp7qL6m2D9GhZDn93QxmnO1YW1pdVRU cache-control: - no-cache content-length: - '0' date: - - Mon, 27 Oct 2025 13:58:40 GMT + - Tue, 21 Jul 2026 05:21:42 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationResults/MTAyMzs3OTc2NTQ4ZC00MGM5LTQ0OTMtYjVhZS00MGNkYTEyNmU3MzI=?api-version=2025-08-01&t=638971703212429011&c=MIIIpDCCBoygAwIBAgITFgIdx-8P5Q2flkVe0wABAh3H7zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUxMDIwMTM0ODIxWhcNMjYwMTE4MTM0ODIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALJsx40wbBQQVymBKxEYB3QsXs7DWrmkLk1cvGC9Oh6ZUsiS6z4fZ9KUiL7u4Cb1R-5gfYTplSDkCfn9Y776fzY9tgxKTFF2KMooWQSUUNfMYuwrWFbbHGDx79k-SN6J44MhkxgVnvirjK5cOgtR1YwGjnk0x5Ea3-szYPplTQi12yBEDft-JR3YCKn54jq1stV1W2hRp_2g1BQImqyuswXZKY2DD-s3bQClN3clms4KDqdtTyXsWYLLd1wyrriHRsQnNbYpC1EqjwDyNGLTXHMVXKbeUefj5AwkYLnb77HgLc0IW7nFQwaOLB01n0OsHuhWZeUiilCDsiV76B_8MF0CAwEAAaOCBJEwggSNMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAdoGCCsGAQUFBwEBBIIBzDCCAcgwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDEuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDQuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwHQYDVR0OBBYEFBIs_XIgrlYGjVV6tC88QEhsK39fMA4GA1UdDwEB_wQEAwIFoDCCATUGA1UdHwSCASwwggEoMIIBJKCCASCgggEchkJodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMB8GA1UdIwQYMBaAFEijrWB1am_sYPNpVdEAsTJX_GzkMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAgEAoWGeh2L-xOp4WFwNcK7-42nE8XWzyiVfNq-en8umv6B7FIlZBqRTSHucIlGoZqT7uEkuOIkyfwKUKMHeX3kte0w5f4gSgSX-JsexZj509BqurtDEgPbEjh9zUpbDAM7sODNvfiZ0HVF6sREKDyDIRGhYl_C7qO6FPNUH0wiEMRNI92WewkvN5kxHFBO56OS26He5ElMpeDPNifRXSj2RrthZNiLhtVNqOXCXV8HvAO-8PBPQGpetO260pqROBjblZfst9LCba3YKdZ8o2ojOeG5_ANB5mSX3bsBsY2ULkbRKgNBi5AXJ7q0-n01yM6-uiSvZ8wrkHLfDJ6KlzSDTLJpoVa8AUeZoPEhJgyQInNCPK5nFOD-F1QNRwQj-B-s7y16iUVZiLZ3hkxODdrbMjfPRL2P3DYn1cg-jZVq0xDX1aSlRyQq6qi9xZ9RfBPeOrsZ3SHGm0XIJdlqtaYt0Evo6fWKiFXuJ-H6nf5Qy8sLTk2q160CH2IgsW5_tA0n0ySGt5n-9j610wwPdH6ImEQ1jli9U8Ur82WjB7qQhpmYPuHOyytAGttfk1271zkw5TOpkzJfGWvT5zYv436XCj6pouSk2GJmG1iR-9pO4kPK1LWp3ujV-IXZjP_-xg0wwwsvc0BDJJZZk4tElY91ySFzLXlN8QfTH67VHl7D8ILg&s=KPB2sd0qgyge4qfS9Gtt_EaMnW8h7Lk4GJQKFwOcHt9_LQPnuoDf-isGBH9Zil9Jjzz_3WNlZSUK4q3XY_mKIi7AROlBHX9P4ofPtmh9Kh_50zRmU4jNnaseaPQ7dJBq9I5j6yM0MhTU9iceXCHHAuHRNDdluz51d-3kuLK38TT3okmxXfHAhm2pB3G02nvXVBtXOaSwms6eSCKltCcsqOTAy_guE7ekmle4VKyEFkcSv_7UX9tJbskFlrzKC6L7mbqUlQDHMlqtBeOqbhXH3UY4jFEtpY-iFNZlubleGwpIabFG0MnYT4s3azJK8MGJsqYqc3bIxOW5lFlkAnU-LA&h=_Lq_hWZXnpNTmF-dJZfT7Q6m8L2Hp1_lNt2ZTR4M1hk + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationResults/MTAyMzthMDkzNGIwNi1jZWIxLTQ3ZTEtYjkxNi0xYWExOTNmZDEzZDI=?api-version=2026-05-01&t=639202081034704156&c=MIIH9TCCBt2gAwIBAgIRAKnTo6mKeliSYj1GLETof4IwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVUyQyBDQSAwMTAeFw0yNjA3MDIxNTU4NDNaFw0yNjA5MjcyMTU4NDNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAlDQMyX5eVlNoyHQy97t41xstx7ISW3Jpt0fmktBr-SytLFjS2PEwnW3DFpc-bQgfDfHkKP0_FRLvm_mazEvS5KYzyX6nFjGqQTX3SfneJV5jo7nOwYnQHFTbkg0Dngz7AipTBy6yAiQqKMhRo_D-N4o3stwmKHeA0tAiEOx4G_PiAZBVgwqD_hS-porAKnsf-m7-vYsa-g9Cw0SQ2t7YIFgfqGifFcAH79L7QF5n4-toqH20MDZrR10dXpjNK50DvRiltXMo7xC198sVfC6ISY8hDbiFDpsKgL_lz-pJ2kyYJNyq1NUfS79AS70Bkl13eaOYbl8go_Oo41Ma5ArEgQIDAQABo4IE8jCCBO4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7Mv1WvWn7sAfft9pF9lwNBkNam0wHwYDVR0jBBgwFoAUz1EBqulDLGR2G0rwqsDykvhPw7swggHiBgNVHR8EggHZMIIB1TB1oHOgcYZvaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHegdaBzhnFodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyZXVhcC9jcmxzL2NjbWVlYXN0dXMyZXVhcHBraS9jY21lZWFzdHVzMmV1YXBpY2EwMS82NS9jdXJyZW50LmNybDBmoGSgYoZgaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHugeaB3hnVodHRwOi8vY2NtZWVhc3R1czJldWFwcGtpLmVhc3R1czJldWFwLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJldWFwaWNhMDEvNjUvY3VycmVudC5jcmwwggHnBggrBgEFBQcBAQSCAdkwggHVMHgGCCsGAQUFBzAChmxodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwegYIKwYBBQUHMAKGbmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NhY2VydHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxL2NlcnQuY2VyMGkGCCsGAQUFBzAChl1odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwcgYIKwYBBQUHMAKGZmh0dHA6Ly9jY21lZWFzdHVzMmV1YXBwa2kuZWFzdHVzMmV1YXAucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmV1YXBpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAndPCPc-CmjHOQpHPVSFI4dsJ3mAAA9L0QPDWwmXXvm66R08WToYQA9QCpkqxZEzl69AhSTR5x65hpeRv8xhwwj57QIuBD6rfMRghZH83T4x3bdOI4KmhFi_uY_52-cou5_xf0DyGAI_C77U5rC8TmVil8EsUCojV8rWkZXUBQSKZMaC1gzmzWW3pgKG9zwbD6J1M_7PW6f_zhE9KvGfBrLALoabdK0H_in5p3CyRMQee9pXSpsictb8cyfBIRU1fRSNmLnOjVSlF_Ll20gYIhnHvetGUxWU0EE9gWSJVUtwbqJjCeDouKPwe2UYUosoETTC7iluHZc0PV9EMfunH2w&s=KBOUAY1368EufA41-6GePNXChKOBK8jcs5Eifw-P5pqBIXEbnbek1qi7dDNoRsSUWpaWnaDEDBpDBhN543LQy6K21ud8ROoZN1uMC3l3FqMWoQkS4aBl4uolEkh5lkNrYJnThW_SiRxLnAAr150F7nqqyt62NJlef8SnQU1zILGiK7AhzQAH-lYDD1-OdM78BQwYuECGMJzUamlpqUZSg2fO9BO9CHxHy6IGD4mtJu-t8NOorWnSnX8khK4QQpSE9jNmehkJLutDSZRNeQlIYay3Aq8Zs3iPDuMEV_fkopT3SiyIX4S_PTA8vjedogOfnc265BlcwKC2KrX-5OqTkA&h=oMiB-Ld-l3wjwMvLLw3yTvwHEnyPskWJiZ7-tMYdFSc pragma: - no-cache strict-transport-security: @@ -3198,13 +3806,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=12f8ea5c-1212-449e-b31c-0a574f43076e/eastus2euap/7f419be6-4cf2-4af7-8793-6f5c869a7da4 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=352782de-cadf-4f14-ad97-08cd2617ef55/eastus2euap/129853c3-7012-4be1-8b26-9408dce9e3e6 x-ms-ratelimit-remaining-subscription-resource-requests: - - '198' + - '199' x-ms-throttling-version: - v1 x-msedge-ref: - - 'Ref A: 60BEA990B4E144F08D363775E52BF1AC Ref B: JKT201051406060 Ref C: 2025-10-27T13:58:40Z' + - 'Ref A: 6B49A04DD0DE41B0AB1EA5577E0A50C4 Ref B: PNQ231110907034 Ref C: 2026-07-21T05:21:42Z' status: code: 202 message: Accepted @@ -3222,13 +3830,13 @@ interactions: ParameterSetName: - -n -g --yes User-Agent: - - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.11.9 (Windows-10-10.0.26200-SP0) + - AZURECLI/2.88.0 azsdk-python-core/1.39.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationStatus/MTAyMzs3OTc2NTQ4ZC00MGM5LTQ0OTMtYjVhZS00MGNkYTEyNmU3MzI=?api-version=2025-08-01&t=638971703212272124&c=MIIIpDCCBoygAwIBAgITFgIdx-8P5Q2flkVe0wABAh3H7zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUxMDIwMTM0ODIxWhcNMjYwMTE4MTM0ODIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALJsx40wbBQQVymBKxEYB3QsXs7DWrmkLk1cvGC9Oh6ZUsiS6z4fZ9KUiL7u4Cb1R-5gfYTplSDkCfn9Y776fzY9tgxKTFF2KMooWQSUUNfMYuwrWFbbHGDx79k-SN6J44MhkxgVnvirjK5cOgtR1YwGjnk0x5Ea3-szYPplTQi12yBEDft-JR3YCKn54jq1stV1W2hRp_2g1BQImqyuswXZKY2DD-s3bQClN3clms4KDqdtTyXsWYLLd1wyrriHRsQnNbYpC1EqjwDyNGLTXHMVXKbeUefj5AwkYLnb77HgLc0IW7nFQwaOLB01n0OsHuhWZeUiilCDsiV76B_8MF0CAwEAAaOCBJEwggSNMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAdoGCCsGAQUFBwEBBIIBzDCCAcgwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDEuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDQuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwHQYDVR0OBBYEFBIs_XIgrlYGjVV6tC88QEhsK39fMA4GA1UdDwEB_wQEAwIFoDCCATUGA1UdHwSCASwwggEoMIIBJKCCASCgggEchkJodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMB8GA1UdIwQYMBaAFEijrWB1am_sYPNpVdEAsTJX_GzkMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAgEAoWGeh2L-xOp4WFwNcK7-42nE8XWzyiVfNq-en8umv6B7FIlZBqRTSHucIlGoZqT7uEkuOIkyfwKUKMHeX3kte0w5f4gSgSX-JsexZj509BqurtDEgPbEjh9zUpbDAM7sODNvfiZ0HVF6sREKDyDIRGhYl_C7qO6FPNUH0wiEMRNI92WewkvN5kxHFBO56OS26He5ElMpeDPNifRXSj2RrthZNiLhtVNqOXCXV8HvAO-8PBPQGpetO260pqROBjblZfst9LCba3YKdZ8o2ojOeG5_ANB5mSX3bsBsY2ULkbRKgNBi5AXJ7q0-n01yM6-uiSvZ8wrkHLfDJ6KlzSDTLJpoVa8AUeZoPEhJgyQInNCPK5nFOD-F1QNRwQj-B-s7y16iUVZiLZ3hkxODdrbMjfPRL2P3DYn1cg-jZVq0xDX1aSlRyQq6qi9xZ9RfBPeOrsZ3SHGm0XIJdlqtaYt0Evo6fWKiFXuJ-H6nf5Qy8sLTk2q160CH2IgsW5_tA0n0ySGt5n-9j610wwPdH6ImEQ1jli9U8Ur82WjB7qQhpmYPuHOyytAGttfk1271zkw5TOpkzJfGWvT5zYv436XCj6pouSk2GJmG1iR-9pO4kPK1LWp3ujV-IXZjP_-xg0wwwsvc0BDJJZZk4tElY91ySFzLXlN8QfTH67VHl7D8ILg&s=W8a1TekRByXRwAP6blOlsMfr9luCdzZ-zoJjiVSqypGpO5ag_pVI6FQXLyGdW-8pX3AChGdClT4W3aDLEMYNxcqmzTxSKGGrGBa8Kx8oE4TAuDkKXHCh_9acBmv_F_lpVjzWlJmTk21U0-kvkEyL0lSBtYnMkiL2ymc19zlvPF9vMHoUbWKJNNV7DpffWC-Dl8GK2jnqYGyf8IDLS1dX4WueTlxrmIOsssYj8RBWUDC9f0XJ26MLPttdgcWrxLdKYlNGUAtib4XO3KBG6j34Zg7cz25XcNAeMueBaFvfYQ2mORAxaPyPD58jxI7GpUUQ_ymEn-ndjm4juRVVnRlrFw&h=JLR3_x9y2A5YwkLo6afwdZDtOok3Qwgbo17zjZpqBcE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationStatus/MTAyMzthMDkzNGIwNi1jZWIxLTQ3ZTEtYjkxNi0xYWExOTNmZDEzZDI=?api-version=2026-05-01&t=639202081034704156&c=MIIH9TCCBt2gAwIBAgIRAKnTo6mKeliSYj1GLETof4IwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVUyQyBDQSAwMTAeFw0yNjA3MDIxNTU4NDNaFw0yNjA5MjcyMTU4NDNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAlDQMyX5eVlNoyHQy97t41xstx7ISW3Jpt0fmktBr-SytLFjS2PEwnW3DFpc-bQgfDfHkKP0_FRLvm_mazEvS5KYzyX6nFjGqQTX3SfneJV5jo7nOwYnQHFTbkg0Dngz7AipTBy6yAiQqKMhRo_D-N4o3stwmKHeA0tAiEOx4G_PiAZBVgwqD_hS-porAKnsf-m7-vYsa-g9Cw0SQ2t7YIFgfqGifFcAH79L7QF5n4-toqH20MDZrR10dXpjNK50DvRiltXMo7xC198sVfC6ISY8hDbiFDpsKgL_lz-pJ2kyYJNyq1NUfS79AS70Bkl13eaOYbl8go_Oo41Ma5ArEgQIDAQABo4IE8jCCBO4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7Mv1WvWn7sAfft9pF9lwNBkNam0wHwYDVR0jBBgwFoAUz1EBqulDLGR2G0rwqsDykvhPw7swggHiBgNVHR8EggHZMIIB1TB1oHOgcYZvaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHegdaBzhnFodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyZXVhcC9jcmxzL2NjbWVlYXN0dXMyZXVhcHBraS9jY21lZWFzdHVzMmV1YXBpY2EwMS82NS9jdXJyZW50LmNybDBmoGSgYoZgaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czJldWFwL2NybHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxLzY1L2N1cnJlbnQuY3JsMHugeaB3hnVodHRwOi8vY2NtZWVhc3R1czJldWFwcGtpLmVhc3R1czJldWFwLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJldWFwaWNhMDEvNjUvY3VycmVudC5jcmwwggHnBggrBgEFBQcBAQSCAdkwggHVMHgGCCsGAQUFBzAChmxodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwegYIKwYBBQUHMAKGbmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czJldWFwL2NhY2VydHMvY2NtZWVhc3R1czJldWFwcGtpL2NjbWVlYXN0dXMyZXVhcGljYTAxL2NlcnQuY2VyMGkGCCsGAQUFBzAChl1odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMmV1YXAvY2FjZXJ0cy9jY21lZWFzdHVzMmV1YXBwa2kvY2NtZWVhc3R1czJldWFwaWNhMDEvY2VydC5jZXIwcgYIKwYBBQUHMAKGZmh0dHA6Ly9jY21lZWFzdHVzMmV1YXBwa2kuZWFzdHVzMmV1YXAucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmV1YXBpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAndPCPc-CmjHOQpHPVSFI4dsJ3mAAA9L0QPDWwmXXvm66R08WToYQA9QCpkqxZEzl69AhSTR5x65hpeRv8xhwwj57QIuBD6rfMRghZH83T4x3bdOI4KmhFi_uY_52-cou5_xf0DyGAI_C77U5rC8TmVil8EsUCojV8rWkZXUBQSKZMaC1gzmzWW3pgKG9zwbD6J1M_7PW6f_zhE9KvGfBrLALoabdK0H_in5p3CyRMQee9pXSpsictb8cyfBIRU1fRSNmLnOjVSlF_Ll20gYIhnHvetGUxWU0EE9gWSJVUtwbqJjCeDouKPwe2UYUosoETTC7iluHZc0PV9EMfunH2w&s=j6pkKvLcDi8s1H5rfV2Yw6A0gHQXhQcy3q6Y-XdzFTJ-BH05srto5j1lp0bgH4n8ThIqjqn8Q7jQhzNHsDlxtO_sJ7G9QPaRf4WCjsg0BvRhQPv2c1LQYuUyQg521sv1vVYTDL5KjMZVLLTFpuORHWPGUK5_EpU3PzUDM5IzVvsrt0ZSxtUdNn5s_0FKlLqiYDYEpcO9trY6Zi2079kdC8Lvz38v-KbsVSzhIyunittA5NGhHEIkVE8e9WyKgRioP9LxjWHWJkl5nQMo0oCzAObLfVV4BGzbUm-lHVseCZlNL2f3YwPJAl1Del6R44xn2swCzdsFzIfCzcdIfRpbag&h=i6fksusWDQ45Xp7qL6m2D9GhZDn93QxmnO1YW1pdVRU response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationStatus/MTAyMzs3OTc2NTQ4ZC00MGM5LTQ0OTMtYjVhZS00MGNkYTEyNmU3MzI=\",\r\n - \ \"name\": \"MTAyMzs3OTc2NTQ4ZC00MGM5LTQ0OTMtYjVhZS00MGNkYTEyNmU3MzI=\",\r\n + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureBackupRG_clitest_000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/operationStatus/MTAyMzthMDkzNGIwNi1jZWIxLTQ3ZTEtYjkxNi0xYWExOTNmZDEzZDI=\",\r\n + \ \"name\": \"MTAyMzthMDkzNGIwNi1jZWIxLTQ3ZTEtYjkxNi0xYWExOTNmZDEzZDI=\",\r\n \ \"status\": \"Succeeded\"\r\n}" headers: cache-control: @@ -3238,7 +3846,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 27 Oct 2025 13:58:42 GMT + - Tue, 21 Jul 2026 05:21:45 GMT expires: - '-1' pragma: @@ -3250,11 +3858,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=12f8ea5c-1212-449e-b31c-0a574f43076e/eastus2euap/89ebb6e5-260a-473d-a0d9-c79b812a9181 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=352782de-cadf-4f14-ad97-08cd2617ef55/eastus2euap/7eac6dab-cf9d-498d-904a-8f988b65c513 x-ms-throttling-version: - v2 x-msedge-ref: - - 'Ref A: 2C43462BF42D43F8A1908E581460EEEC Ref B: JKT201051407023 Ref C: 2025-10-27T13:58:42Z' + - 'Ref A: 45BB5376EA8C4F26BB3261196473F044 Ref B: PNQ231110906036 Ref C: 2026-07-21T05:21:45Z' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/test_backup_commands.py b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/test_backup_commands.py index a15b101d2d0..03926c77555 100644 --- a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/test_backup_commands.py +++ b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/test_backup_commands.py @@ -115,7 +115,8 @@ def test_backup_vault(self, resource_group, resource_group_location, vault1, vau self.check('properties.publicNetworkAccess', 'Enabled'), self.check('properties.monitoringSettings.azureMonitorAlertSettings.alertsForAllJobFailures', 'Enabled'), self.check('properties.monitoringSettings.classicAlertSettings.alertsForCriticalOperations', 'Enabled'), - self.check('properties.restoreSettings.crossSubscriptionRestoreSettings.crossSubscriptionRestoreState', 'Enabled') + self.check('properties.restoreSettings.crossSubscriptionRestoreSettings.crossSubscriptionRestoreState', 'Enabled'), + self.check('properties.costManagementSettings.granularityLevel', 'VaultLevel') ]) self.kwargs['vault4'] = self.create_random_name('clitest-vault', 50) @@ -205,6 +206,15 @@ def test_backup_vault(self, resource_group, resource_group_location, vault1, vau self.check('properties.restoreSettings.crossSubscriptionRestoreSettings.crossSubscriptionRestoreState', 'PermanentlyDisabled') ]) + # Cost management settings testing. + self.cmd('backup vault update -n {vault3} -g {rg} --cost-management-granularity ProtectedItemWithParentTag', checks=[ + self.check('properties.costManagementSettings.granularityLevel', 'ProtectedItemWithParentTag') + ]) + + self.cmd('backup vault update -n {vault4} -g {rg} --cost-management-granularity ProtectedItemLevel', checks=[ + self.check('properties.costManagementSettings.granularityLevel', 'ProtectedItemLevel') + ]) + # self.cmd('backup policy set -g {rg} -v {vault4} --policy {policy_json}', expect_failure=True) self.cmd('backup vault delete -n {vault4} -g {rg} -y')