From 5a1ea3c52e09aac59cd38ec52b327b769201c882 Mon Sep 17 00:00:00 2001 From: Bharat Purwar Date: Mon, 21 Sep 2026 23:57:40 +0530 Subject: [PATCH 1/2] Add managed identity support for Azure Files backup Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- .../command_modules/backup/_client_factory.py | 17 +- .../cli/command_modules/backup/_format.py | 19 +- .../azure/cli/command_modules/backup/_help.py | 12 + .../cli/command_modules/backup/_params.py | 40 +- .../cli/command_modules/backup/commands.py | 2 +- .../cli/command_modules/backup/custom_afs.py | 250 +- .../cli/command_modules/backup/custom_base.py | 64 +- ...msi_reregistration_protection_restore.yaml | 6237 +++++++++++++++++ .../backup/tests/latest/test_afs_commands.py | 140 + .../backup/tests/latest/test_custom_afs.py | 257 + 10 files changed, 6966 insertions(+), 72 deletions(-) create mode 100644 src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_afs_msi_reregistration_protection_restore.yaml create mode 100644 src/azure-cli/azure/cli/command_modules/backup/tests/latest/test_custom_afs.py diff --git a/src/azure-cli/azure/cli/command_modules/backup/_client_factory.py b/src/azure-cli/azure/cli/command_modules/backup/_client_factory.py index 2eb93aacbbc..d463a0851d7 100644 --- a/src/azure-cli/azure/cli/command_modules/backup/_client_factory.py +++ b/src/azure-cli/azure/cli/command_modules/backup/_client_factory.py @@ -6,10 +6,11 @@ # Base Client Factories -def _resource_client_factory(cli_ctx, **_): +def _resource_client_factory(cli_ctx, subscription_id=None, **_): from azure.cli.core.profiles import ResourceType from azure.cli.core.commands.client_factory import get_mgmt_service_client - return get_mgmt_service_client(cli_ctx, ResourceType.MGMT_RESOURCE_RESOURCES) + return get_mgmt_service_client( + cli_ctx, ResourceType.MGMT_RESOURCE_RESOURCES, subscription_id=subscription_id) def _common_client_factory(cli_ctx, **_): @@ -33,24 +34,24 @@ def _backup_passive_client_factory(cli_ctx, **_): return get_mgmt_service_client(cli_ctx, RecoveryServicesBackupPassiveClient) -def _storage_client_factory(cli_ctx, **_): +def _storage_client_factory(cli_ctx, subscription_id=None, **_): from azure.cli.core.profiles import ResourceType from azure.cli.core.commands.client_factory import get_mgmt_service_client - return get_mgmt_service_client(cli_ctx, ResourceType.MGMT_STORAGE) + return get_mgmt_service_client(cli_ctx, ResourceType.MGMT_STORAGE, subscription_id=subscription_id) # External Deps Client Factories -def resources_cf(cli_ctx, *_): - return _resource_client_factory(cli_ctx).resources +def resources_cf(cli_ctx, *_, subscription_id=None): + return _resource_client_factory(cli_ctx, subscription_id=subscription_id).resources def resource_groups_cf(cli_ctx, *_): return _resource_client_factory(cli_ctx).resource_groups -def file_shares_cf(cli_ctx, *_): - return _storage_client_factory(cli_ctx).file_shares +def file_shares_cf(cli_ctx, *_, subscription_id=None): + return _storage_client_factory(cli_ctx, subscription_id=subscription_id).file_shares # Internal Deps Client Factories diff --git a/src/azure-cli/azure/cli/command_modules/backup/_format.py b/src/azure-cli/azure/cli/command_modules/backup/_format.py index 4a902fa1d8a..1985d431be2 100644 --- a/src/azure-cli/azure/cli/command_modules/backup/_format.py +++ b/src/azure-cli/azure/cli/command_modules/backup/_format.py @@ -7,11 +7,20 @@ def transform_container(result): - return OrderedDict([('Name', result['name']), - ('Friendly Name', result['properties']['friendlyName']), - ('Resource Group', result['resourceGroup']), - ('Type', result['properties']['backupManagementType']), - ('Registration Status', result['properties']['registrationStatus'])]) + columns = [('Name', result['name']), + ('Friendly Name', result['properties']['friendlyName']), + ('Resource Group', result['resourceGroup']), + ('Type', result['properties']['backupManagementType']), + ('Registration Status', result['properties']['registrationStatus'])] + access_type = result['properties'].get('accessType') + if access_type: + columns.append(('Access Type', access_type)) + identity_info = result['properties'].get('identityInfo') + if identity_info: + identity = ('SystemAssigned' if identity_info.get('isSystemAssignedIdentity') + else identity_info.get('managedIdentityResourceId')) + columns.append(('Managed Identity', identity)) + return OrderedDict(columns) def transform_item(result): diff --git a/src/azure-cli/azure/cli/command_modules/backup/_help.py b/src/azure-cli/azure/cli/command_modules/backup/_help.py index 46499967876..b483e2df6ee 100644 --- a/src/azure-cli/azure/cli/command_modules/backup/_help.py +++ b/src/azure-cli/azure/cli/command_modules/backup/_help.py @@ -32,6 +32,10 @@ examples: - name: This command allows Azure Backup to convert the 'Resource' to a 'Backup Container' which is then registered to the given Recovery services vault. The Azure Backup service can then discover workloads of the given workload type within this container to be protected later. text: az backup container register --resource-group MyResourceGroup --vault-name MyVault --resource-id MyResourceId --workload-type MSSQL --backup-management-type AzureWorkload + - name: Register a storage account for Azure Files backup using the vault's system-assigned managed identity. + text: az backup container register --resource-group MyResourceGroup --vault-name MyVault --storage-account MyStorageAccount --workload-type AzureFileShare --backup-management-type AzureStorage --access-type IdentityBased --mi-system-assigned + - name: Re-register a storage account with a user-assigned managed identity without prompting. + text: az backup container register --resource-group MyResourceGroup --vault-name MyVault --storage-account MyStorageAccount --workload-type AzureFileShare --backup-management-type AzureStorage --access-type IdentityBased --mi-user-assigned MyIdentityResourceId --yes """ helps['backup container re-register'] = """ @@ -306,6 +310,8 @@ examples: - name: Start protecting a previously unprotected Azure File share within an Azure Storage account as per the specified policy to a Recovery services vault. Provide the Azure File share name and the parent storage account name. text: az backup protection enable-for-azurefileshare --policy-name MyPolicy --resource-group MyResourceGroup --vault-name MyVault --storage-account MyStorageAccount --azure-file-share MyAzureFileShare + - name: Protect an Azure file share using a user-assigned managed identity. + text: az backup protection enable-for-azurefileshare --policy-name MyPolicy --resource-group MyResourceGroup --vault-name MyVault --storage-account MyStorageAccount --azure-file-share MyAzureFileShare --access-type IdentityBased --mi-user-assigned MyIdentityResourceId """ helps['backup protection undelete'] = """ @@ -469,6 +475,10 @@ examples: - name: Restore backed up Azure file shares to the same file-share or another file-share in registered storage accounts. text: az backup restore restore-azurefileshare --resource-group MyResourceGroup --vault-name MyVault --container-name MyContainer --item-name MyItem --rp-name recoverypoint --resolve-conflict Overwrite --restore-mode OriginalLocation + - name: Restore an Azure file share to an alternate location using the vault's system-assigned managed identity. + text: az backup restore restore-azurefileshare --resource-group MyResourceGroup --vault-name MyVault --container-name MyContainer --item-name MyItem --rp-name recoverypoint --resolve-conflict Overwrite --restore-mode AlternateLocation --target-storage-account MyTargetStorageAccount --target-file-share MyTargetFileShare --mi-system-assigned + - name: Restore an Azure file share across both region and subscription. + text: az backup restore restore-azurefileshare --resource-group MyResourceGroup --vault-name MyVault --container-name MySecondaryRegionContainer --item-name MySecondaryRegionItem --rp-name MySecondaryRegionRecoveryPoint --resolve-conflict Overwrite --restore-mode AlternateLocation --target-subscription-id MyTargetSubscription --target-resource-group-name MyTargetResourceGroup --target-storage-account MyTargetStorageAccount --target-file-share MyTargetFileShare --use-secondary-region """ helps['backup restore restore-azurefiles'] = """ @@ -477,6 +487,8 @@ examples: - name: Restore backed up Azure files within a file-share to the same file-share or another file-share in registered storage accounts. text: az backup restore restore-azurefiles --resource-group MyResourceGroup --vault-name MyVault --container-name MyContainer --item-name MyItem --rp-name recoverypoint --resolve-conflict Overwrite --restore-mode OriginalLocation --source-file-type File --source-file-path Filepath1 Filepath2 + - name: Restore selected Azure files using a user-assigned managed identity. + text: az backup restore restore-azurefiles --resource-group MyResourceGroup --vault-name MyVault --container-name MyContainer --item-name MyItem --rp-name recoverypoint --resolve-conflict Overwrite --restore-mode AlternateLocation --target-storage-account MyTargetStorageAccount --target-file-share MyTargetFileShare --source-file-type File --source-file-path Filepath1 --mi-user-assigned MyIdentityResourceId """ helps['backup restore restore-azurewl'] = """ 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 98f2be8b10e..8de755a9a31 100644 --- a/src/azure-cli/azure/cli/command_modules/backup/_params.py +++ b/src/azure-cli/azure/cli/command_modules/backup/_params.py @@ -23,6 +23,7 @@ allowed_container_types = ['AzureIaasVM'] allowed_workload_types = ['VM', 'AzureFileShare', 'SAPHANA', 'SAPASE', 'MSSQL', 'SAPHanaDatabase', 'SQLDataBase', 'SAPAseDatabase', 'SAPHanaDBInstance'] allowed_azure_workload_types = ['MSSQL', 'SAPHANA', 'SAPASE', 'SAPAseDatabase', 'SAPHanaDatabase', 'SQLDataBase', 'SAPHanaDBInstance'] +allowed_container_registration_workload_types = allowed_azure_workload_types + ['AzureFileShare'] allowed_backup_management_types = ['AzureIaasVM', 'AzureStorage', 'AzureWorkload'] allowed_extended_backup_management_types = allowed_backup_management_types + ['MAB'] allowed_protectable_item_type = ['SQLAG', 'SQLInstance', 'SQLDatabase', 'HANAInstance', 'SAPAseDatabase', 'SAPHanaDatabase', 'SAPHanaSystem', 'SAPHanaDBInstance'] @@ -32,6 +33,7 @@ allowed_softdelete_options = ['Enable', 'Disable', 'AlwaysOn'] allowed_immutability_options = ['Disabled', 'Locked', 'Unlocked'] allowed_granularitylevel_options = ['VaultLevel', 'ProtectedItemLevel', 'ProtectedItemWithParentTag'] +allowed_afs_access_types = ['KeyBased', 'IdentityBased'] enable_disable_options = ['Enable', 'Disable'] enable_disable_permadisable_options = ['Enable', 'Disable', 'PermanentlyDisable'] allowed_disk_access_options = ['EnablePrivateAccessForAllDisks', 'EnablePublicAccessForAllDisks', 'SameAsOnSourceDisks'] @@ -66,6 +68,7 @@ extended_backup_management_type = CLIArgumentType(help=backup_management_type_help, arg_type=get_enum_type(allowed_extended_backup_management_types), options_list=['--backup-management-type']) workload_type = CLIArgumentType(help=workload_type_help, arg_type=get_enum_type(allowed_workload_types), options_list=['--workload-type']) azure_workload_type = CLIArgumentType(help=workload_type_help, arg_type=get_enum_type(allowed_azure_workload_types), options_list=['--workload-type']) +container_registration_workload_type = CLIArgumentType(help=workload_type_help, arg_type=get_enum_type(allowed_container_registration_workload_types), options_list=['--workload-type']) restore_mode_type = CLIArgumentType(help=restore_mode_help, arg_type=get_enum_type(['OriginalLocation', 'AlternateLocation']), options_list=['--restore-mode']) restore_mode_workload_type = CLIArgumentType(help=restore_mode_help, arg_type=get_enum_type(['AlternateWorkloadRestore', 'OriginalWorkloadRestore', 'RestoreAsFiles']), options_list=['--restore-mode']) resolve_conflict_type = CLIArgumentType(help=resolve_conflict_help, arg_type=get_enum_type(['Overwrite', 'Skip']), options_list=['--resolve-conflict']) @@ -205,7 +208,18 @@ def load_arguments(self, _): c.argument('vault_name', vault_name_type, id_part=None) c.argument('backup_management_type', backup_management_type) c.argument('resource_id', resource_id_type) - c.argument('workload_type', azure_workload_type) + c.argument('workload_type', container_registration_workload_type) + c.argument('storage_account', options_list=['--storage-account'], + help='Name of the storage account to register for Azure Files backup.') + c.argument('access_type', options_list=['--access-type'], + arg_type=get_enum_type(allowed_afs_access_types), + help='Authentication type used to access the storage account.') + c.argument('mi_system_assigned', action='store_true', + help="Use the Recovery Services vault's system-assigned managed identity.") + c.argument('mi_user_assigned', + help='ARM ID of a user-assigned managed identity associated with the Recovery Services vault.') + c.argument('yes', options_list=['--yes', '-y'], action='store_true', + help='Do not prompt for confirmation when re-registering the storage account.') # Item with self.argument_context('backup item') as c: @@ -377,6 +391,15 @@ def load_arguments(self, _): c.argument('vault_name', vault_name_type, id_part=None) c.argument('azure_file_share', options_list=['--azure-file-share'], help='Name of the Azure FileShare.') c.argument('storage_account', options_list=['--storage-account'], help='Name of the Storage Account of the FileShare.') + c.argument('access_type', options_list=['--access-type'], + arg_type=get_enum_type(allowed_afs_access_types), + help='Authentication type used to access the storage account.') + c.argument('mi_system_assigned', action='store_true', + help="Use the Recovery Services vault's system-assigned managed identity.") + c.argument('mi_user_assigned', + help='ARM ID of a user-assigned managed identity associated with the Recovery Services vault.') + c.argument('yes', options_list=['--yes', '-y'], action='store_true', + help='Do not prompt for confirmation when re-registering the storage account.') for command in ["enable-for-azurewl", "auto-enable-for-azurewl", 'auto-disable-for-azurewl']: with self.argument_context('backup protection ' + command) as c: @@ -447,6 +470,12 @@ def load_arguments(self, _): c.argument('target_resource_group_name', options_list=['--target-resource-group-name', '--target-rg-name'], help='Resource group of the destination storage account to which the content will be restored, needed if it is different from the vault resource group') + c.argument('target_subscription_id', + help='Subscription ID of the destination storage account for cross-subscription restore.') + c.argument('mi_system_assigned', action='store_true', + help="Use the Recovery Services vault's system-assigned managed identity for restore.") + c.argument('mi_user_assigned', + help='ARM ID of the user-assigned managed identity to use for restore.') c.argument('tenant_id', help='ID of the tenant if the Resource Guard protecting the vault exists in a different tenant.') c.argument('use_secondary_region', action='store_true', help='Use this flag to restore from a recovery point in secondary region. Supports only Alternate Location Restore.') @@ -456,6 +485,15 @@ def load_arguments(self, _): c.argument('target_file_share', options_list=['--target-file-share'], help='Destination file share to which content will be restored') c.argument('target_folder', options_list=['--target-folder'], help='Destination folder to which content will be restored. To restore content to root , leave the folder name empty') c.argument('target_storage_account', options_list=['--target-storage-account'], help='Destination storage account to which content will be restored') + c.argument('target_resource_group_name', + options_list=['--target-resource-group-name', '--target-rg-name'], + help='Resource group of the destination storage account to which the content will be restored, needed if it is different from the vault resource group') + c.argument('target_subscription_id', + help='Subscription ID of the destination storage account for cross-subscription restore.') + c.argument('mi_system_assigned', action='store_true', + help="Use the Recovery Services vault's system-assigned managed identity for restore.") + c.argument('mi_user_assigned', + help='ARM ID of the user-assigned managed identity to use for restore.') c.argument('source_file_type', arg_type=get_enum_type(['File', 'Directory']), options_list=['--source-file-type'], help='Specify the source file type to be selected') c.argument('source_file_path', options_list=['--source-file-path'], nargs='+', help="""The absolute path of the file, to be restored within the file share, as a string. This path is the same path used in the 'az storage file download' or 'az storage file show' CLI commands.""") c.argument('tenant_id', help='ID of the tenant if the Resource Guard protecting the vault exists in a different tenant.') diff --git a/src/azure-cli/azure/cli/command_modules/backup/commands.py b/src/azure-cli/azure/cli/command_modules/backup/commands.py index 1ef247431d3..ae36aa4ab3f 100644 --- a/src/azure-cli/azure/cli/command_modules/backup/commands.py +++ b/src/azure-cli/azure/cli/command_modules/backup/commands.py @@ -68,7 +68,7 @@ def load_command_table(self, _): with self.command_group('backup container', custom_command_type=backup_custom_base, client_factory=protection_containers_cf, exception_handler=backup_exception_handler) as g: g.custom_command('unregister', 'unregister_container', confirmation=True) g.custom_command('re-register', 're_register_wl_container', confirmation=True) - g.custom_command('register', 'register_wl_container') + g.custom_command('register', 'register_container') with self.command_group('backup policy', backup_custom_base, client_factory=protection_policies_cf, exception_handler=backup_exception_handler) as g: g.command('get-default-for-vm', 'get_default_policy_for_vm') diff --git a/src/azure-cli/azure/cli/command_modules/backup/custom_afs.py b/src/azure-cli/azure/cli/command_modules/backup/custom_afs.py index a75c6202245..735ef0c017e 100644 --- a/src/azure-cli/azure/cli/command_modules/backup/custom_afs.py +++ b/src/azure-cli/azure/cli/command_modules/backup/custom_afs.py @@ -14,7 +14,7 @@ from azure.mgmt.recoveryservicesbackup.models import ProtectedItemResource, \ RestoreRequestResource, BackupRequestResource, RestoreFileSpecs, \ AzureFileShareBackupRequest, AzureFileshareProtectedItem, AzureFileShareRestoreRequest, \ - TargetAFSRestoreInfo, ProtectionState, ProtectionContainerResource, AzureStorageContainer + TargetAFSRestoreInfo, ProtectionState, ProtectionContainerResource, AzureStorageContainer, IdentityInfo from azure.cli.core.util import CLIError from azure.cli.command_modules.backup._client_factory import protection_containers_cf, protectable_containers_cf, \ @@ -22,13 +22,15 @@ resources_cf, backup_protected_items_cf, protected_items_cf, \ recovery_points_crr_cf, recovery_points_passive_cf, aad_properties_cf, cross_region_restore_cf, vaults_cf, \ file_shares_cf -from azure.cli.core.azclierror import ArgumentUsageError, ValidationError, InvalidArgumentValueError +from azure.cli.core.azclierror import ArgumentUsageError, ValidationError, RequiredArgumentMissingError, \ + MutuallyExclusiveArgumentError, InvalidArgumentValueError from azure.core.exceptions import ResourceNotFoundError from azure.mgmt.recoveryservicesbackup.passivestamp.models import CrossRegionRestoreRequest from azure.mgmt.recoveryservicesbackup import RecoveryServicesBackupClient from azure.cli.core.commands.client_factory import get_mgmt_service_client +from knack.prompting import prompt_y_n from knack.log import get_logger logger = get_logger(__name__) @@ -38,6 +40,170 @@ workload_type = "AzureFileShare" +def _validate_afs_identity_parameters(access_type, mi_system_assigned, mi_user_assigned): + has_system_identity = bool(mi_system_assigned) + has_user_identity = bool(mi_user_assigned) + + if has_system_identity and has_user_identity: + raise MutuallyExclusiveArgumentError( + "--mi-system-assigned and --mi-user-assigned cannot be used together.") + + if access_type is None and (has_system_identity or has_user_identity): + raise RequiredArgumentMissingError( + "--access-type IdentityBased is required when a managed identity is specified.") + + if access_type is None: + return + + if access_type.lower() == "identitybased" and not (has_system_identity or has_user_identity): + raise RequiredArgumentMissingError( + "--access-type IdentityBased requires either --mi-system-assigned or --mi-user-assigned.") + + if access_type.lower() == "keybased" and (has_system_identity or has_user_identity): + raise ArgumentUsageError( + "Managed identity arguments cannot be used with --access-type KeyBased.") + + +def _build_afs_identity_info(access_type, mi_system_assigned, mi_user_assigned): + if access_type is None or access_type.lower() != "identitybased": + return None + return IdentityInfo( + is_system_assigned_identity=bool(mi_system_assigned), + managed_identity_resource_id=mi_user_assigned) + + +def _validate_afs_restore_parameters(restore_mode, target_storage_account_name, target_file_share_name, + target_subscription_id, mi_system_assigned, mi_user_assigned): + if mi_system_assigned and mi_user_assigned: + raise MutuallyExclusiveArgumentError( + "--mi-system-assigned and --mi-user-assigned cannot be used together.") + + if target_subscription_id is not None and not target_subscription_id.strip(): + raise InvalidArgumentValueError("--target-subscription-id cannot be empty.") + + if target_subscription_id and not target_storage_account_name: + raise RequiredArgumentMissingError( + "--target-storage-account is required when --target-subscription-id is specified.") + + if restore_mode == "AlternateLocation": + if not target_storage_account_name or not target_file_share_name: + raise RequiredArgumentMissingError( + "--target-storage-account and --target-file-share are required with " + "--restore-mode AlternateLocation.") + elif target_subscription_id is not None: + raise ArgumentUsageError( + "--target-subscription-id is only supported with --restore-mode AlternateLocation.") + + +def _are_afs_identities_equal(existing_identity, requested_identity): + if existing_identity is None and requested_identity is None: + return True + if existing_identity is None or requested_identity is None: + return False + + existing_is_system = bool(helper.get_model_property( + existing_identity, 'is_system_assigned_identity', 'isSystemAssignedIdentity')) + requested_is_system = bool(helper.get_model_property( + requested_identity, 'is_system_assigned_identity', 'isSystemAssignedIdentity')) + if existing_is_system != requested_is_system: + return False + + existing_id = helper.get_model_property( + existing_identity, 'managed_identity_resource_id', 'managedIdentityResourceId') or "" + requested_id = helper.get_model_property( + requested_identity, 'managed_identity_resource_id', 'managedIdentityResourceId') or "" + return existing_id.lower() == requested_id.lower() + + +def _registration_matches(container, access_type, identity_info): + properties = container.properties + existing_access_type = helper.get_model_property(properties, 'access_type', 'accessType') or "KeyBased" + existing_identity = helper.get_model_property(properties, 'identity_info', 'identityInfo') + return (existing_access_type.lower() == access_type.lower() and + _are_afs_identities_equal(existing_identity, identity_info)) + + +def _register_storage_account(cmd, client, resource_group_name, vault_name, storage_account, + access_type=None, identity_info=None, operation_type=None): + properties = storage_account.properties + source_resource_id = helper.get_model_property( + properties, 'container_id', 'containerId') or helper.get_model_property( + properties, 'source_resource_id', 'sourceResourceId') + + payload = AzureStorageContainer( + friendly_name=helper.get_model_property(properties, 'friendly_name', 'friendlyName'), + backup_management_type=backup_management_type, + source_resource_id=source_resource_id, + resource_group=resource_group_name, + operation_type=operation_type, + access_type=access_type, + identity_info=identity_info) + param = ProtectionContainerResource(properties=payload) + result = client.begin_register( + vault_name, resource_group_name, fabric_name, storage_account.name, param, + polling=False, cls=helper.get_pipeline_response).result() + helper.track_register_operation( + cmd.cli_ctx, result, vault_name, resource_group_name, storage_account.name) + + +def _ensure_storage_account_registration(cmd, resource_group_name, vault_name, storage_account_name, + access_type=None, mi_system_assigned=None, + mi_user_assigned=None, yes=False): + _validate_afs_identity_parameters(access_type, mi_system_assigned, mi_user_assigned) + identity_info = _build_afs_identity_info(access_type, mi_system_assigned, mi_user_assigned) + + registered_containers = common.list_containers( + backup_protection_containers_cf(cmd.cli_ctx), resource_group_name, vault_name, backup_management_type) + storage_account = _get_storage_account_from_list(registered_containers, storage_account_name) + if storage_account is not None: + if access_type is None or _registration_matches(storage_account, access_type, identity_info): + return storage_account + + if not yes: + warning = ( + "The storage account is registered with a different access type or managed identity. " + "Re-registering changes authentication for all protected file shares in this storage account. " + "Continue?") + if not prompt_y_n(warning): + raise CLIError("Storage account re-registration was cancelled.") + + _register_storage_account( + cmd, protection_containers_cf(cmd.cli_ctx), resource_group_name, vault_name, + storage_account, access_type, identity_info, "Reregister") + return storage_account + + unregistered_containers = list_protectable_containers(cmd.cli_ctx, resource_group_name, vault_name) + storage_account = _get_storage_account_from_list(unregistered_containers, storage_account_name) + if storage_account is None: + protection_containers_client = protection_containers_cf(cmd.cli_ctx) + filter_string = helper.get_filter_string({'backupManagementType': backup_management_type}) + refresh_result = protection_containers_client.refresh( + vault_name, resource_group_name, fabric_name, filter=filter_string, + cls=helper.get_pipeline_response) + helper.track_refresh_operation(cmd.cli_ctx, refresh_result, vault_name, resource_group_name) + unregistered_containers = list_protectable_containers( + cmd.cli_ctx, resource_group_name, vault_name) + storage_account = _get_storage_account_from_list(unregistered_containers, storage_account_name) + + if storage_account is None: + raise CLIError("Storage account not found or not supported.") + + _register_storage_account( + cmd, protection_containers_cf(cmd.cli_ctx), resource_group_name, vault_name, + storage_account, access_type, identity_info) + return storage_account + + +def register_afs_container(cmd, client, resource_group_name, vault_name, storage_account_name, + access_type=None, mi_system_assigned=None, mi_user_assigned=None, yes=False): + _ensure_storage_account_registration( + cmd, resource_group_name, vault_name, storage_account_name, access_type, + mi_system_assigned, mi_user_assigned, yes) + registered_containers = common.list_containers( + backup_protection_containers_cf(cmd.cli_ctx), resource_group_name, vault_name, backup_management_type) + return _get_storage_account_from_list(registered_containers, storage_account_name) + + def reconfigure_afs_protection(cmd, item, source_vault_name, source_vault_rg, new_vault_name, new_vault_rg, new_policy_name, retain_as_per_policy, tenant_id): @@ -88,45 +254,11 @@ def _maybe_unregister_storage_account(cmd, client, resource_group_name, vault_na def enable_for_AzureFileShare(cmd, client, resource_group_name, vault_name, afs_name, - storage_account_name, policy_name): - - # get registered storage accounts - storage_account = None - containers_client = backup_protection_containers_cf(cmd.cli_ctx) - registered_containers = common.list_containers(containers_client, resource_group_name, vault_name, "AzureStorage") - storage_account = _get_storage_account_from_list(registered_containers, storage_account_name) - - # get unregistered storage accounts - if storage_account is None: - unregistered_containers = list_protectable_containers(cmd.cli_ctx, resource_group_name, vault_name) - storage_account = _get_storage_account_from_list(unregistered_containers, storage_account_name) - - if storage_account is None: - # refresh containers in the vault - protection_containers_client = protection_containers_cf(cmd.cli_ctx) - filter_string = helper.get_filter_string({'backupManagementType': "AzureStorage"}) - - refresh_result = protection_containers_client.refresh(vault_name, resource_group_name, fabric_name, - filter=filter_string, - cls=helper.get_pipeline_response) - helper.track_refresh_operation(cmd.cli_ctx, refresh_result, vault_name, resource_group_name) - - # refetch the protectable containers after refresh - unregistered_containers = list_protectable_containers(cmd.cli_ctx, resource_group_name, vault_name) - storage_account = _get_storage_account_from_list(unregistered_containers, storage_account_name) - - if storage_account is None: - raise CLIError("Storage account not found or not supported.") - - # register storage account - protection_containers_client = protection_containers_cf(cmd.cli_ctx) - properties = AzureStorageContainer(backup_management_type="AzureStorage", - source_resource_id=storage_account.properties.container_id) - param = ProtectionContainerResource(properties=properties) - result = protection_containers_client.begin_register(vault_name, resource_group_name, fabric_name, - storage_account.name, param, polling=False, - cls=helper.get_pipeline_response).result() - helper.track_register_operation(cmd.cli_ctx, result, vault_name, resource_group_name, storage_account.name) + storage_account_name, policy_name, access_type=None, + mi_system_assigned=None, mi_user_assigned=None, yes=False): + storage_account = _ensure_storage_account_registration( + cmd, resource_group_name, vault_name, storage_account_name, access_type, + mi_system_assigned, mi_user_assigned, yes) protectable_item = _get_protectable_item_for_afs(cmd.cli_ctx, vault_name, resource_group_name, afs_name, storage_account) @@ -234,7 +366,9 @@ def _try_get_protectable_item_for_afs(cli_ctx, vault_name, resource_group_name, def restore_AzureFileShare(cmd, client, resource_group_name, vault_name, rp_name, item, restore_mode, resolve_conflict, restore_request_type, source_file_type=None, source_file_path=None, target_storage_account_name=None, target_file_share_name=None, target_folder=None, - target_resource_group_name=None, tenant_id=None, use_secondary_region=None): + target_resource_group_name=None, target_subscription_id=None, + mi_system_assigned=None, mi_user_assigned=None, use_secondary_region=None, + tenant_id=None): container_uri = helper.get_protection_container_uri_from_id(item.id) item_uri = helper.get_protected_item_uri_from_id(item.id) @@ -252,6 +386,13 @@ def restore_AzureFileShare(cmd, client, resource_group_name, vault_name, rp_name if target_file_share_name is None: raise InvalidArgumentValueError( "Please provide --target-file-share for Azure Files Cross Region Restore.") + if mi_system_assigned or mi_user_assigned: + raise ArgumentUsageError( + "Managed identity restore is not supported with --use-secondary-region.") + + _validate_afs_restore_parameters( + restore_mode, target_storage_account_name, target_file_share_name, + target_subscription_id, mi_system_assigned, mi_user_assigned) # sa_name = item.properties.container_name @@ -282,6 +423,10 @@ def restore_AzureFileShare(cmd, client, resource_group_name, vault_name, rp_name "and no fallback source resource ID is available.") from e afs_restore_request.restore_request_type = restore_request_type + if mi_system_assigned or mi_user_assigned: + afs_restore_request.identity_info = IdentityInfo( + is_system_assigned_identity=bool(mi_system_assigned), + managed_identity_resource_id=mi_user_assigned) restore_file_specs = None @@ -304,11 +449,12 @@ def restore_AzureFileShare(cmd, client, resource_group_name, vault_name, rp_name target_storage_account_name) target_details = TargetAFSRestoreInfo() target_details.name = target_file_share_name - target_details.target_resource_id = _get_storage_account_id(cmd.cli_ctx, target_sa_name, target_sa_rg) + target_details.target_resource_id = _get_storage_account_id( + cmd.cli_ctx, target_sa_name, target_sa_rg, target_subscription_id) if use_secondary_region: - _validate_target_file_share(cmd.cli_ctx, target_sa_rg, target_sa_name, target_file_share_name) + _validate_target_file_share( + cmd.cli_ctx, target_sa_rg, target_sa_name, target_file_share_name, target_subscription_id) afs_restore_request.target_details = target_details - afs_restore_request.restore_file_specs = restore_file_specs trigger_restore_request = RestoreRequestResource(properties=afs_restore_request) @@ -380,12 +526,12 @@ def list_recovery_points(cmd, client, resource_group_name, vault_name, item, sta crr_recovery_points_client = recovery_points_crr_cf(cmd.cli_ctx) recovery_points = crr_recovery_points_client.list( vault_name, resource_group_name, fabric_name, - container_uri, item_uri, filter_string) + container_uri, item_uri, filter=filter_string) paged_recovery_points = helper.get_list_from_paged_response(recovery_points) else: # Get recovery points recovery_points = client.list(vault_name, resource_group_name, fabric_name, - container_uri, item_uri, filter_string) + container_uri, item_uri, filter=filter_string) paged_recovery_points = helper.get_list_from_paged_response(recovery_points) if tier: @@ -544,8 +690,8 @@ def resume_protection(cmd, client, resource_group_name, vault_name, item, policy return update_policy_for_item(cmd, client, resource_group_name, vault_name, item, policy) -def _get_storage_account_id(cli_ctx, storage_account_name, storage_account_rg): - resources_client = resources_cf(cli_ctx) +def _get_storage_account_id(cli_ctx, storage_account_name, storage_account_rg, subscription_id=None): + resources_client = resources_cf(cli_ctx, subscription_id=subscription_id) classic_storage_resource_namespace = 'Microsoft.ClassicStorage' storage_resource_namespace = 'Microsoft.Storage' parent_resource_path = 'storageAccounts' @@ -564,9 +710,11 @@ def _get_storage_account_id(cli_ctx, storage_account_name, storage_account_rg): return storage_account.id -def _validate_target_file_share(cli_ctx, resource_group_name, storage_account_name, file_share_name): +def _validate_target_file_share(cli_ctx, resource_group_name, storage_account_name, file_share_name, + subscription_id=None): try: - file_shares_cf(cli_ctx).get(resource_group_name, storage_account_name, file_share_name) + file_shares_cf(cli_ctx, subscription_id=subscription_id).get( + resource_group_name, storage_account_name, file_share_name) except ResourceNotFoundError as ex: raise InvalidArgumentValueError( "Target file share '{}' was not found in storage account '{}'.".format( diff --git a/src/azure-cli/azure/cli/command_modules/backup/custom_base.py b/src/azure-cli/azure/cli/command_modules/backup/custom_base.py index 6bc06c3307d..5c96fff6435 100644 --- a/src/azure-cli/azure/cli/command_modules/backup/custom_base.py +++ b/src/azure-cli/azure/cli/command_modules/backup/custom_base.py @@ -491,6 +491,40 @@ def register_wl_container(cmd, client, vault_name, resource_group_name, workload resource_id, backup_management_type) +def register_container(cmd, client, vault_name, resource_group_name, backup_management_type, + workload_type=None, resource_id=None, storage_account=None, access_type=None, + mi_system_assigned=None, mi_user_assigned=None, yes=False): + if backup_management_type.lower() == "azurestorage": + if workload_type is None or workload_type.lower() not in ["azurefiles", "azurefileshare"]: + raise InvalidArgumentValueError( + "--workload-type AzureFileShare is required with --backup-management-type AzureStorage.") + if storage_account is None: + raise RequiredArgumentMissingError( + "--storage-account is required with --backup-management-type AzureStorage.") + if resource_id is not None: + raise ArgumentUsageError( + "--resource-id is not supported with --backup-management-type AzureStorage.") + return custom_afs.register_afs_container( + cmd, client, resource_group_name, vault_name, storage_account, access_type, + mi_system_assigned, mi_user_assigned, yes) + + if backup_management_type.lower() != "azureworkload": + raise InvalidArgumentValueError( + "Container registration supports AzureWorkload and AzureStorage backup management types.") + if workload_type is None: + raise RequiredArgumentMissingError( + "--workload-type is required with --backup-management-type AzureWorkload.") + if resource_id is None: + raise RequiredArgumentMissingError( + "--resource-id is required with --backup-management-type AzureWorkload.") + if storage_account is not None or access_type is not None or mi_system_assigned or mi_user_assigned: + raise ArgumentUsageError( + "Azure Files managed identity arguments are only supported with " + "--backup-management-type AzureStorage.") + return register_wl_container( + cmd, client, vault_name, resource_group_name, workload_type, resource_id, backup_management_type) + + def re_register_wl_container(cmd, client, vault_name, resource_group_name, workload_type, container_name, backup_management_type="AzureWorkload"): return custom_wl.re_register_wl_container(cmd, client, vault_name, resource_group_name, workload_type, @@ -590,15 +624,21 @@ def restore_disks(cmd, client, resource_group_name, vault_name, container_name, def enable_for_azurefileshare(cmd, client, resource_group_name, vault_name, policy_name, storage_account, - azure_file_share): + azure_file_share, access_type=None, mi_system_assigned=None, + mi_user_assigned=None, yes=False): return custom_afs.enable_for_AzureFileShare(cmd, client, resource_group_name, vault_name, azure_file_share, - storage_account, policy_name) + storage_account, policy_name, access_type, + mi_system_assigned, mi_user_assigned, yes) def restore_azurefileshare(cmd, client, resource_group_name, vault_name, rp_name, container_name, item_name, restore_mode, resolve_conflict, target_storage_account=None, target_file_share=None, - target_folder=None, target_resource_group_name=None, tenant_id=None, - use_secondary_region=None): + target_folder=None, target_resource_group_name=None, target_subscription_id=None, + mi_system_assigned=None, mi_user_assigned=None, use_secondary_region=None, + tenant_id=None): + if mi_system_assigned and mi_user_assigned: + raise MutuallyExclusiveArgumentError( + "--mi-system-assigned and --mi-user-assigned cannot be used together.") backup_management_type = "AzureStorage" workload_type = "AzureFileShare" items_client = backup_protected_items_cf(cmd.cli_ctx) @@ -613,13 +653,21 @@ def restore_azurefileshare(cmd, client, resource_group_name, vault_name, rp_name resolve_conflict, "FullShareRestore", target_storage_account_name=target_storage_account, target_file_share_name=target_file_share, target_folder=target_folder, - target_resource_group_name=target_resource_group_name, tenant_id=tenant_id, - use_secondary_region=use_secondary_region) + target_resource_group_name=target_resource_group_name, + target_subscription_id=target_subscription_id, + mi_system_assigned=mi_system_assigned, + mi_user_assigned=mi_user_assigned, + use_secondary_region=use_secondary_region, tenant_id=tenant_id) def restore_azurefiles(cmd, client, resource_group_name, vault_name, rp_name, container_name, item_name, restore_mode, resolve_conflict, target_storage_account=None, target_file_share=None, target_folder=None, + target_resource_group_name=None, target_subscription_id=None, + mi_system_assigned=None, mi_user_assigned=None, source_file_type=None, source_file_path=None, tenant_id=None): + if mi_system_assigned and mi_user_assigned: + raise MutuallyExclusiveArgumentError( + "--mi-system-assigned and --mi-user-assigned cannot be used together.") backup_management_type = "AzureStorage" workload_type = "AzureFileShare" items_client = backup_protected_items_cf(cmd.cli_ctx) @@ -633,6 +681,10 @@ def restore_azurefiles(cmd, client, resource_group_name, vault_name, rp_name, co resolve_conflict, "ItemLevelRestore", target_storage_account_name=target_storage_account, target_file_share_name=target_file_share, target_folder=target_folder, + target_resource_group_name=target_resource_group_name, + target_subscription_id=target_subscription_id, + mi_system_assigned=mi_system_assigned, + mi_user_assigned=mi_user_assigned, source_file_type=source_file_type, source_file_path=source_file_path, tenant_id=tenant_id) diff --git a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_afs_msi_reregistration_protection_restore.yaml b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_afs_msi_reregistration_protection_restore.yaml new file mode 100644 index 00000000000..3299230f946 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_afs_msi_reregistration_protection_restore.yaml @@ -0,0 +1,6237 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -g -v --backup-management-type --workload-type --storage-account --access-type + --mi-system-assigned --yes + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.41.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupProtectionContainers?api-version=2026-07-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20status%20eq%20%27Registered%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg-tgt;bhar11prtalr5sasami","name":"StorageContainer;Storage;bhar11-prt-restore-rg-tgt;bhar11prtalr5sasami","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg-tgt/providers/Microsoft.Storage/storageAccounts/bhar11prtalr5sasami","protectedItemCount":2,"acquireStorageAccountLock":"Acquire","accessType":"IdentityBased","identityInfo":{"isSystemAssignedIdentity":true},"friendlyName":"bhar11prtalr5sasami","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer","sourceLocation":"westeurope"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg-tgt;bhar11prtalr5satgt","name":"StorageContainer;Storage;bhar11-prt-restore-rg-tgt;bhar11prtalr5satgt","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg-tgt/providers/Microsoft.Storage/storageAccounts/bhar11prtalr5satgt","protectedItemCount":0,"acquireStorageAccountLock":"Acquire","accessType":"IdentityBased","identityInfo":{"isSystemAssignedIdentity":false,"managedIdentityResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/bhar11-prt-restore-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/bhar11-afs-uami-09151013"},"friendlyName":"bhar11prtalr5satgt","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer","sourceLocation":"westeurope"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg-tgt;bhar11prtalr5sauami","name":"StorageContainer;Storage;bhar11-prt-restore-rg-tgt;bhar11prtalr5sauami","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg-tgt/providers/Microsoft.Storage/storageAccounts/bhar11prtalr5sauami","protectedItemCount":2,"acquireStorageAccountLock":"Acquire","accessType":"IdentityBased","identityInfo":{"isSystemAssignedIdentity":false,"managedIdentityResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/bhar11-prt-restore-rg-tgt/providers/Microsoft.ManagedIdentity/userAssignedIdentities/bhar11-prt-alr5-uami"},"friendlyName":"bhar11prtalr5sauami","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer","sourceLocation":"westeurope"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg;afskey09191425","name":"StorageContainer;Storage;bhar11-prt-restore-rg;afskey09191425","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/afskey09191425","protectedItemCount":1,"acquireStorageAccountLock":"Acquire","accessType":"IdentityBased","identityInfo":{"isSystemAssignedIdentity":false,"managedIdentityResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/bhar11-prt-restore-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/afs-test-uami-09191425"},"friendlyName":"afskey09191425","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer","sourceLocation":"westeurope"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg;afsregkey09161005","name":"StorageContainer;Storage;bhar11-prt-restore-rg;afsregkey09161005","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/afsregkey09161005","protectedItemCount":1,"acquireStorageAccountLock":"Acquire","accessType":"KeyBased","friendlyName":"afsregkey09161005","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer","sourceLocation":"westeurope"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg;afsregsami09161005","name":"StorageContainer;Storage;bhar11-prt-restore-rg;afsregsami09161005","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/afsregsami09161005","protectedItemCount":1,"acquireStorageAccountLock":"Acquire","accessType":"IdentityBased","identityInfo":{"isSystemAssignedIdentity":true},"friendlyName":"afsregsami09161005","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer","sourceLocation":"westeurope"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg;afsreguami09161005","name":"StorageContainer;Storage;bhar11-prt-restore-rg;afsreguami09161005","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/afsreguami09161005","protectedItemCount":1,"acquireStorageAccountLock":"Acquire","accessType":"IdentityBased","identityInfo":{"isSystemAssignedIdentity":false,"managedIdentityResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/afs-reg-uami-09161005"},"friendlyName":"afsreguami09161005","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer","sourceLocation":"westeurope"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg;afssami09191425","name":"StorageContainer;Storage;bhar11-prt-restore-rg;afssami09191425","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/afssami09191425","protectedItemCount":1,"acquireStorageAccountLock":"Acquire","accessType":"IdentityBased","identityInfo":{"isSystemAssignedIdentity":true},"friendlyName":"afssami09191425","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer","sourceLocation":"westeurope"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg;afsuami09191425","name":"StorageContainer;Storage;bhar11-prt-restore-rg;afsuami09191425","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/afsuami09191425","protectedItemCount":2,"acquireStorageAccountLock":"Acquire","accessType":"IdentityBased","identityInfo":{"isSystemAssignedIdentity":false,"managedIdentityResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/afs-test-uami-09191425"},"friendlyName":"afsuami09191425","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer","sourceLocation":"westeurope"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg;bhar11msireproa1","name":"StorageContainer;Storage;bhar11-prt-restore-rg;bhar11msireproa1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/bhar11msireproa1","protectedItemCount":0,"acquireStorageAccountLock":"Acquire","accessType":"IdentityBased","identityInfo":{"isSystemAssignedIdentity":false,"managedIdentityResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/bhar11-msi-repro-uami-0918"},"friendlyName":"bhar11msireproa1","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer","sourceLocation":"westeurope"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg;bhar11msireproa2","name":"StorageContainer;Storage;bhar11-prt-restore-rg;bhar11msireproa2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/bhar11msireproa2","protectedItemCount":0,"acquireStorageAccountLock":"Acquire","accessType":"IdentityBased","identityInfo":{"isSystemAssignedIdentity":false,"managedIdentityResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/bhar11-msi-repro-uami-0918"},"friendlyName":"bhar11msireproa2","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer","sourceLocation":"westeurope"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg;bhar11prtolrsakey","name":"StorageContainer;Storage;bhar11-prt-restore-rg;bhar11prtolrsakey","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/bhar11prtolrsakey","protectedItemCount":2,"acquireStorageAccountLock":"Acquire","accessType":"KeyBased","friendlyName":"bhar11prtolrsakey","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer","sourceLocation":"westeurope"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg;bhar11prtolrsakeyps","name":"StorageContainer;Storage;bhar11-prt-restore-rg;bhar11prtolrsakeyps","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/bhar11prtolrsakeyps","protectedItemCount":1,"acquireStorageAccountLock":"Acquire","accessType":"IdentityBased","identityInfo":{"isSystemAssignedIdentity":true},"friendlyName":"bhar11prtolrsakeyps","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer","sourceLocation":"westeurope"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg;bhar11prtolrsasami","name":"StorageContainer;Storage;bhar11-prt-restore-rg;bhar11prtolrsasami","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/bhar11prtolrsasami","protectedItemCount":2,"acquireStorageAccountLock":"Acquire","accessType":"IdentityBased","identityInfo":{"isSystemAssignedIdentity":true},"friendlyName":"bhar11prtolrsasami","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer","sourceLocation":"westeurope"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg;bhar11prtolrsasamips","name":"StorageContainer;Storage;bhar11-prt-restore-rg;bhar11prtolrsasamips","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/bhar11prtolrsasamips","protectedItemCount":3,"acquireStorageAccountLock":"Acquire","accessType":"IdentityBased","identityInfo":{"isSystemAssignedIdentity":true},"friendlyName":"bhar11prtolrsasamips","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer","sourceLocation":"westeurope"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg;bhar11prtolrsauami","name":"StorageContainer;Storage;bhar11-prt-restore-rg;bhar11prtolrsauami","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/bhar11prtolrsauami","protectedItemCount":2,"acquireStorageAccountLock":"Acquire","accessType":"IdentityBased","identityInfo":{"isSystemAssignedIdentity":false,"managedIdentityResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/bhar11-prt-restore-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/bhar11-prt-olr-uami"},"friendlyName":"bhar11prtolrsauami","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer","sourceLocation":"westeurope"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg;bhar11prtolrsauami1","name":"StorageContainer;Storage;bhar11-prt-restore-rg;bhar11prtolrsauami1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/bhar11prtolrsauami1","protectedItemCount":2,"acquireStorageAccountLock":"Acquire","accessType":"IdentityBased","identityInfo":{"isSystemAssignedIdentity":false,"managedIdentityResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/bhar11-prt-restore-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/bhar11-afs-uami-09151013"},"friendlyName":"bhar11prtolrsauami1","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer","sourceLocation":"westeurope"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg;bhar11prtolrsauamips","name":"StorageContainer;Storage;bhar11-prt-restore-rg;bhar11prtolrsauamips","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/bhar11prtolrsauamips","protectedItemCount":3,"acquireStorageAccountLock":"Acquire","accessType":"IdentityBased","identityInfo":{"isSystemAssignedIdentity":false,"managedIdentityResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/bhar11-prt-restore-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/bhar11-afs-uami-09151013"},"friendlyName":"bhar11prtolrsauamips","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer","sourceLocation":"westeurope"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg;bhar11prtolrtgtsami","name":"StorageContainer;Storage;bhar11-prt-restore-rg;bhar11prtolrtgtsami","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/bhar11prtolrtgtsami","protectedItemCount":0,"acquireStorageAccountLock":"Acquire","accessType":"IdentityBased","identityInfo":{"isSystemAssignedIdentity":true},"friendlyName":"bhar11prtolrtgtsami","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer","sourceLocation":"westeurope"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg;bhar11prtolrtgtuami","name":"StorageContainer;Storage;bhar11-prt-restore-rg;bhar11prtolrtgtuami","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/bhar11prtolrtgtuami","protectedItemCount":0,"acquireStorageAccountLock":"Acquire","accessType":"IdentityBased","identityInfo":{"isSystemAssignedIdentity":false,"managedIdentityResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/bhar11-prt-restore-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/bhar11-prt-olr-uami"},"friendlyName":"bhar11prtolrtgtuami","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer","sourceLocation":"westeurope"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg;climsilive09191401","name":"StorageContainer;Storage;bhar11-prt-restore-rg;climsilive09191401","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/climsilive09191401","protectedItemCount":7,"acquireStorageAccountLock":"Acquire","accessType":"IdentityBased","identityInfo":{"isSystemAssignedIdentity":false,"managedIdentityResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/bhar11-afs-uami-09151013"},"friendlyName":"climsilive09191401","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer","sourceLocation":"westeurope"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '23119' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 21 Sep 2026 06:57:44 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=d5f45f9e-867c-4805-9aba-55121e6bdbb8/westeurope/1f3b0116-abf4-4a2e-b7d3-a89e1109ec4f + x-ms-ratelimit-remaining-subscription-resource-requests: + - '249' + x-msedge-ref: + - 'Ref A: B79C01E6AE4E4502B12C1FEA71826393 Ref B: PNQ231110909023 Ref C: 2026-09-21T06:57:44Z' + status: + code: 200 + message: OK +- request: + body: '{"properties": {"friendlyName": "afsuami09191425", "backupManagementType": + "AzureStorage", "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/afsuami09191425", + "resourceGroup": "bhar11-prt-restore-rg", "operationType": "Reregister", "accessType": + "IdentityBased", "identityInfo": {"isSystemAssignedIdentity": true}, "containerType": + "StorageContainer"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + Content-Length: + - '456' + Content-Type: + - application/json + ParameterSetName: + - -g -v --backup-management-type --workload-type --storage-account --access-type + --mi-system-assigned --yes + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.41.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bbhar11-prt-restore-rg%3Bafsuami09191425?api-version=2026-07-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg;afsuami09191425/operationsStatus/d9d90d45-02c1-44e2-9a7f-6ccfb4a9e1b7?api-version=2019-05-13-preview&t=639255706680092613&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=o_tinA4MCKEhnJOl2cH6LAMugfRELT1IyWkR_4BcQ4-6r3e4_F3UI7dOIuREJWjdNN51YVwSfLyN0ow3IeUoYY8-3IFZWVDOl7nYeSY-bVvZYo9Eps98_VunvYWhqsxjjEYm_Ie7Hw1fhIeW4l9ZpIVsThsaz0mAXQAVxAUX1du7V-AYY55CIFjKTCzfueJQJrBJDMLCLsY7EHgTSNrUSLbe8hsTylcsl8vLz_0AQyUSExQn5YlQ4lSFLhgTxISeNzhRRufG1fwx_ad5HWp_hf2ubHl-M4sh3eTY4d0wZnBz_O-Wd-c9O8YXKcuQQVEFNZhpL2AezUcq2gIcgbqGSA&h=CqGE8gpJi_YHE5gNj-vsaEPK1e4r7AykDqJTDAMRLRk + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 21 Sep 2026 06:57:47 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg;afsuami09191425/operationResults/d9d90d45-02c1-44e2-9a7f-6ccfb4a9e1b7?api-version=2026-07-01&t=639255706680092613&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=bXVEBU6lxStkbWiNX88gyL7BYFZZY9cPrZRxLaubv_S2-nEQ5q05hRpNKerCnvQm6s-vipZLg7M82OHBeMefJPU2ZQkWYUqriiL5bM1FOES7WxMYvBBoERaIm01Si5Ey-mQwx6_d1kNNYrifhNZZBV67mW_8rIzxVZWP4d_eo1VqTK9gnu-sbMAXZ1UfmLKs0M1T45vOzQUkavTjY-eJlXYL0ApLfmoviXviN7xx65iIXTTVc6gGuDToKKeMqh65r2IU3VLOCI1uVlm8GZdprby2iKJN16m5NeLrMw-W0JJXihF1SndU69zo0mSjnxbt34JbawDq0T1MH9VN_0IFSg&h=Ka1sBB3BVywLQZkmPSC0ssGxtF5JZH5ejj2TeUAEjGc + 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=d5f45f9e-867c-4805-9aba-55121e6bdbb8/westeurope/e2a5ab08-0d80-4356-a4b3-e35dc31a5adb + x-ms-ratelimit-remaining-subscription-global-writes: + - '11999' + x-ms-ratelimit-remaining-subscription-writes: + - '799' + x-msedge-ref: + - 'Ref A: E8ABD8606F4A49429BAFA82B3DE0D30C Ref B: PNQ231110906029 Ref C: 2026-09-21T06:57:45Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -g -v --backup-management-type --workload-type --storage-account --access-type + --mi-system-assigned --yes + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.41.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bbhar11-prt-restore-rg%3Bafsuami09191425/operationResults/d9d90d45-02c1-44e2-9a7f-6ccfb4a9e1b7?api-version=2026-07-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg;afsuami09191425/operationsStatus/d9d90d45-02c1-44e2-9a7f-6ccfb4a9e1b7?api-version=2019-05-13-preview&t=639255706691624938&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=qpCgmoN9B8aXv_kEqLXgvZ-N25Z_0sTce5ic6vzss-_aQ9DlPLTLfrATVykc6giTZ0N-P4YWgX5ypXXFWBOd-Cpj7Wp3Y5YU7zNgrzkCCgCpnhV3I1nUWi42tUh1AZ0mlfdxJS6xNZZuggWbXqCptYw9oecN8hIE2QVbPniYhrPJHNQ_d-wrJ9h2tfTIxWfTfsYyri5iK0QUnwWqLEjZVU4GTrTXdIDojwnfuSGVqMa85HlIjM4h_xp0KBF3OwIQ-XZTdnY71IcG8MxIGDtwaZt2gcqITlDq0SxGewh_11YsVi84zoMbEr6N3_AHXDrnnEP2RcepoxqcXkeyO9gk4w&h=TRo0wuSjadM9SeYqlAY4RCk7zcvl4d3QAoaNtfiDd5Q + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 21 Sep 2026 06:57:49 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg;afsuami09191425/operationResults/d9d90d45-02c1-44e2-9a7f-6ccfb4a9e1b7?api-version=2026-07-01&t=639255706691781202&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=KSOZWyy-5WhVXMB9bkxrHqrid8PFKied1ihYyETE7LYwtm1EcRtpKfad6_Vyhen6Lk_7NseN4NzGywgAhDNzW4AVVG1wTtflvhc5xC6XIBO1jnjr3jrLGEmYSGpgiDAdK7mRfroJFfRsTLsQw0OIMT55aqEV7vavgcXSMVrQV_lnKU4FzbJtaWtdxmKqr5nYKnFf97Lm28jvy6Ii76FnRK89nlnHoPPa1HHX73dpbopZXkq4TaGzUYm2_G0GLpTk4EorgHF695VGzSkyqqNcM1TUboo1RCPxqG2jRDOvB2gcln7QFY1TAj6adzb5GcacfOTDnv2DTkv6ZdDAsuyr7Q&h=RqokDe1rQu-GJKZVqm9AAR1ZAHzr4incNNnnBPfCS2A + 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=d5f45f9e-867c-4805-9aba-55121e6bdbb8/westeurope/b3d9f17d-c2c6-40fa-8abd-3cdfd273b76d + x-ms-ratelimit-remaining-subscription-resource-requests: + - '249' + x-msedge-ref: + - 'Ref A: 8ADB7B0E23084A6FBE0A3C56266F2A02 Ref B: PNQ231110909036 Ref C: 2026-09-21T06:57:48Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -g -v --backup-management-type --workload-type --storage-account --access-type + --mi-system-assigned --yes + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.41.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bbhar11-prt-restore-rg%3Bafsuami09191425/operationResults/d9d90d45-02c1-44e2-9a7f-6ccfb4a9e1b7?api-version=2026-07-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg;afsuami09191425/operationsStatus/d9d90d45-02c1-44e2-9a7f-6ccfb4a9e1b7?api-version=2019-05-13-preview&t=639255706754115150&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=Z6ers8XamMKIyYx7jmxW2HK0ewex4DrDhT7YnW32qdBnsOWSwutovPS4cwOt6YNjQooc1D3cE-Dk8jzVzRGKJO2jFgsPv4Lse__Y-nQp1e833_YBxvYAxXMUuGb3gfKZDH3LYfS-3AOeZ6qcRJU2tQbKyhAQXxRVZFKrjKGXgRwy7FqlTfF0uO88bRM_Vx4MMtVFkpOupvBBdn-gkdxNuU-68Auebf1AH3MxTVzu_pX2kdOxsupLV3BaKsvV-8Ygk_HOyaU3AkJ9jTOid95R8UU6Zsrx7OnkNKW2wxJ-Uyv031czUnt7X9yu5Gh4aAnVpdrvPKveoVz7_H-lTiLiqw&h=53_-gFlyV5wGadKHYjUHW1bHlAdpO1r1A5qz5styoq0 + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 21 Sep 2026 06:57:54 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg;afsuami09191425/operationResults/d9d90d45-02c1-44e2-9a7f-6ccfb4a9e1b7?api-version=2026-07-01&t=639255706754271387&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=HqhTur-PtCxQOgwLENPyA5IvbJ-YeFIwr6Gyl7GAnasQYakeTlS8E_33Zhdyd4Ig8fZAp-AhnJTc1J96iJ-w43hza2fxdsWcaI8KREkvsBBQEsCAWVBMJzAmHdfMM79rWBcEsB8jwOjo5VnhBJt3B2PTthrb_rqHeIPQ1sEbtoRGnC6t-hdzkzjTx_7h7QoHYwRSU5qDu4ZM7eBvP2ycSi-J4OHQrQ-Usxnkq4HhwHvZq1watDxXgt0k-S7VR4Gn426zttOYlB0unpPhakrwkhfMxK1MN0Hy810qkLhw3uyGG68IQ6VHu7E3KYHMoFJ4ooBwaD9i-Yka4ojNCeupIQ&h=jfIA8a7CFqDwSH0MN5x4OKgDXv5cZk1WolH-zvSk4H8 + 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=d5f45f9e-867c-4805-9aba-55121e6bdbb8/westeurope/d977faa1-be7f-46b7-afc9-2b604283f463 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '249' + x-msedge-ref: + - 'Ref A: 2F369457DC1C4D22BCF1613D1BC7B93B Ref B: PNQ231110909023 Ref C: 2026-09-21T06:57:54Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -g -v --backup-management-type --workload-type --storage-account --access-type + --mi-system-assigned --yes + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.41.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bbhar11-prt-restore-rg%3Bafsuami09191425/operationResults/d9d90d45-02c1-44e2-9a7f-6ccfb4a9e1b7?api-version=2026-07-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg;afsuami09191425/operationsStatus/d9d90d45-02c1-44e2-9a7f-6ccfb4a9e1b7?api-version=2019-05-13-preview&t=639255706810990002&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=vD0w7eQmxIRfaixzksO2lVSq4s2LRy9x1AFUHRzvix1xmQHGsounzLzgM-DMZEMBJ8vux9EVWZ7RrM3W7ytnkdVfBWzK_pVAcr7cTL4V4-Qew9W4kJQ-9eT8ruNfddojME3lYr7hidnMrVCL2YLRHHkuYHpo_YdIOJE2rupvdmG8huCHAbH62UcOVAXTDDN2lercrv_m_7-5OfpDhnrf_gbhaT0l4ZfTs59h4hZX5jVFhtyl742Vscht_TlpLRAqzfChbJjJHvDh2kT09DcxVsTdXI0Cx1dgT-_QgCDky9sN-XFahpI9OANTVMF0vjwk8eUWRpSvdvTbcTdzNMLSpg&h=ZkE4Hem6Lc5neHsE__00msEnGDwUWg1p1U455kXeIok + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 21 Sep 2026 06:58:00 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg;afsuami09191425/operationResults/d9d90d45-02c1-44e2-9a7f-6ccfb4a9e1b7?api-version=2026-07-01&t=639255706810990002&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=PJwwK8zJ3fbLKVy5lueV8v4XDZqxuQi6Ed_I9IzVpvye-Oas4rhkb8bdJLiWi2by7AQYA2_cRfE2roxxYoAlSzVtTnwDd52O7xKrpsbmIjD1_og07SN5tg9MJY0hXmCJozGVbStQ3SvSpNqtV_xeE9zFIhpXt-d-LFxiPq8-EvkAr-raWrH8vfcUWqWN6qmP1_IJ6V3CuH63WUvxF4s_elPQBdZmhfqnxCu679PSjhD0Gt-z3qohu_jolPS8tcbVV72l0hbixqxhAE7Rt_6pkxsIkLiLIWR4iEBuf2uNnJjKAHBZepMoRh3z40FXwd8wO6sbb0AqvuqqD-w3JL-P3w&h=dDzDNhMRnolHTwTdJ2AEBeJhsgrhOjhB7O1CnsBnaRU + 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=d5f45f9e-867c-4805-9aba-55121e6bdbb8/westeurope/18564ab6-7067-4079-bb78-3af183473e59 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '248' + x-msedge-ref: + - 'Ref A: 6E157B57CE8C424198FFB1A2A82DE0C9 Ref B: PNQ231110909023 Ref C: 2026-09-21T06:58:00Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -g -v --backup-management-type --workload-type --storage-account --access-type + --mi-system-assigned --yes + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.41.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bbhar11-prt-restore-rg%3Bafsuami09191425/operationResults/d9d90d45-02c1-44e2-9a7f-6ccfb4a9e1b7?api-version=2026-07-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg;afsuami09191425/operationsStatus/d9d90d45-02c1-44e2-9a7f-6ccfb4a9e1b7?api-version=2019-05-13-preview&t=639255706872995877&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=VgbQci9HiBt1IFx21UzWUd_X4KQOyIQqFHBSvmelVFGtgVlZAfLbmpo08-om5S3kmZx0HI488QXLyFeURR4rVzGjUNzHVGelLynqJmZwG8eT170vE5P3boGjIZ-6K4Tn-GEOeaqJfDTE93tRCjymM9B2vymOGiiuy0Wb-C1y-4Ex_Gq3wANiYKldsomgPFMXO43t_-ZyvsH8CXz2jBLk3o_ZRjzWRsaOJTGsYPK5TxmDi329JLcf03OEkBiJUgwBSbsOCnJ-NDyHt4bBa7xaLIolbR0eBiosLkBbYNphO-DotEXkmMeYRJ4OfoBl1PjXN2g1NE7LYFZ1PHzGJ5XR_w&h=H5W9iS0QnL85eEWo_91dzdyp0fvnYeyicRvkv_eCEow + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 21 Sep 2026 06:58:06 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg;afsuami09191425/operationResults/d9d90d45-02c1-44e2-9a7f-6ccfb4a9e1b7?api-version=2026-07-01&t=639255706872995877&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=NKz51yXGn-KPFVjBgoJatnfM1xGFPqj4jR9xZxRyXidWIMtOYxjm1GnHRhewIPZ1Wg5D3RUVd-BAkz8p8rfBUw3bosve8dMmHY2X81CZ7m3RBc70MjALrYuYVBjNuwyG0YUHanD1bFHMrup30BPtbn7hXweRloVtdEvEVPUEbED1DNaLvetOO4HJqDYGANawVXxZFko0W2IU6ZNxSHeFH_upB_awCfL_A-p-6MLR-sI-tIdg_n6hb1CW88siD0Ck8RkVqjd6Rwp2asXVMdou8eZaNoDnir_KfZWb7CpNuXmGyzUw73biEA--7tyLwnEwsljEK_jImF00V2KNmgX-Xw&h=YpzKfqKuuNIwifnqFtvlehwQVOPfS15dIbtTfWxgGBU + 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=d5f45f9e-867c-4805-9aba-55121e6bdbb8/westeurope/7fcdf36b-9032-4c6e-b88c-41abfb866eda + x-ms-ratelimit-remaining-subscription-resource-requests: + - '249' + x-msedge-ref: + - 'Ref A: C200822E670D418999809C964E546BE0 Ref B: PNQ231110909060 Ref C: 2026-09-21T06:58:06Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -g -v --backup-management-type --workload-type --storage-account --access-type + --mi-system-assigned --yes + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.41.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bbhar11-prt-restore-rg%3Bafsuami09191425/operationResults/d9d90d45-02c1-44e2-9a7f-6ccfb4a9e1b7?api-version=2026-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg;afsuami09191425","name":"StorageContainer;Storage;bhar11-prt-restore-rg;afsuami09191425","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/afsuami09191425","protectedItemCount":2,"acquireStorageAccountLock":"Acquire","accessType":"IdentityBased","identityInfo":{"isSystemAssignedIdentity":true},"friendlyName":"afsuami09191425","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer","sourceLocation":"westeurope"}}' + headers: + cache-control: + - no-cache + content-length: + - '898' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 21 Sep 2026 06:58: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=d5f45f9e-867c-4805-9aba-55121e6bdbb8/westeurope/03b92d91-a5f3-4235-9dc3-d85ffb080839 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '249' + x-msedge-ref: + - 'Ref A: 7A725AFAC8A24FD985F6C7E299C0392F Ref B: PNQ231110906031 Ref C: 2026-09-21T06:58:12Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -g -v --backup-management-type --workload-type --storage-account --access-type + --mi-system-assigned --yes + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.41.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupProtectionContainers?api-version=2026-07-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20status%20eq%20%27Registered%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg-tgt;bhar11prtalr5sasami","name":"StorageContainer;Storage;bhar11-prt-restore-rg-tgt;bhar11prtalr5sasami","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg-tgt/providers/Microsoft.Storage/storageAccounts/bhar11prtalr5sasami","protectedItemCount":2,"acquireStorageAccountLock":"Acquire","accessType":"IdentityBased","identityInfo":{"isSystemAssignedIdentity":true},"friendlyName":"bhar11prtalr5sasami","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer","sourceLocation":"westeurope"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg-tgt;bhar11prtalr5satgt","name":"StorageContainer;Storage;bhar11-prt-restore-rg-tgt;bhar11prtalr5satgt","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg-tgt/providers/Microsoft.Storage/storageAccounts/bhar11prtalr5satgt","protectedItemCount":0,"acquireStorageAccountLock":"Acquire","accessType":"IdentityBased","identityInfo":{"isSystemAssignedIdentity":false,"managedIdentityResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/bhar11-prt-restore-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/bhar11-afs-uami-09151013"},"friendlyName":"bhar11prtalr5satgt","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer","sourceLocation":"westeurope"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg-tgt;bhar11prtalr5sauami","name":"StorageContainer;Storage;bhar11-prt-restore-rg-tgt;bhar11prtalr5sauami","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg-tgt/providers/Microsoft.Storage/storageAccounts/bhar11prtalr5sauami","protectedItemCount":2,"acquireStorageAccountLock":"Acquire","accessType":"IdentityBased","identityInfo":{"isSystemAssignedIdentity":false,"managedIdentityResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/bhar11-prt-restore-rg-tgt/providers/Microsoft.ManagedIdentity/userAssignedIdentities/bhar11-prt-alr5-uami"},"friendlyName":"bhar11prtalr5sauami","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer","sourceLocation":"westeurope"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg;afskey09191425","name":"StorageContainer;Storage;bhar11-prt-restore-rg;afskey09191425","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/afskey09191425","protectedItemCount":1,"acquireStorageAccountLock":"Acquire","accessType":"IdentityBased","identityInfo":{"isSystemAssignedIdentity":false,"managedIdentityResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/bhar11-prt-restore-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/afs-test-uami-09191425"},"friendlyName":"afskey09191425","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer","sourceLocation":"westeurope"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg;afsregkey09161005","name":"StorageContainer;Storage;bhar11-prt-restore-rg;afsregkey09161005","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/afsregkey09161005","protectedItemCount":1,"acquireStorageAccountLock":"Acquire","accessType":"KeyBased","friendlyName":"afsregkey09161005","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer","sourceLocation":"westeurope"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg;afsregsami09161005","name":"StorageContainer;Storage;bhar11-prt-restore-rg;afsregsami09161005","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/afsregsami09161005","protectedItemCount":1,"acquireStorageAccountLock":"Acquire","accessType":"IdentityBased","identityInfo":{"isSystemAssignedIdentity":true},"friendlyName":"afsregsami09161005","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer","sourceLocation":"westeurope"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg;afsreguami09161005","name":"StorageContainer;Storage;bhar11-prt-restore-rg;afsreguami09161005","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/afsreguami09161005","protectedItemCount":1,"acquireStorageAccountLock":"Acquire","accessType":"IdentityBased","identityInfo":{"isSystemAssignedIdentity":false,"managedIdentityResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/afs-reg-uami-09161005"},"friendlyName":"afsreguami09161005","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer","sourceLocation":"westeurope"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg;afssami09191425","name":"StorageContainer;Storage;bhar11-prt-restore-rg;afssami09191425","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/afssami09191425","protectedItemCount":1,"acquireStorageAccountLock":"Acquire","accessType":"IdentityBased","identityInfo":{"isSystemAssignedIdentity":true},"friendlyName":"afssami09191425","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer","sourceLocation":"westeurope"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg;afsuami09191425","name":"StorageContainer;Storage;bhar11-prt-restore-rg;afsuami09191425","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/afsuami09191425","protectedItemCount":2,"acquireStorageAccountLock":"Acquire","accessType":"IdentityBased","identityInfo":{"isSystemAssignedIdentity":true},"friendlyName":"afsuami09191425","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer","sourceLocation":"westeurope"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg;bhar11msireproa1","name":"StorageContainer;Storage;bhar11-prt-restore-rg;bhar11msireproa1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/bhar11msireproa1","protectedItemCount":0,"acquireStorageAccountLock":"Acquire","accessType":"IdentityBased","identityInfo":{"isSystemAssignedIdentity":false,"managedIdentityResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/bhar11-msi-repro-uami-0918"},"friendlyName":"bhar11msireproa1","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer","sourceLocation":"westeurope"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg;bhar11msireproa2","name":"StorageContainer;Storage;bhar11-prt-restore-rg;bhar11msireproa2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/bhar11msireproa2","protectedItemCount":0,"acquireStorageAccountLock":"Acquire","accessType":"IdentityBased","identityInfo":{"isSystemAssignedIdentity":false,"managedIdentityResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/bhar11-msi-repro-uami-0918"},"friendlyName":"bhar11msireproa2","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer","sourceLocation":"westeurope"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg;bhar11prtolrsakey","name":"StorageContainer;Storage;bhar11-prt-restore-rg;bhar11prtolrsakey","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/bhar11prtolrsakey","protectedItemCount":2,"acquireStorageAccountLock":"Acquire","accessType":"KeyBased","friendlyName":"bhar11prtolrsakey","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer","sourceLocation":"westeurope"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg;bhar11prtolrsakeyps","name":"StorageContainer;Storage;bhar11-prt-restore-rg;bhar11prtolrsakeyps","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/bhar11prtolrsakeyps","protectedItemCount":1,"acquireStorageAccountLock":"Acquire","accessType":"IdentityBased","identityInfo":{"isSystemAssignedIdentity":true},"friendlyName":"bhar11prtolrsakeyps","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer","sourceLocation":"westeurope"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg;bhar11prtolrsasami","name":"StorageContainer;Storage;bhar11-prt-restore-rg;bhar11prtolrsasami","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/bhar11prtolrsasami","protectedItemCount":2,"acquireStorageAccountLock":"Acquire","accessType":"IdentityBased","identityInfo":{"isSystemAssignedIdentity":true},"friendlyName":"bhar11prtolrsasami","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer","sourceLocation":"westeurope"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg;bhar11prtolrsasamips","name":"StorageContainer;Storage;bhar11-prt-restore-rg;bhar11prtolrsasamips","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/bhar11prtolrsasamips","protectedItemCount":3,"acquireStorageAccountLock":"Acquire","accessType":"IdentityBased","identityInfo":{"isSystemAssignedIdentity":true},"friendlyName":"bhar11prtolrsasamips","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer","sourceLocation":"westeurope"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg;bhar11prtolrsauami","name":"StorageContainer;Storage;bhar11-prt-restore-rg;bhar11prtolrsauami","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/bhar11prtolrsauami","protectedItemCount":2,"acquireStorageAccountLock":"Acquire","accessType":"IdentityBased","identityInfo":{"isSystemAssignedIdentity":false,"managedIdentityResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/bhar11-prt-restore-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/bhar11-prt-olr-uami"},"friendlyName":"bhar11prtolrsauami","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer","sourceLocation":"westeurope"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg;bhar11prtolrsauami1","name":"StorageContainer;Storage;bhar11-prt-restore-rg;bhar11prtolrsauami1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/bhar11prtolrsauami1","protectedItemCount":2,"acquireStorageAccountLock":"Acquire","accessType":"IdentityBased","identityInfo":{"isSystemAssignedIdentity":false,"managedIdentityResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/bhar11-prt-restore-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/bhar11-afs-uami-09151013"},"friendlyName":"bhar11prtolrsauami1","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer","sourceLocation":"westeurope"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg;bhar11prtolrsauamips","name":"StorageContainer;Storage;bhar11-prt-restore-rg;bhar11prtolrsauamips","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/bhar11prtolrsauamips","protectedItemCount":3,"acquireStorageAccountLock":"Acquire","accessType":"IdentityBased","identityInfo":{"isSystemAssignedIdentity":false,"managedIdentityResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/bhar11-prt-restore-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/bhar11-afs-uami-09151013"},"friendlyName":"bhar11prtolrsauamips","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer","sourceLocation":"westeurope"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg;bhar11prtolrtgtsami","name":"StorageContainer;Storage;bhar11-prt-restore-rg;bhar11prtolrtgtsami","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/bhar11prtolrtgtsami","protectedItemCount":0,"acquireStorageAccountLock":"Acquire","accessType":"IdentityBased","identityInfo":{"isSystemAssignedIdentity":true},"friendlyName":"bhar11prtolrtgtsami","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer","sourceLocation":"westeurope"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg;bhar11prtolrtgtuami","name":"StorageContainer;Storage;bhar11-prt-restore-rg;bhar11prtolrtgtuami","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/bhar11prtolrtgtuami","protectedItemCount":0,"acquireStorageAccountLock":"Acquire","accessType":"IdentityBased","identityInfo":{"isSystemAssignedIdentity":false,"managedIdentityResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/bhar11-prt-restore-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/bhar11-prt-olr-uami"},"friendlyName":"bhar11prtolrtgtuami","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer","sourceLocation":"westeurope"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg;climsilive09191401","name":"StorageContainer;Storage;bhar11-prt-restore-rg;climsilive09191401","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/climsilive09191401","protectedItemCount":7,"acquireStorageAccountLock":"Acquire","accessType":"IdentityBased","identityInfo":{"isSystemAssignedIdentity":false,"managedIdentityResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/bhar11-afs-uami-09151013"},"friendlyName":"climsilive09191401","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer","sourceLocation":"westeurope"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '22917' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 21 Sep 2026 06:58: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=d5f45f9e-867c-4805-9aba-55121e6bdbb8/westeurope/ab1556bc-eed3-4d1b-a936-62c16992d609 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '249' + x-msedge-ref: + - 'Ref A: 946A07BEB78343ED9CC5A7567543C2D7 Ref B: PNQ231110906029 Ref C: 2026-09-21T06:58:13Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container show + Connection: + - keep-alive + ParameterSetName: + - -g -v -n --backup-management-type + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.41.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupProtectionContainers?api-version=2026-07-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20friendlyName%20eq%20%27afsuami09191425%27%20and%20status%20eq%20%27Registered%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg;afsuami09191425","name":"StorageContainer;Storage;bhar11-prt-restore-rg;afsuami09191425","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/afsuami09191425","protectedItemCount":2,"acquireStorageAccountLock":"Acquire","accessType":"IdentityBased","identityInfo":{"isSystemAssignedIdentity":true},"friendlyName":"afsuami09191425","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer","sourceLocation":"westeurope"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '988' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 21 Sep 2026 06:58:14 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=d5f45f9e-867c-4805-9aba-55121e6bdbb8/westeurope/3f42b0b4-39e9-48ff-a76a-8dae739af5e4 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '249' + x-msedge-ref: + - 'Ref A: 292B061F8BEF4B3AA304849A717E8D62 Ref B: PNQ231110908040 Ref C: 2026-09-21T06:58:14Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -g -v --backup-management-type --workload-type --storage-account --access-type + --mi-user-assigned --yes + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.41.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupProtectionContainers?api-version=2026-07-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20status%20eq%20%27Registered%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg-tgt;bhar11prtalr5sasami","name":"StorageContainer;Storage;bhar11-prt-restore-rg-tgt;bhar11prtalr5sasami","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg-tgt/providers/Microsoft.Storage/storageAccounts/bhar11prtalr5sasami","protectedItemCount":2,"acquireStorageAccountLock":"Acquire","accessType":"IdentityBased","identityInfo":{"isSystemAssignedIdentity":true},"friendlyName":"bhar11prtalr5sasami","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer","sourceLocation":"westeurope"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg-tgt;bhar11prtalr5satgt","name":"StorageContainer;Storage;bhar11-prt-restore-rg-tgt;bhar11prtalr5satgt","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg-tgt/providers/Microsoft.Storage/storageAccounts/bhar11prtalr5satgt","protectedItemCount":0,"acquireStorageAccountLock":"Acquire","accessType":"IdentityBased","identityInfo":{"isSystemAssignedIdentity":false,"managedIdentityResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/bhar11-prt-restore-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/bhar11-afs-uami-09151013"},"friendlyName":"bhar11prtalr5satgt","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer","sourceLocation":"westeurope"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg-tgt;bhar11prtalr5sauami","name":"StorageContainer;Storage;bhar11-prt-restore-rg-tgt;bhar11prtalr5sauami","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg-tgt/providers/Microsoft.Storage/storageAccounts/bhar11prtalr5sauami","protectedItemCount":2,"acquireStorageAccountLock":"Acquire","accessType":"IdentityBased","identityInfo":{"isSystemAssignedIdentity":false,"managedIdentityResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/bhar11-prt-restore-rg-tgt/providers/Microsoft.ManagedIdentity/userAssignedIdentities/bhar11-prt-alr5-uami"},"friendlyName":"bhar11prtalr5sauami","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer","sourceLocation":"westeurope"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg;afskey09191425","name":"StorageContainer;Storage;bhar11-prt-restore-rg;afskey09191425","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/afskey09191425","protectedItemCount":1,"acquireStorageAccountLock":"Acquire","accessType":"IdentityBased","identityInfo":{"isSystemAssignedIdentity":false,"managedIdentityResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/bhar11-prt-restore-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/afs-test-uami-09191425"},"friendlyName":"afskey09191425","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer","sourceLocation":"westeurope"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg;afsregkey09161005","name":"StorageContainer;Storage;bhar11-prt-restore-rg;afsregkey09161005","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/afsregkey09161005","protectedItemCount":1,"acquireStorageAccountLock":"Acquire","accessType":"KeyBased","friendlyName":"afsregkey09161005","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer","sourceLocation":"westeurope"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg;afsregsami09161005","name":"StorageContainer;Storage;bhar11-prt-restore-rg;afsregsami09161005","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/afsregsami09161005","protectedItemCount":1,"acquireStorageAccountLock":"Acquire","accessType":"IdentityBased","identityInfo":{"isSystemAssignedIdentity":true},"friendlyName":"afsregsami09161005","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer","sourceLocation":"westeurope"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg;afsreguami09161005","name":"StorageContainer;Storage;bhar11-prt-restore-rg;afsreguami09161005","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/afsreguami09161005","protectedItemCount":1,"acquireStorageAccountLock":"Acquire","accessType":"IdentityBased","identityInfo":{"isSystemAssignedIdentity":false,"managedIdentityResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/afs-reg-uami-09161005"},"friendlyName":"afsreguami09161005","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer","sourceLocation":"westeurope"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg;afssami09191425","name":"StorageContainer;Storage;bhar11-prt-restore-rg;afssami09191425","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/afssami09191425","protectedItemCount":1,"acquireStorageAccountLock":"Acquire","accessType":"IdentityBased","identityInfo":{"isSystemAssignedIdentity":true},"friendlyName":"afssami09191425","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer","sourceLocation":"westeurope"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg;afsuami09191425","name":"StorageContainer;Storage;bhar11-prt-restore-rg;afsuami09191425","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/afsuami09191425","protectedItemCount":2,"acquireStorageAccountLock":"Acquire","accessType":"IdentityBased","identityInfo":{"isSystemAssignedIdentity":true},"friendlyName":"afsuami09191425","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer","sourceLocation":"westeurope"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg;bhar11msireproa1","name":"StorageContainer;Storage;bhar11-prt-restore-rg;bhar11msireproa1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/bhar11msireproa1","protectedItemCount":0,"acquireStorageAccountLock":"Acquire","accessType":"IdentityBased","identityInfo":{"isSystemAssignedIdentity":false,"managedIdentityResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/bhar11-msi-repro-uami-0918"},"friendlyName":"bhar11msireproa1","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer","sourceLocation":"westeurope"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg;bhar11msireproa2","name":"StorageContainer;Storage;bhar11-prt-restore-rg;bhar11msireproa2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/bhar11msireproa2","protectedItemCount":0,"acquireStorageAccountLock":"Acquire","accessType":"IdentityBased","identityInfo":{"isSystemAssignedIdentity":false,"managedIdentityResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/bhar11-msi-repro-uami-0918"},"friendlyName":"bhar11msireproa2","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer","sourceLocation":"westeurope"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg;bhar11prtolrsakey","name":"StorageContainer;Storage;bhar11-prt-restore-rg;bhar11prtolrsakey","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/bhar11prtolrsakey","protectedItemCount":2,"acquireStorageAccountLock":"Acquire","accessType":"KeyBased","friendlyName":"bhar11prtolrsakey","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer","sourceLocation":"westeurope"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg;bhar11prtolrsakeyps","name":"StorageContainer;Storage;bhar11-prt-restore-rg;bhar11prtolrsakeyps","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/bhar11prtolrsakeyps","protectedItemCount":1,"acquireStorageAccountLock":"Acquire","accessType":"IdentityBased","identityInfo":{"isSystemAssignedIdentity":true},"friendlyName":"bhar11prtolrsakeyps","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer","sourceLocation":"westeurope"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg;bhar11prtolrsasami","name":"StorageContainer;Storage;bhar11-prt-restore-rg;bhar11prtolrsasami","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/bhar11prtolrsasami","protectedItemCount":2,"acquireStorageAccountLock":"Acquire","accessType":"IdentityBased","identityInfo":{"isSystemAssignedIdentity":true},"friendlyName":"bhar11prtolrsasami","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer","sourceLocation":"westeurope"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg;bhar11prtolrsasamips","name":"StorageContainer;Storage;bhar11-prt-restore-rg;bhar11prtolrsasamips","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/bhar11prtolrsasamips","protectedItemCount":3,"acquireStorageAccountLock":"Acquire","accessType":"IdentityBased","identityInfo":{"isSystemAssignedIdentity":true},"friendlyName":"bhar11prtolrsasamips","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer","sourceLocation":"westeurope"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg;bhar11prtolrsauami","name":"StorageContainer;Storage;bhar11-prt-restore-rg;bhar11prtolrsauami","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/bhar11prtolrsauami","protectedItemCount":2,"acquireStorageAccountLock":"Acquire","accessType":"IdentityBased","identityInfo":{"isSystemAssignedIdentity":false,"managedIdentityResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/bhar11-prt-restore-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/bhar11-prt-olr-uami"},"friendlyName":"bhar11prtolrsauami","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer","sourceLocation":"westeurope"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg;bhar11prtolrsauami1","name":"StorageContainer;Storage;bhar11-prt-restore-rg;bhar11prtolrsauami1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/bhar11prtolrsauami1","protectedItemCount":2,"acquireStorageAccountLock":"Acquire","accessType":"IdentityBased","identityInfo":{"isSystemAssignedIdentity":false,"managedIdentityResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/bhar11-prt-restore-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/bhar11-afs-uami-09151013"},"friendlyName":"bhar11prtolrsauami1","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer","sourceLocation":"westeurope"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg;bhar11prtolrsauamips","name":"StorageContainer;Storage;bhar11-prt-restore-rg;bhar11prtolrsauamips","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/bhar11prtolrsauamips","protectedItemCount":3,"acquireStorageAccountLock":"Acquire","accessType":"IdentityBased","identityInfo":{"isSystemAssignedIdentity":false,"managedIdentityResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/bhar11-prt-restore-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/bhar11-afs-uami-09151013"},"friendlyName":"bhar11prtolrsauamips","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer","sourceLocation":"westeurope"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg;bhar11prtolrtgtsami","name":"StorageContainer;Storage;bhar11-prt-restore-rg;bhar11prtolrtgtsami","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/bhar11prtolrtgtsami","protectedItemCount":0,"acquireStorageAccountLock":"Acquire","accessType":"IdentityBased","identityInfo":{"isSystemAssignedIdentity":true},"friendlyName":"bhar11prtolrtgtsami","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer","sourceLocation":"westeurope"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg;bhar11prtolrtgtuami","name":"StorageContainer;Storage;bhar11-prt-restore-rg;bhar11prtolrtgtuami","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/bhar11prtolrtgtuami","protectedItemCount":0,"acquireStorageAccountLock":"Acquire","accessType":"IdentityBased","identityInfo":{"isSystemAssignedIdentity":false,"managedIdentityResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/bhar11-prt-restore-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/bhar11-prt-olr-uami"},"friendlyName":"bhar11prtolrtgtuami","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer","sourceLocation":"westeurope"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg;climsilive09191401","name":"StorageContainer;Storage;bhar11-prt-restore-rg;climsilive09191401","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/climsilive09191401","protectedItemCount":7,"acquireStorageAccountLock":"Acquire","accessType":"IdentityBased","identityInfo":{"isSystemAssignedIdentity":false,"managedIdentityResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/bhar11-afs-uami-09151013"},"friendlyName":"climsilive09191401","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer","sourceLocation":"westeurope"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '22917' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 21 Sep 2026 06:58:16 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=d5f45f9e-867c-4805-9aba-55121e6bdbb8/westeurope/d2c5eb3a-d6a2-4da7-a23f-289663904eda + x-ms-ratelimit-remaining-subscription-resource-requests: + - '249' + x-msedge-ref: + - 'Ref A: EF6B8CC76C6B43C4AC524170B1ABFF21 Ref B: PNQ231110908029 Ref C: 2026-09-21T06:58:15Z' + status: + code: 200 + message: OK +- request: + body: '{"properties": {"friendlyName": "afsuami09191425", "backupManagementType": + "AzureStorage", "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/afsuami09191425", + "resourceGroup": "bhar11-prt-restore-rg", "operationType": "Reregister", "accessType": + "IdentityBased", "identityInfo": {"isSystemAssignedIdentity": false, "managedIdentityResourceId": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/afs-test-uami-09191425"}, + "containerType": "StorageContainer"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + Content-Length: + - '660' + Content-Type: + - application/json + ParameterSetName: + - -g -v --backup-management-type --workload-type --storage-account --access-type + --mi-user-assigned --yes + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.41.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bbhar11-prt-restore-rg%3Bafsuami09191425?api-version=2026-07-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg;afsuami09191425/operationsStatus/a65651ae-f051-4b0c-b202-99ded2ba78e0?api-version=2019-05-13-preview&t=639255706981169344&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=XCPSxjGqwOO2mDR2kq8EV7EyZ-AMHKJrgaoFk7CUMgx0Ydrw6FYu3gjHyN8LBmsx2O5XckSSy9GpQNuaXvk8hY7FVEO0wlMmwoV6AkN8R9IwxrR-J6q6WsLLCH73BSPDI-CWZ0f3Sx0LBA5IhRLmKvGumPzTb4_aeKvgAMg1RMiPRd79FPVDh9S8nTo6HGl_0KbSTOgnxorqKPlGNtoDs2XYEhN5uTyYIVklRc4kSDAN2yjU-e7yrnmGpwiv24FBIBtAFSkA-kiA3xUTDxtmE8ZB-XFTz2QklEvc9So8zhOrErggaFZH8XlUZztAgJH-K7erApyDgKJXchShZi_-XQ&h=UAqZT5PoakNOlQkONesDVWm3HEeaiXn9ADLjvyhfGKA + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 21 Sep 2026 06:58:17 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg;afsuami09191425/operationResults/a65651ae-f051-4b0c-b202-99ded2ba78e0?api-version=2026-07-01&t=639255706981169344&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=xzATKE-MmGJqE4sj8XfwkeLWHhjmBKtMWeUj5paOSjdo5wC7BRWaxBRsJTSKu4x_J4mxbSGOYm418HycnXJKLpmgMxGTri7qDj59F6Q9_j6lmjgFGBqmRdzwVjsmoScLXhwwCuwZLtRBiMgzfVngEIKDPJ0h7rsck8TUxUGD75AoQ2H5QrHSEQAl7ZSKmLS1wBp-6TU3Ta421TojcezjcD-Gw9pzrWb5rhox0nZZPrBCi6K8VG3ri7iVSwsGIU3rjQjRgfi6FPgn51DYAW0dCi76CJT_Ec62wNCWvk9zbWRrKlNjOTAoBLEVXlYPGDThO7KkTtJXnH5LixlwuimGXg&h=9NO5_cUzxYHQvNO_RC-1Sjm--Rll6hWlm2SJLg-HFz0 + 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=d5f45f9e-867c-4805-9aba-55121e6bdbb8/westeurope/0ace68cb-041b-49c1-9dc7-f2335ce9636a + x-ms-ratelimit-remaining-subscription-global-writes: + - '11999' + x-ms-ratelimit-remaining-subscription-writes: + - '799' + x-msedge-ref: + - 'Ref A: 49A0AEC1992942609A526C9D4D2AC788 Ref B: PNQ231110906042 Ref C: 2026-09-21T06:58:16Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -g -v --backup-management-type --workload-type --storage-account --access-type + --mi-user-assigned --yes + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.41.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bbhar11-prt-restore-rg%3Bafsuami09191425/operationResults/a65651ae-f051-4b0c-b202-99ded2ba78e0?api-version=2026-07-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg;afsuami09191425/operationsStatus/a65651ae-f051-4b0c-b202-99ded2ba78e0?api-version=2019-05-13-preview&t=639255706993186002&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=xw1GRUjR2ENNaQlXimqJleJKg_LdOLINy-PxGlLP2SEeqflVp4ta5od2Ab3M2WRG2698lXb4DuHWrfQ8yQPOJpkMW-6IWlVVy4aXF5gQHnZcaM83nNID0THd9H_ZeEgS1jmich72tNGtHsiPd8sWftBPNWkbPDoOfMgtoSim8cFFSfZy3EYiJwPhUBPAvo3Jr2Rx4qa-tEQnywHwMi00CD32E_1pQINq6hCPONDlIYpzPotp-5ckfieohRZoXayfKeAMjqe0OLRbs5nRxQxjMblPqEYaf1eReU4c58Ss7hagyb2Im0EukRI9Gxr6JkYYqN3K3J88U6BjRcUyQ5mdPA&h=YUlpsaGIk5gWnQXVt53FcB3dYJPjfvt6V9QzNBFr8pk + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 21 Sep 2026 06:58:19 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg;afsuami09191425/operationResults/a65651ae-f051-4b0c-b202-99ded2ba78e0?api-version=2026-07-01&t=639255706993342166&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=mni6F214jvG5dYqzkDb4p9DCu1cjmnUmaEs7BfDIparb9YDO60tFWYCP0pkMkpu7jzze-zmLVfOOBwvt3VhMQebouo69PBW7OffKhzTThdrBVFFalKFGgJQKjRnrKnQtCgrPRwTaG6G6bt4xkcByH1A5h0JTO8BCBuR66kx0-yMSVTHSv4h_tgTTVruAJxvUsHPNpzA98i-3BHWwCtEIllR-awIypb_SaBJMSWTiVOGLocwWoOTp25h5Lu1oBvy8SRp2ApIZXXyRSzKOVDCXH7fic38TSxwqUEorPkEF8QYnxq1rp4dZ1s3grVv_AgyPL6X0Bt8Y0iovr3RJtzPIcw&h=Srl0hgshkLmbRbgflcFv2LlnF0Kdzp9ENepIDcma0ak + 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=d5f45f9e-867c-4805-9aba-55121e6bdbb8/westeurope/28d1db45-6d5f-4ab1-a87a-8969a5e764bc + x-ms-ratelimit-remaining-subscription-resource-requests: + - '249' + x-msedge-ref: + - 'Ref A: A1FDC75078A743C1A282D10F9CDB4B2A Ref B: PNQ231110909029 Ref C: 2026-09-21T06:58:18Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -g -v --backup-management-type --workload-type --storage-account --access-type + --mi-user-assigned --yes + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.41.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bbhar11-prt-restore-rg%3Bafsuami09191425/operationResults/a65651ae-f051-4b0c-b202-99ded2ba78e0?api-version=2026-07-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg;afsuami09191425/operationsStatus/a65651ae-f051-4b0c-b202-99ded2ba78e0?api-version=2019-05-13-preview&t=639255707054752580&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=wpVkwBFEBYuqXq9ux53jeqcL39SHdvjHLz0B2K8eikZiw1i70TmzwbbgLprAz2JhBaW3vZguCpD9I_kFmr6esf3SK0fwMeyNvWdFY_QAiNRHAo0snteq1wgl-h6joZTWBHK3s0bJbftj7swLY48eHbzn8W_Mt4a7SBAd8b1SFayl3w0pj3xcaacqcCAj4st-VQNibKdbGue9t7CEGCfAOPJ_3JCyO-PIw86nVVvN7V2SKnBkZGoHH5YF24G0KX1N1xIT6c_SvheOQPOQu5ivEncajCMxXiJbVpUEbqFn8KLBe676G115ikyzUvjyVGUhvZS3P5fEAeWPesl2j3mkzA&h=bgLypL7JKjrPyvd_Kyck76U1eSR8_tx8I6dDP7oVp7o + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 21 Sep 2026 06:58:24 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg;afsuami09191425/operationResults/a65651ae-f051-4b0c-b202-99ded2ba78e0?api-version=2026-07-01&t=639255707054752580&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=1rBy_GongfxVRQ1xj05sT5XK-BqQ6v7jY_5KXwBFKlaXh893o7BzLQ6t12jxBqjm5FRJ1H-9uk-HF2V6B31PBcIv8XltCmSETU9b_sTImg3YyEEznvzm1q3-PJ-ahh1ggNa-DkVub7xeweXg2Pa4CeX8VIUxEnu7wGbmYLobwPxmieOdomzL31j0XDCAbmXN2KZVjITJXnDQIUcYFJGa1sTMGVJsUacqj-1W74gHh8dabz5ZuffnxAaVXu9qfJyniyWA_yR3klYoPCfPJz-GBjTxCguANpOe3y_zP2gh6h9T2MF_gO1D2jPG3Lp9juyW8vbrOGKLFSbS_rDHaAOL_g&h=cWcVuqAw9IzlfNIslndbUaBEeJXwwYvYY6V8H_v2-tY + 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=d5f45f9e-867c-4805-9aba-55121e6bdbb8/westeurope/f99d6ee3-e7e3-4f8b-bce9-23eb2cb2434e + x-ms-ratelimit-remaining-subscription-resource-requests: + - '249' + x-msedge-ref: + - 'Ref A: DB7D29E0D969478F8D99733A8A2F761A Ref B: PNQ231110906060 Ref C: 2026-09-21T06:58:24Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -g -v --backup-management-type --workload-type --storage-account --access-type + --mi-user-assigned --yes + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.41.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bbhar11-prt-restore-rg%3Bafsuami09191425/operationResults/a65651ae-f051-4b0c-b202-99ded2ba78e0?api-version=2026-07-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg;afsuami09191425/operationsStatus/a65651ae-f051-4b0c-b202-99ded2ba78e0?api-version=2019-05-13-preview&t=639255707116076101&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=n0OqWJFlQX-OmG_i2YJ2tcGLt8se7anoRIsW_KmJJnHGLQZAwDqyI16N8_DFCVe7G-tebnhNrleFezftM-kPg3uuPPVeZpT7iJyv4Ar2eknlF_UWwX1qzdEQ15rrwvb4m3lPPXpo8Zwg0i-OXkPULgEC812_NxKqu6TpFqzsaD_gv39Bnv6bx-ZeSAzAH9JJhCy3gcW1Liuk46-A28WhJ2jIIaT_MZAUx7EUul7MLsNJv6HsxsXEltJnJRyK2g4m-SjwXBpwosdgCcL67IlJI_pnYd6J0gfFKdpBBEcbrkqntARqreZHHEjCZa7pPyRiB4CoC8MHFBr5WmNJhGD66Q&h=NQBuoLdlS6MRGqtVPNGB0N1MlZTMK6L-xEOIFDNng6c + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 21 Sep 2026 06:58:30 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg;afsuami09191425/operationResults/a65651ae-f051-4b0c-b202-99ded2ba78e0?api-version=2026-07-01&t=639255707116076101&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=uJ4uHqy4NMkUAyTYmv8rlGXYsVYb5CmERppwcvqYWA193enX2APdEWjX4MY2tUW_O94vzeC1Y9XNodjVSwlbNJ8kXxFk7bJLhHdKkf5g2gvuc3ruUv28P9Bz0hocTEKn0-zs7jBZH-jpuXPNWeQwdILKcfhoXSdRweGrv0vdaYpMaXknBSDtJYzCwo592Jzf-4oYr8BaZccIeF2GbHIR80_PInj58NjaFNOfgpO_FiwtG-Nf0D06y-PPZ2a_4i9P1jKhbByFmszcTu4H4vvkOTkbrbxRDYqGKM-hAcPBgHDijPceymYhj_23BVrEz7NBja5Jp0Y6F3Lm6PBoYzwQyQ&h=tVdk8IRXkNlOb9VYkVfvnQaH8Bdwsbm2Oyh5gPkl6K0 + 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=d5f45f9e-867c-4805-9aba-55121e6bdbb8/westeurope/5fd6d917-485a-4ffa-b7f1-b46a73aa936a + x-ms-ratelimit-remaining-subscription-resource-requests: + - '249' + x-msedge-ref: + - 'Ref A: 93C966F5B89F4CC291B3A4C287C5181A Ref B: PNQ231110906042 Ref C: 2026-09-21T06:58:30Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -g -v --backup-management-type --workload-type --storage-account --access-type + --mi-user-assigned --yes + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.41.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bbhar11-prt-restore-rg%3Bafsuami09191425/operationResults/a65651ae-f051-4b0c-b202-99ded2ba78e0?api-version=2026-07-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg;afsuami09191425/operationsStatus/a65651ae-f051-4b0c-b202-99ded2ba78e0?api-version=2019-05-13-preview&t=639255707177531244&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=rLcm2dZM-GTQ6lSXfG9TqIAkT9zP5FO_OswXirzA9BpCrngQ4sWv5kpaHwxkejl390ZNDJJeNENjiZK90X0vbBiAyHZ5vFrQfKvA6hHglZrE4D9qFmMjaGvCcF9FZ7EeaVquTjBqXi88n9XO2CE3FHwu3M0y6q4eGXQ0vKiOaie44HM9-bMd4dU5VO3H-zKK7CEGrwYKQRHtxjhI1-AhbmQf_jc0QrjjooaSBPlbbBRvKAnDgcvIgUE0YDX5uTD4iCRsOr0WMAvgVtpTmsKCq6ulMLM43eXBs6c98JSMZAdCae2pKvnledD6-X0HdGGfzK7aBDDtkIpixdXgYrCypQ&h=6AlOKRLeF5h5YUFg2ms_veWt2mjZCkbQcZuSp7_kRes + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 21 Sep 2026 06:58:37 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg;afsuami09191425/operationResults/a65651ae-f051-4b0c-b202-99ded2ba78e0?api-version=2026-07-01&t=639255707177687526&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=Z7PNFJ5iAbq2TtPoUwXHSFmNo-KUTVToG26E6QglsbDPq5ibjQrE791Vg9WWXPXGegxDHu0hOqnTpsT2bzhlLucD-0nhG5VV_y9wLA1rnahVHlvGkhMhmpJOlYS4pIw3NCljmFA3OF36LWe8mJyqycJvhEXHS-FOLJurPwAiztmczLCx4P0GBZrDWHLjY-VElmlFK-tiSck33OcIs47OG-rg-uTzqgMq6x6GKh5zVvyrq3G9GmPxPJsJB1bX8yFX642cWTLVeai3jATFSiPH6EQMhzdv7XlVN8_ePyvohfpbHJYSGmaAZiW66sTnu_jSZzJkbsJ3D3DaTicHmAWuBA&h=QCjM3c1WHMhIgr6WF0pg52rR5pPTH4yHdhypXAL_5os + 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=d5f45f9e-867c-4805-9aba-55121e6bdbb8/westeurope/05a6246e-2633-456c-a870-350b8f00ffac + x-ms-ratelimit-remaining-subscription-resource-requests: + - '249' + x-msedge-ref: + - 'Ref A: E6092EB3A365410FA6BF27E4A61AA984 Ref B: PNQ231110907023 Ref C: 2026-09-21T06:58:37Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -g -v --backup-management-type --workload-type --storage-account --access-type + --mi-user-assigned --yes + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.41.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bbhar11-prt-restore-rg%3Bafsuami09191425/operationResults/a65651ae-f051-4b0c-b202-99ded2ba78e0?api-version=2026-07-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg;afsuami09191425/operationsStatus/a65651ae-f051-4b0c-b202-99ded2ba78e0?api-version=2019-05-13-preview&t=639255707236848986&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=O7QngKp8bizYSBje0_zfV6AC8rJRZwfkf3RrAhX6lf9u_vloAkcljF5CtlAXZITbmsCSf-xBIXJy03Eg4n2biHq-a87_px2205Z6FY1baK3OKxwnK82DM-Vb4nVMlVgLhwpqBUwbbV3ReK3BWduFe66X-Eaf6bADmo93P4kxmiYEjOnljWsNdj9xiT-hW5bvpwmTgguVYUuxy1X2frsXNQmk89HqAnCwOFc-28hZvptAOs4vvxV9tv6mIz1aMj636KedvJ5WrVNZg9qItKTtASLB3rpmu8afueneO4towRucdOaYdK8WvGpmb7_TLK7aQV742lS51vDr_DDsCYm5DA&h=xr-7HCnxx-c7Rk4Sk64_oT28B6b3qlNOb9gG1teIaPE + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 21 Sep 2026 06:58:42 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg;afsuami09191425/operationResults/a65651ae-f051-4b0c-b202-99ded2ba78e0?api-version=2026-07-01&t=639255707236848986&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=YNgFbKewZYzJl8vT_oeOENihrKCnABOH2q4qq3BD2h-N5ptO8oFHjDCV21sGWTBmZ71JhQsJJURUYvh5WXdmKpdKVAFG1RGyKOGwxWZtcF3U0ZZUIYBtOwfav2IDZj0eiojf03EY2uvM84M3C7FU8iPEKdw9-xt4nbvZyQU3UUswO81ae6AmfahxjDEIym3IJd4y6dPPLVwCuMKeWC1MOeP61tXzWiPMWfChcTyhSMLy1ky9ofUSMpojOIzSIwo9513hoE_DJeKWH0V0BHpDexYLcJR91ceZQ8YPSzI5-baMP4Xft2v-V7NFLZKDFMYTB8t_YYxhAKQQ67_Yl7p4zQ&h=KQVqlNLMkO_fuWAAAriB25bgnYPWQtpPFVxWvLj0JVs + 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=d5f45f9e-867c-4805-9aba-55121e6bdbb8/westeurope/b741b014-0428-4342-9c0d-1f7c26035ff3 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '249' + x-msedge-ref: + - 'Ref A: 3734D30925B34D6BACA062230C4629E1 Ref B: PNQ231110907062 Ref C: 2026-09-21T06:58:43Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -g -v --backup-management-type --workload-type --storage-account --access-type + --mi-user-assigned --yes + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.41.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bbhar11-prt-restore-rg%3Bafsuami09191425/operationResults/a65651ae-f051-4b0c-b202-99ded2ba78e0?api-version=2026-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg;afsuami09191425","name":"StorageContainer;Storage;bhar11-prt-restore-rg;afsuami09191425","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/afsuami09191425","protectedItemCount":2,"acquireStorageAccountLock":"Acquire","accessType":"IdentityBased","identityInfo":{"isSystemAssignedIdentity":false,"managedIdentityResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/afs-test-uami-09191425"},"friendlyName":"afsuami09191425","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer","sourceLocation":"westeurope"}}' + headers: + cache-control: + - no-cache + content-length: + - '1100' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 21 Sep 2026 06:58:49 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=d5f45f9e-867c-4805-9aba-55121e6bdbb8/westeurope/e0ce376e-24a5-471d-81f7-cf0bd28f2815 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '249' + x-msedge-ref: + - 'Ref A: EF538463FBDF4008A00294C305566A85 Ref B: PNQ231110909036 Ref C: 2026-09-21T06:58:49Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -g -v --backup-management-type --workload-type --storage-account --access-type + --mi-user-assigned --yes + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.41.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupProtectionContainers?api-version=2026-07-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20status%20eq%20%27Registered%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg-tgt;bhar11prtalr5sasami","name":"StorageContainer;Storage;bhar11-prt-restore-rg-tgt;bhar11prtalr5sasami","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg-tgt/providers/Microsoft.Storage/storageAccounts/bhar11prtalr5sasami","protectedItemCount":2,"acquireStorageAccountLock":"Acquire","accessType":"IdentityBased","identityInfo":{"isSystemAssignedIdentity":true},"friendlyName":"bhar11prtalr5sasami","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer","sourceLocation":"westeurope"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg-tgt;bhar11prtalr5satgt","name":"StorageContainer;Storage;bhar11-prt-restore-rg-tgt;bhar11prtalr5satgt","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg-tgt/providers/Microsoft.Storage/storageAccounts/bhar11prtalr5satgt","protectedItemCount":0,"acquireStorageAccountLock":"Acquire","accessType":"IdentityBased","identityInfo":{"isSystemAssignedIdentity":false,"managedIdentityResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/bhar11-prt-restore-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/bhar11-afs-uami-09151013"},"friendlyName":"bhar11prtalr5satgt","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer","sourceLocation":"westeurope"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg-tgt;bhar11prtalr5sauami","name":"StorageContainer;Storage;bhar11-prt-restore-rg-tgt;bhar11prtalr5sauami","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg-tgt/providers/Microsoft.Storage/storageAccounts/bhar11prtalr5sauami","protectedItemCount":2,"acquireStorageAccountLock":"Acquire","accessType":"IdentityBased","identityInfo":{"isSystemAssignedIdentity":false,"managedIdentityResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/bhar11-prt-restore-rg-tgt/providers/Microsoft.ManagedIdentity/userAssignedIdentities/bhar11-prt-alr5-uami"},"friendlyName":"bhar11prtalr5sauami","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer","sourceLocation":"westeurope"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg;afskey09191425","name":"StorageContainer;Storage;bhar11-prt-restore-rg;afskey09191425","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/afskey09191425","protectedItemCount":1,"acquireStorageAccountLock":"Acquire","accessType":"IdentityBased","identityInfo":{"isSystemAssignedIdentity":false,"managedIdentityResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/bhar11-prt-restore-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/afs-test-uami-09191425"},"friendlyName":"afskey09191425","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer","sourceLocation":"westeurope"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg;afsregkey09161005","name":"StorageContainer;Storage;bhar11-prt-restore-rg;afsregkey09161005","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/afsregkey09161005","protectedItemCount":1,"acquireStorageAccountLock":"Acquire","accessType":"KeyBased","friendlyName":"afsregkey09161005","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer","sourceLocation":"westeurope"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg;afsregsami09161005","name":"StorageContainer;Storage;bhar11-prt-restore-rg;afsregsami09161005","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/afsregsami09161005","protectedItemCount":1,"acquireStorageAccountLock":"Acquire","accessType":"IdentityBased","identityInfo":{"isSystemAssignedIdentity":true},"friendlyName":"afsregsami09161005","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer","sourceLocation":"westeurope"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg;afsreguami09161005","name":"StorageContainer;Storage;bhar11-prt-restore-rg;afsreguami09161005","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/afsreguami09161005","protectedItemCount":1,"acquireStorageAccountLock":"Acquire","accessType":"IdentityBased","identityInfo":{"isSystemAssignedIdentity":false,"managedIdentityResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/afs-reg-uami-09161005"},"friendlyName":"afsreguami09161005","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer","sourceLocation":"westeurope"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg;afssami09191425","name":"StorageContainer;Storage;bhar11-prt-restore-rg;afssami09191425","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/afssami09191425","protectedItemCount":1,"acquireStorageAccountLock":"Acquire","accessType":"IdentityBased","identityInfo":{"isSystemAssignedIdentity":true},"friendlyName":"afssami09191425","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer","sourceLocation":"westeurope"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg;afsuami09191425","name":"StorageContainer;Storage;bhar11-prt-restore-rg;afsuami09191425","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/afsuami09191425","protectedItemCount":2,"acquireStorageAccountLock":"Acquire","accessType":"IdentityBased","identityInfo":{"isSystemAssignedIdentity":false,"managedIdentityResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/afs-test-uami-09191425"},"friendlyName":"afsuami09191425","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer","sourceLocation":"westeurope"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg;bhar11msireproa1","name":"StorageContainer;Storage;bhar11-prt-restore-rg;bhar11msireproa1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/bhar11msireproa1","protectedItemCount":0,"acquireStorageAccountLock":"Acquire","accessType":"IdentityBased","identityInfo":{"isSystemAssignedIdentity":false,"managedIdentityResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/bhar11-msi-repro-uami-0918"},"friendlyName":"bhar11msireproa1","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer","sourceLocation":"westeurope"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg;bhar11msireproa2","name":"StorageContainer;Storage;bhar11-prt-restore-rg;bhar11msireproa2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/bhar11msireproa2","protectedItemCount":0,"acquireStorageAccountLock":"Acquire","accessType":"IdentityBased","identityInfo":{"isSystemAssignedIdentity":false,"managedIdentityResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/bhar11-msi-repro-uami-0918"},"friendlyName":"bhar11msireproa2","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer","sourceLocation":"westeurope"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg;bhar11prtolrsakey","name":"StorageContainer;Storage;bhar11-prt-restore-rg;bhar11prtolrsakey","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/bhar11prtolrsakey","protectedItemCount":2,"acquireStorageAccountLock":"Acquire","accessType":"KeyBased","friendlyName":"bhar11prtolrsakey","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer","sourceLocation":"westeurope"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg;bhar11prtolrsakeyps","name":"StorageContainer;Storage;bhar11-prt-restore-rg;bhar11prtolrsakeyps","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/bhar11prtolrsakeyps","protectedItemCount":1,"acquireStorageAccountLock":"Acquire","accessType":"IdentityBased","identityInfo":{"isSystemAssignedIdentity":true},"friendlyName":"bhar11prtolrsakeyps","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer","sourceLocation":"westeurope"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg;bhar11prtolrsasami","name":"StorageContainer;Storage;bhar11-prt-restore-rg;bhar11prtolrsasami","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/bhar11prtolrsasami","protectedItemCount":2,"acquireStorageAccountLock":"Acquire","accessType":"IdentityBased","identityInfo":{"isSystemAssignedIdentity":true},"friendlyName":"bhar11prtolrsasami","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer","sourceLocation":"westeurope"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg;bhar11prtolrsasamips","name":"StorageContainer;Storage;bhar11-prt-restore-rg;bhar11prtolrsasamips","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/bhar11prtolrsasamips","protectedItemCount":3,"acquireStorageAccountLock":"Acquire","accessType":"IdentityBased","identityInfo":{"isSystemAssignedIdentity":true},"friendlyName":"bhar11prtolrsasamips","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer","sourceLocation":"westeurope"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg;bhar11prtolrsauami","name":"StorageContainer;Storage;bhar11-prt-restore-rg;bhar11prtolrsauami","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/bhar11prtolrsauami","protectedItemCount":2,"acquireStorageAccountLock":"Acquire","accessType":"IdentityBased","identityInfo":{"isSystemAssignedIdentity":false,"managedIdentityResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/bhar11-prt-restore-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/bhar11-prt-olr-uami"},"friendlyName":"bhar11prtolrsauami","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer","sourceLocation":"westeurope"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg;bhar11prtolrsauami1","name":"StorageContainer;Storage;bhar11-prt-restore-rg;bhar11prtolrsauami1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/bhar11prtolrsauami1","protectedItemCount":2,"acquireStorageAccountLock":"Acquire","accessType":"IdentityBased","identityInfo":{"isSystemAssignedIdentity":false,"managedIdentityResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/bhar11-prt-restore-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/bhar11-afs-uami-09151013"},"friendlyName":"bhar11prtolrsauami1","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer","sourceLocation":"westeurope"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg;bhar11prtolrsauamips","name":"StorageContainer;Storage;bhar11-prt-restore-rg;bhar11prtolrsauamips","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/bhar11prtolrsauamips","protectedItemCount":3,"acquireStorageAccountLock":"Acquire","accessType":"IdentityBased","identityInfo":{"isSystemAssignedIdentity":false,"managedIdentityResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/bhar11-prt-restore-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/bhar11-afs-uami-09151013"},"friendlyName":"bhar11prtolrsauamips","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer","sourceLocation":"westeurope"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg;bhar11prtolrtgtsami","name":"StorageContainer;Storage;bhar11-prt-restore-rg;bhar11prtolrtgtsami","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/bhar11prtolrtgtsami","protectedItemCount":0,"acquireStorageAccountLock":"Acquire","accessType":"IdentityBased","identityInfo":{"isSystemAssignedIdentity":true},"friendlyName":"bhar11prtolrtgtsami","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer","sourceLocation":"westeurope"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg;bhar11prtolrtgtuami","name":"StorageContainer;Storage;bhar11-prt-restore-rg;bhar11prtolrtgtuami","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/bhar11prtolrtgtuami","protectedItemCount":0,"acquireStorageAccountLock":"Acquire","accessType":"IdentityBased","identityInfo":{"isSystemAssignedIdentity":false,"managedIdentityResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/bhar11-prt-restore-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/bhar11-prt-olr-uami"},"friendlyName":"bhar11prtolrtgtuami","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer","sourceLocation":"westeurope"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg;climsilive09191401","name":"StorageContainer;Storage;bhar11-prt-restore-rg;climsilive09191401","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/climsilive09191401","protectedItemCount":7,"acquireStorageAccountLock":"Acquire","accessType":"IdentityBased","identityInfo":{"isSystemAssignedIdentity":false,"managedIdentityResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/bhar11-afs-uami-09151013"},"friendlyName":"climsilive09191401","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer","sourceLocation":"westeurope"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '23119' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 21 Sep 2026 06:58:50 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=d5f45f9e-867c-4805-9aba-55121e6bdbb8/westeurope/79e08978-3a02-4b66-a4c3-4051081cd873 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '249' + x-msedge-ref: + - 'Ref A: 187672B27A644175A45CF34245ED0967 Ref B: PNQ231110906042 Ref C: 2026-09-21T06:58:50Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container show + Connection: + - keep-alive + ParameterSetName: + - -g -v -n --backup-management-type + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.41.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupProtectionContainers?api-version=2026-07-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20friendlyName%20eq%20%27afsuami09191425%27%20and%20status%20eq%20%27Registered%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg;afsuami09191425","name":"StorageContainer;Storage;bhar11-prt-restore-rg;afsuami09191425","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/afsuami09191425","protectedItemCount":2,"acquireStorageAccountLock":"Acquire","accessType":"IdentityBased","identityInfo":{"isSystemAssignedIdentity":false,"managedIdentityResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/afs-test-uami-09191425"},"friendlyName":"afsuami09191425","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer","sourceLocation":"westeurope"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '1190' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 21 Sep 2026 06:58:52 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=d5f45f9e-867c-4805-9aba-55121e6bdbb8/westeurope/3524f416-334e-4b45-b3a4-b313aa533e23 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '249' + x-msedge-ref: + - 'Ref A: 1C5C36ECBF624F25B6866C9458E19D7C Ref B: PNQ231110909029 Ref C: 2026-09-21T06:58:51Z' + status: + code: 200 + message: OK +- request: + body: '{"properties": {"enabledProtocols": "SMB", "shareQuota": 100}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - storage share-rm create + Connection: + - keep-alive + Content-Length: + - '62' + Content-Type: + - application/json + ParameterSetName: + - -g --storage-account --name --quota --enabled-protocols + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.41.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/afsuami09191425/fileServices/default/shares/climsirec000001?api-version=2024-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/afsuami09191425/fileServices/default/shares/climsirec000001","name":"climsirec000001","type":"Microsoft.Storage/storageAccounts/fileServices/shares","properties":{"shareQuota":100,"enabledProtocols":"SMB"}}' + headers: + cache-control: + - no-cache + content-length: + - '346' + content-type: + - application/json + date: + - Mon, 21 Sep 2026 06:58:54 GMT + etag: + - '"0x8DF17ADCD01BE25"' + 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=d5f45f9e-867c-4805-9aba-55121e6bdbb8/westeurope/7ea3b347-e808-4e80-a41c-47ff582004e3 + x-ms-ratelimit-remaining-subscription-global-writes: + - '11999' + x-ms-ratelimit-remaining-subscription-writes: + - '799' + x-msedge-ref: + - 'Ref A: A13C804D92E04EE8BA473D3CE5B6DE76 Ref B: PNQ231110909060 Ref C: 2026-09-21T06:58:53Z' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - storage account keys list + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n --query -o + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.41.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/afsuami09191425/listKeys?api-version=2025-08-01&$expand=kerb + response: + body: + string: '{"keys":[{"creationTime":"2026-09-19T08:57:56.6917055Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2026-09-19T08:57:56.6917055Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' + headers: + cache-control: + - no-cache + content-length: + - '260' + content-type: + - application/json + date: + - Mon, 21 Sep 2026 06:58:55 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=d5f45f9e-867c-4805-9aba-55121e6bdbb8/westeurope/74d3703a-c0ea-47bc-b0a8-9ad992039ae8 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '799' + x-msedge-ref: + - 'Ref A: AC89443EFEEA44B38B636CBE6A9BF58E Ref B: PNQ231110907042 Ref C: 2026-09-21T06:58:55Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage directory create + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - --account-name --account-key --share-name --name + User-Agent: + - AZURECLI/2.90.0 azsdk-python-storage-file-share/12.24.0b1 Python/3.13.11 (Windows-11-10.0.26200-SP0) + x-ms-allow-trailing-dot: + - 'true' + x-ms-date: + - Mon, 21 Sep 2026 06:58:56 GMT + x-ms-version: + - '2026-02-06' + method: PUT + uri: https://afsuami09191425.file.core.windows.net/climsirec000001/seed?restype=directory + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Mon, 21 Sep 2026 06:58:56 GMT + etag: + - '"0x8DF17ADCE62DDD6"' + last-modified: + - Mon, 21 Sep 2026 06:58:56 GMT + server: + - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-file-attributes: + - Directory + x-ms-file-change-time: + - '2026-09-21T06:58:56.9266646Z' + x-ms-file-creation-time: + - '2026-09-21T06:58:56.9266646Z' + x-ms-file-id: + - '13835128424026341376' + x-ms-file-last-write-time: + - '2026-09-21T06:58:56.9266646Z' + x-ms-file-parent-id: + - '0' + x-ms-file-permission-key: + - 16923638635434935913*9369723355163693536 + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2026-02-06' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --storage-account --azure-file-share --policy-name + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.41.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupProtectionContainers?api-version=2026-07-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20status%20eq%20%27Registered%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg-tgt;bhar11prtalr5sasami","name":"StorageContainer;Storage;bhar11-prt-restore-rg-tgt;bhar11prtalr5sasami","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg-tgt/providers/Microsoft.Storage/storageAccounts/bhar11prtalr5sasami","protectedItemCount":2,"acquireStorageAccountLock":"Acquire","accessType":"IdentityBased","identityInfo":{"isSystemAssignedIdentity":true},"friendlyName":"bhar11prtalr5sasami","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer","sourceLocation":"westeurope"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg-tgt;bhar11prtalr5satgt","name":"StorageContainer;Storage;bhar11-prt-restore-rg-tgt;bhar11prtalr5satgt","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg-tgt/providers/Microsoft.Storage/storageAccounts/bhar11prtalr5satgt","protectedItemCount":0,"acquireStorageAccountLock":"Acquire","accessType":"IdentityBased","identityInfo":{"isSystemAssignedIdentity":false,"managedIdentityResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/bhar11-prt-restore-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/bhar11-afs-uami-09151013"},"friendlyName":"bhar11prtalr5satgt","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer","sourceLocation":"westeurope"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg-tgt;bhar11prtalr5sauami","name":"StorageContainer;Storage;bhar11-prt-restore-rg-tgt;bhar11prtalr5sauami","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg-tgt/providers/Microsoft.Storage/storageAccounts/bhar11prtalr5sauami","protectedItemCount":2,"acquireStorageAccountLock":"Acquire","accessType":"IdentityBased","identityInfo":{"isSystemAssignedIdentity":false,"managedIdentityResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/bhar11-prt-restore-rg-tgt/providers/Microsoft.ManagedIdentity/userAssignedIdentities/bhar11-prt-alr5-uami"},"friendlyName":"bhar11prtalr5sauami","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer","sourceLocation":"westeurope"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg;afskey09191425","name":"StorageContainer;Storage;bhar11-prt-restore-rg;afskey09191425","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/afskey09191425","protectedItemCount":1,"acquireStorageAccountLock":"Acquire","accessType":"IdentityBased","identityInfo":{"isSystemAssignedIdentity":false,"managedIdentityResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/bhar11-prt-restore-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/afs-test-uami-09191425"},"friendlyName":"afskey09191425","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer","sourceLocation":"westeurope"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg;afsregkey09161005","name":"StorageContainer;Storage;bhar11-prt-restore-rg;afsregkey09161005","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/afsregkey09161005","protectedItemCount":1,"acquireStorageAccountLock":"Acquire","accessType":"KeyBased","friendlyName":"afsregkey09161005","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer","sourceLocation":"westeurope"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg;afsregsami09161005","name":"StorageContainer;Storage;bhar11-prt-restore-rg;afsregsami09161005","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/afsregsami09161005","protectedItemCount":1,"acquireStorageAccountLock":"Acquire","accessType":"IdentityBased","identityInfo":{"isSystemAssignedIdentity":true},"friendlyName":"afsregsami09161005","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer","sourceLocation":"westeurope"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg;afsreguami09161005","name":"StorageContainer;Storage;bhar11-prt-restore-rg;afsreguami09161005","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/afsreguami09161005","protectedItemCount":1,"acquireStorageAccountLock":"Acquire","accessType":"IdentityBased","identityInfo":{"isSystemAssignedIdentity":false,"managedIdentityResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/afs-reg-uami-09161005"},"friendlyName":"afsreguami09161005","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer","sourceLocation":"westeurope"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg;afssami09191425","name":"StorageContainer;Storage;bhar11-prt-restore-rg;afssami09191425","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/afssami09191425","protectedItemCount":1,"acquireStorageAccountLock":"Acquire","accessType":"IdentityBased","identityInfo":{"isSystemAssignedIdentity":true},"friendlyName":"afssami09191425","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer","sourceLocation":"westeurope"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg;afsuami09191425","name":"StorageContainer;Storage;bhar11-prt-restore-rg;afsuami09191425","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/afsuami09191425","protectedItemCount":2,"acquireStorageAccountLock":"Acquire","accessType":"IdentityBased","identityInfo":{"isSystemAssignedIdentity":false,"managedIdentityResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/afs-test-uami-09191425"},"friendlyName":"afsuami09191425","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer","sourceLocation":"westeurope"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg;bhar11msireproa1","name":"StorageContainer;Storage;bhar11-prt-restore-rg;bhar11msireproa1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/bhar11msireproa1","protectedItemCount":0,"acquireStorageAccountLock":"Acquire","accessType":"IdentityBased","identityInfo":{"isSystemAssignedIdentity":false,"managedIdentityResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/bhar11-msi-repro-uami-0918"},"friendlyName":"bhar11msireproa1","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer","sourceLocation":"westeurope"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg;bhar11msireproa2","name":"StorageContainer;Storage;bhar11-prt-restore-rg;bhar11msireproa2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/bhar11msireproa2","protectedItemCount":0,"acquireStorageAccountLock":"Acquire","accessType":"IdentityBased","identityInfo":{"isSystemAssignedIdentity":false,"managedIdentityResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/bhar11-msi-repro-uami-0918"},"friendlyName":"bhar11msireproa2","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer","sourceLocation":"westeurope"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg;bhar11prtolrsakey","name":"StorageContainer;Storage;bhar11-prt-restore-rg;bhar11prtolrsakey","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/bhar11prtolrsakey","protectedItemCount":2,"acquireStorageAccountLock":"Acquire","accessType":"KeyBased","friendlyName":"bhar11prtolrsakey","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer","sourceLocation":"westeurope"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg;bhar11prtolrsakeyps","name":"StorageContainer;Storage;bhar11-prt-restore-rg;bhar11prtolrsakeyps","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/bhar11prtolrsakeyps","protectedItemCount":1,"acquireStorageAccountLock":"Acquire","accessType":"IdentityBased","identityInfo":{"isSystemAssignedIdentity":true},"friendlyName":"bhar11prtolrsakeyps","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer","sourceLocation":"westeurope"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg;bhar11prtolrsasami","name":"StorageContainer;Storage;bhar11-prt-restore-rg;bhar11prtolrsasami","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/bhar11prtolrsasami","protectedItemCount":2,"acquireStorageAccountLock":"Acquire","accessType":"IdentityBased","identityInfo":{"isSystemAssignedIdentity":true},"friendlyName":"bhar11prtolrsasami","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer","sourceLocation":"westeurope"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg;bhar11prtolrsasamips","name":"StorageContainer;Storage;bhar11-prt-restore-rg;bhar11prtolrsasamips","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/bhar11prtolrsasamips","protectedItemCount":3,"acquireStorageAccountLock":"Acquire","accessType":"IdentityBased","identityInfo":{"isSystemAssignedIdentity":true},"friendlyName":"bhar11prtolrsasamips","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer","sourceLocation":"westeurope"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg;bhar11prtolrsauami","name":"StorageContainer;Storage;bhar11-prt-restore-rg;bhar11prtolrsauami","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/bhar11prtolrsauami","protectedItemCount":2,"acquireStorageAccountLock":"Acquire","accessType":"IdentityBased","identityInfo":{"isSystemAssignedIdentity":false,"managedIdentityResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/bhar11-prt-restore-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/bhar11-prt-olr-uami"},"friendlyName":"bhar11prtolrsauami","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer","sourceLocation":"westeurope"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg;bhar11prtolrsauami1","name":"StorageContainer;Storage;bhar11-prt-restore-rg;bhar11prtolrsauami1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/bhar11prtolrsauami1","protectedItemCount":2,"acquireStorageAccountLock":"Acquire","accessType":"IdentityBased","identityInfo":{"isSystemAssignedIdentity":false,"managedIdentityResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/bhar11-prt-restore-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/bhar11-afs-uami-09151013"},"friendlyName":"bhar11prtolrsauami1","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer","sourceLocation":"westeurope"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg;bhar11prtolrsauamips","name":"StorageContainer;Storage;bhar11-prt-restore-rg;bhar11prtolrsauamips","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/bhar11prtolrsauamips","protectedItemCount":3,"acquireStorageAccountLock":"Acquire","accessType":"IdentityBased","identityInfo":{"isSystemAssignedIdentity":false,"managedIdentityResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/bhar11-prt-restore-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/bhar11-afs-uami-09151013"},"friendlyName":"bhar11prtolrsauamips","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer","sourceLocation":"westeurope"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg;bhar11prtolrtgtsami","name":"StorageContainer;Storage;bhar11-prt-restore-rg;bhar11prtolrtgtsami","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/bhar11prtolrtgtsami","protectedItemCount":0,"acquireStorageAccountLock":"Acquire","accessType":"IdentityBased","identityInfo":{"isSystemAssignedIdentity":true},"friendlyName":"bhar11prtolrtgtsami","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer","sourceLocation":"westeurope"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg;bhar11prtolrtgtuami","name":"StorageContainer;Storage;bhar11-prt-restore-rg;bhar11prtolrtgtuami","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/bhar11prtolrtgtuami","protectedItemCount":0,"acquireStorageAccountLock":"Acquire","accessType":"IdentityBased","identityInfo":{"isSystemAssignedIdentity":false,"managedIdentityResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/bhar11-prt-restore-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/bhar11-prt-olr-uami"},"friendlyName":"bhar11prtolrtgtuami","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer","sourceLocation":"westeurope"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg;climsilive09191401","name":"StorageContainer;Storage;bhar11-prt-restore-rg;climsilive09191401","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/climsilive09191401","protectedItemCount":7,"acquireStorageAccountLock":"Acquire","accessType":"IdentityBased","identityInfo":{"isSystemAssignedIdentity":false,"managedIdentityResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/bhar11-afs-uami-09151013"},"friendlyName":"climsilive09191401","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer","sourceLocation":"westeurope"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '23119' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 21 Sep 2026 06:58:57 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=d5f45f9e-867c-4805-9aba-55121e6bdbb8/westeurope/18b0eff8-16e7-498b-8464-47d2b49017e1 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '249' + x-msedge-ref: + - 'Ref A: 39EDCFE1017B4E618C8398F99D85CFEC Ref B: PNQ231110906054 Ref C: 2026-09-21T06:58:57Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --storage-account --azure-file-share --policy-name + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.41.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupProtectableItems?api-version=2026-07-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20workloadType%20eq%20%27AzureFileShare%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/storagecontainer;storage;bhar11-prt-restore-rg;afskey09191425/protectableItems/azurefileshare;keyshare","name":"azurefileshare;keyshare","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentContainerFabricId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/afskey09191425","parentContainerFriendlyName":"afskey09191425","azureFileShareType":"XSMB","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","protectableItemType":"AzureFileShare","friendlyName":"keyshare","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/storagecontainer;storage;bhar11-prt-restore-rg;afsregkey09161005/protectableItems/azurefileshare;keyrestore","name":"azurefileshare;keyrestore","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentContainerFabricId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/afsregkey09161005","parentContainerFriendlyName":"afsregkey09161005","azureFileShareType":"XSMB","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","protectableItemType":"AzureFileShare","friendlyName":"keyrestore","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/storagecontainer;storage;bhar11-prt-restore-rg;afsuami09191425/protectableItems/azurefileshare;uamishare","name":"azurefileshare;uamishare","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentContainerFabricId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/afsuami09191425","parentContainerFriendlyName":"afsuami09191425","azureFileShareType":"XSMB","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","protectableItemType":"AzureFileShare","friendlyName":"uamishare","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/storagecontainer;storage;bhar11-prt-restore-rg;bhar11prtolrsakeyps/protectableItems/azurefileshare;keypsshare","name":"azurefileshare;keypsshare","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentContainerFabricId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/bhar11prtolrsakeyps","parentContainerFriendlyName":"bhar11prtolrsakeyps","azureFileShareType":"XSMB","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","protectableItemType":"AzureFileShare","friendlyName":"keypsshare","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/storagecontainer;storage;bhar11-prt-restore-rg;bhar11prtolrsauami1/protectableItems/azurefileshare;108104bed900ad950f2f61d09a87adcea2bd0f7cbcb5e070cfc5188d5752f52a","name":"azurefileshare;108104bed900ad950f2f61d09a87adcea2bd0f7cbcb5e070cfc5188d5752f52a","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentContainerFabricId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/bhar11prtolrsauami1","parentContainerFriendlyName":"bhar11prtolrsauami1","azureFileShareType":"XSMB","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","protectableItemType":"AzureFileShare","friendlyName":"uami1share","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/storagecontainer;storage;bhar11-prt-restore-rg;bhar11prtolrsauamips/protectableItems/azurefileshare;dcd0ae317ac9c36fb363606306919bca7ef3b33025488af98b4f7a66125ffd37","name":"azurefileshare;dcd0ae317ac9c36fb363606306919bca7ef3b33025488af98b4f7a66125ffd37","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentContainerFabricId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/bhar11prtolrsauamips","parentContainerFriendlyName":"bhar11prtolrsauamips","azureFileShareType":"XSMB","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","protectableItemType":"AzureFileShare","friendlyName":"f1h","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/storagecontainer;storage;bhar11-prt-restore-rg;bhar11prtolrtgtsami/protectableItems/azurefileshare;snapshot-tgt-fs","name":"azurefileshare;snapshot-tgt-fs","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentContainerFabricId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/bhar11prtolrtgtsami","parentContainerFriendlyName":"bhar11prtolrtgtsami","azureFileShareType":"XSMB","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","protectableItemType":"AzureFileShare","friendlyName":"snapshot-tgt-fs","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/storagecontainer;storage;bhar11-prt-restore-rg;bhar11prtolrtgtsami/protectableItems/azurefileshare;vault-tgt-fs","name":"azurefileshare;vault-tgt-fs","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentContainerFabricId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/bhar11prtolrtgtsami","parentContainerFriendlyName":"bhar11prtolrtgtsami","azureFileShareType":"XSMB","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","protectableItemType":"AzureFileShare","friendlyName":"vault-tgt-fs","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/storagecontainer;storage;bhar11-prt-restore-rg;bhar11prtolrtgtuami/protectableItems/azurefileshare;snapshot-tgt-fs","name":"azurefileshare;snapshot-tgt-fs","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentContainerFabricId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/bhar11prtolrtgtuami","parentContainerFriendlyName":"bhar11prtolrtgtuami","azureFileShareType":"XSMB","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","protectableItemType":"AzureFileShare","friendlyName":"snapshot-tgt-fs","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/storagecontainer;storage;bhar11-prt-restore-rg;bhar11prtolrtgtuami/protectableItems/azurefileshare;vault-tgt-fs","name":"azurefileshare;vault-tgt-fs","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentContainerFabricId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/bhar11prtolrtgtuami","parentContainerFriendlyName":"bhar11prtolrtgtuami","azureFileShareType":"XSMB","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","protectableItemType":"AzureFileShare","friendlyName":"vault-tgt-fs","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/storagecontainer;storage;bhar11-prt-restore-rg;climsilive09191401/protectableItems/azurefileshare;fskey2","name":"azurefileshare;fskey2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentContainerFabricId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/climsilive09191401","parentContainerFriendlyName":"climsilive09191401","azureFileShareType":"XSMB","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","protectableItemType":"AzureFileShare","friendlyName":"fskey2","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/storagecontainer;storage;bhar11-prt-restore-rg;climsilive09191401/protectableItems/azurefileshare;fssami2","name":"azurefileshare;fssami2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentContainerFabricId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/climsilive09191401","parentContainerFriendlyName":"climsilive09191401","azureFileShareType":"XSMB","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","protectableItemType":"AzureFileShare","friendlyName":"fssami2","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/storagecontainer;storage;bhar11-prt-restore-rg;climsilive09191401/protectableItems/azurefileshare;fsuami1","name":"azurefileshare;fsuami1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentContainerFabricId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/climsilive09191401","parentContainerFriendlyName":"climsilive09191401","azureFileShareType":"XSMB","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","protectableItemType":"AzureFileShare","friendlyName":"fsuami1","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/storagecontainer;storage;bhar11-prt-restore-rg;climsilive09191401/protectableItems/azurefileshare;msirestore","name":"azurefileshare;msirestore","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentContainerFabricId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/climsilive09191401","parentContainerFriendlyName":"climsilive09191401","azureFileShareType":"XSMB","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","protectableItemType":"AzureFileShare","friendlyName":"msirestore","protectionState":"NotProtected"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '12613' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 21 Sep 2026 06:58:58 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=d5f45f9e-867c-4805-9aba-55121e6bdbb8/westeurope/19aa714f-87f7-450c-9aa9-dac58b3bc137 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '249' + x-msedge-ref: + - 'Ref A: DDF5B0DD3E0741A4944DD139AF932D87 Ref B: PNQ231110908023 Ref C: 2026-09-21T06:58:58Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -v --storage-account --azure-file-share --policy-name + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.41.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bbhar11-prt-restore-rg%3Bafsuami09191425/inquire?$filter=workloadType%20eq%20%27AzureFileShare%27&api-version=2026-07-01 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg;afsuami09191425/operationsStatus/cd2e1103-73d1-4a02-b908-c79146e133a2?api-version=2019-05-13-preview&t=639255707403209757&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=zzmcVBfU9TryqVkfEtvsU4yf4g6Se4kCLcuBel6-suyNNB3WjztUUe7Mxxjo_7QpGSQcTQ4X6ALa8dLIHWOPmNS7DXGrgrwKJDhnGAbOZbGvhTv8H7Er-antbItTtGXhxgg9owztLpxfW24_bAjdlzky5YK4NR8KkR007BQGUUBBDak0Ru0aTxqAAF_GBTkn8AvkaUZzX8jqINzZj5z1-HwsOci8WC-wVEVqHVmFz2fuPfq7CNYEqxFoi2gHa8-JYJIgZCpR31C_DbKIadpbvu4M1ia0peqYQnOD77dGvVB5NS1oNY4skbJXWvI9mAwf6whwZ69OFPzfjmsJ92XIrA&h=F8ny-10nh8RuAAXu2nphWXrrivR8FXPPa14TzvhS4Gk + cache-control: + - no-cache + content-length: + - '0' + date: + - Mon, 21 Sep 2026 06:58:59 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg;afsuami09191425/operationResults/cd2e1103-73d1-4a02-b908-c79146e133a2?api-version=2026-07-01&t=639255707403209757&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=Nk9WsxEbIG0wYfi4AK34yJ2601BwBOlz8a0Dh3QwS64f_vtp8aMsDezL53ITW74hepahPh9aPzs3acvX4Ols9f14alO8id1o5XovoIeN6o8CmoI2WQ4paEx_tLvgrJQ1dADJVigB6aIUoL9bbBFff8fxLy8pEBsZw7L8yq-_oTt2bJWaIjRu3niigBRPATkKg8SwZBIFP0O0T_l2MXoUS8E80ZnhHJa54qtH_ug2qM7qosKH2NKQaeFX_VXNxjSx4hcpQEbb21JxfD6iT0bk7AO0_Gd_-Ac2hdJVes3CnY13IuJQdr5tHPqmKOE5Ue9mlLBh6F_dp_6h9sHnRJaauA&h=JBgNrcVW7xKfmqYtNsYDoklTzetvufW2f9Meig6JnFY + 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=d5f45f9e-867c-4805-9aba-55121e6bdbb8/westeurope/b9998cf8-c470-4283-aea3-7c05afad568a + x-ms-ratelimit-remaining-subscription-global-writes: + - '11999' + x-ms-ratelimit-remaining-subscription-writes: + - '799' + x-msedge-ref: + - 'Ref A: 4F0E150993EC4094AC5AD1AEBAB55FA0 Ref B: PNQ231110907052 Ref C: 2026-09-21T06:58:59Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --storage-account --azure-file-share --policy-name + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.41.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bbhar11-prt-restore-rg%3Bafsuami09191425/operationResults/cd2e1103-73d1-4a02-b908-c79146e133a2?api-version=2026-07-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg;afsuami09191425/operationsStatus/cd2e1103-73d1-4a02-b908-c79146e133a2?api-version=2019-05-13-preview&t=639255707414602912&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=cxJUGnbHF9DuYa_jA8ZKd0b-ysvycCSDEnepd3n6OquIUmCNxr57VSoxMl4bMdIZJf9rOHlBB_ecwPDSeAFSYC6ZWtwp4plTdyjvmZm32XSQTD7vq69_Dl-8sU3APEKMJnipfQKodQ_a6XF7wKEprEUsDf-SqCFN-iN_zNX3Sg8IXhjVYTgM_P5tPrcu1M918TlGbZIXmWydnjaZNvMU-71oLJI3Nmb2fTnba3AOxfHc2vJur5i2xk0VlBxGX6-_iCW1cp8Kd7q2M2SvHJW_jAvLG7j4tGYRsrntv1FrE3QPmOidaSb9i83McI06jpfm_JkU7I04JfUyViluuJ9yLQ&h=NAP9egUZj04YPJIe_oNCHSv3TrLg4suKdE5zfqO22nw + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 21 Sep 2026 06:59:00 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg;afsuami09191425/operationResults/cd2e1103-73d1-4a02-b908-c79146e133a2?api-version=2026-07-01&t=639255707414602912&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=BLUMPGqjWFf2W_3IS3P4883Umv90mDMxoF_Wxw6aFSsnY-m8t7pl2W0xoH5dUqNJlyAjcOeHHqK4wr_t6r0fKHFeavAFtzQHREKOKUq5r920fx71oxiGExJ1vubVu8psXjR-ceUSeBG_M3nZdwOjhUINzOpHO70P27MupHqz8dV9jRSpI7hqGbax3kCMfw4YIrpYKxFG16mzHrc-VagqUPcXXIesnbWrKgla4MeZ_W7a5oUz-D1qxZoOqdG4J7GGKBALrHGUZNAXIDvUMkOH08n0cnxbkC3kqxEkmt839w0EPt1pWRGrldIWKHB-Tma6f_ZJD_IjdezcE7EItGHGDw&h=KuCZosSVzxfo-lkhcOwB7nMvsAmOeu8BNRqBzksIhuU + 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=d5f45f9e-867c-4805-9aba-55121e6bdbb8/westeurope/cc38ff4f-7c64-4f75-acd5-a84a7fb16b24 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '249' + x-msedge-ref: + - 'Ref A: 62F663923456423088BB45900E247EBC Ref B: PNQ231110908040 Ref C: 2026-09-21T06:59:00Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --storage-account --azure-file-share --policy-name + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.41.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bbhar11-prt-restore-rg%3Bafsuami09191425/operationResults/cd2e1103-73d1-4a02-b908-c79146e133a2?api-version=2026-07-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg;afsuami09191425/operationsStatus/cd2e1103-73d1-4a02-b908-c79146e133a2?api-version=2019-05-13-preview&t=639255707475687523&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=DCwAFrNfGoOkXubKccTy5JknlmhN2wyvl_QoET63XeTx0kV-o4dmyhasUAoFhbMi0YxVKwUJvnZ3TXIMgv8Ec93ukkzH8rf7hP-1QEVExjxD3m2t-aJSoEUh27vISfMIdARyYAY6JfdKYp6iGv4KbnH4JTjdORV0tagJ78SwXJIn_TNvy1NfMEkqzXa3UJz8pz-wm2qzpn4rgUwMgBAsD6VpHPaBlqoU_584hQyqdd8hMgsqT2HFRrAB6sPCIvG0CdgPUPiahsSayJI8Bj-IPcTOA_UKRQwdRoBiwO1PyD9uJI2W_QIXoqPJ4r2ZT0pmf78fCTPq338jjqfjm-4tgA&h=DX5S9FzGSpHCJiyFT9R0XQiCfl_XgrM2UN_U6WwpkRQ + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 21 Sep 2026 06:59:07 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg;afsuami09191425/operationResults/cd2e1103-73d1-4a02-b908-c79146e133a2?api-version=2026-07-01&t=639255707475687523&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=AWaJ5wfPBouippLDBbIB6cOZit9LJfNC2ZzSRsnmX0qCX8tSu6QM4Sn49xqiD9uVE1AbPq6xR6MgE6vCT7m-tX98N6tUCLdlO-m07nY6xOmVrR1L33hQLXRiSz2Jd7Asy1rld3iXw6kTXAr_Bkq3xoqvKWmd-ISHVmHinDGK0OXuYZfk2UR-WXLYVZao3VGKJUKRyVH7il0LEnI_69stUjTuioYMy1VeAxScs7dokN2ephOBE9p_K9sIfal5LpX_Vz85nGwsLlHkDT1S3LSRHupXaoavd3vpsvgnQIVHTVP7JHN-xG3fkGfrOTgyIMMypiz8bnUUgwY3icE4ilaqiQ&h=PNTQR_Ca2jS6HFwzaXSi2T01M2ndUcpYBgoNR1R4avE + 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=d5f45f9e-867c-4805-9aba-55121e6bdbb8/westeurope/17bfc7e5-a488-46d0-be6c-e522b9f64ed8 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '249' + x-msedge-ref: + - 'Ref A: 3AEB252B698F4B7A9FCA45F4DEB3B7DD Ref B: PNQ231110907029 Ref C: 2026-09-21T06:59:06Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --storage-account --azure-file-share --policy-name + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.41.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bbhar11-prt-restore-rg%3Bafsuami09191425/operationResults/cd2e1103-73d1-4a02-b908-c79146e133a2?api-version=2026-07-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg;afsuami09191425/operationsStatus/cd2e1103-73d1-4a02-b908-c79146e133a2?api-version=2019-05-13-preview&t=639255707534643233&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=ORNFLNP0ehVQjsFZ-XPLwMT5DdsnRhlExKjXlhnxTzS-7uFnM4rU_noG8Nl0pouU3weUCS_5Xbx5_6SdfEtKKzP5LdHDyf53oizaCcwyAh00ZRPnXmujXUDlWto5obxsnLTFmQ4U9rbmjCGoncYIcCGtL_oAL59bTh5vMofsqaKRqQWIX9kLsGUfQFW8qUrNtqqFbYxuwM4oe40eA5OdffAFq69uF3NuZ0JAgaDzR8zw9paV9LOJpqO7M9HRDxQXT5HR4DW_afnjE7UfDRNHlle7Unmp4DqBhORNDqEu7XSIU05YSAUUPK7IOMQ5hvSIsMFGzdLMUt19NMg9hLIrXg&h=ehm85u1tVm8yONZjuk96CnFEAkgcIAWpPoqiysc2P6o + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 21 Sep 2026 06:59:13 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg;afsuami09191425/operationResults/cd2e1103-73d1-4a02-b908-c79146e133a2?api-version=2026-07-01&t=639255707534643233&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=vWpsqbIgPp9vMUvuh77mtx3e9SeB9DyXdih959dBubC6W3YVTySwMe9896761EzYnBPAXWiK_CY0SuO4eR4rx_-KyMn5COSxPFdtF6nFARePXK7c_cnuQ87fChIps00wotmTrgFxl92zNx00PKU_c6SqyHe4xWkMEBZ10h0Muc1xrZ9uE-joMOBnzzMngxg6kLq321z5Jl18HFEYK69C_87HzAC25dNB3KkaLbvmjBYgtisbFPUW6gDbGCURZZD4And8ygF6gN9Ei-v3Y-Hw3CbhpuIXCzLsX1-NpZLL8o4C5BaNn97M0FeZXGgyvziTG-MrJbrqVmO7RDM9yhoM8w&h=6REL3uN8JGIQHhHIfDKY7AJdD6qwxKWOKQYVXk81Jx4 + 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=d5f45f9e-867c-4805-9aba-55121e6bdbb8/westeurope/2992830f-010c-47aa-8ee7-73d1193f1a19 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '249' + x-msedge-ref: + - 'Ref A: 95FFC8E21EE14E339F31EC51D62CF258 Ref B: PNQ231110907023 Ref C: 2026-09-21T06:59:13Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --storage-account --azure-file-share --policy-name + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.41.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bbhar11-prt-restore-rg%3Bafsuami09191425/operationResults/cd2e1103-73d1-4a02-b908-c79146e133a2?api-version=2026-07-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + date: + - Mon, 21 Sep 2026 06:59:19 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=d5f45f9e-867c-4805-9aba-55121e6bdbb8/westeurope/b49542e5-5259-493a-89f5-ee6cc704ae96 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '249' + x-msedge-ref: + - 'Ref A: 38D396741B21416AA4AA96B11ADD11C9 Ref B: PNQ231110909036 Ref C: 2026-09-21T06:59:18Z' + status: + code: 204 + message: No Content +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --storage-account --azure-file-share --policy-name + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.41.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupProtectableItems?api-version=2026-07-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20workloadType%20eq%20%27AzureFileShare%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/storagecontainer;storage;bhar11-prt-restore-rg;afskey09191425/protectableItems/azurefileshare;keyshare","name":"azurefileshare;keyshare","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentContainerFabricId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/afskey09191425","parentContainerFriendlyName":"afskey09191425","azureFileShareType":"XSMB","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","protectableItemType":"AzureFileShare","friendlyName":"keyshare","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/storagecontainer;storage;bhar11-prt-restore-rg;afsregkey09161005/protectableItems/azurefileshare;keyrestore","name":"azurefileshare;keyrestore","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentContainerFabricId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/afsregkey09161005","parentContainerFriendlyName":"afsregkey09161005","azureFileShareType":"XSMB","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","protectableItemType":"AzureFileShare","friendlyName":"keyrestore","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/storagecontainer;storage;bhar11-prt-restore-rg;afsuami09191425/protectableItems/azurefileshare;e87b827cf821b0e0bc080bd3cc0b18e6705bfb19d5c408cdd95c27c624f99024","name":"azurefileshare;e87b827cf821b0e0bc080bd3cc0b18e6705bfb19d5c408cdd95c27c624f99024","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentContainerFabricId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/afsuami09191425","parentContainerFriendlyName":"afsuami09191425","azureFileShareType":"XSMB","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","protectableItemType":"AzureFileShare","friendlyName":"climsirec000001","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/storagecontainer;storage;bhar11-prt-restore-rg;bhar11prtolrsakeyps/protectableItems/azurefileshare;keypsshare","name":"azurefileshare;keypsshare","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentContainerFabricId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/bhar11prtolrsakeyps","parentContainerFriendlyName":"bhar11prtolrsakeyps","azureFileShareType":"XSMB","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","protectableItemType":"AzureFileShare","friendlyName":"keypsshare","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/storagecontainer;storage;bhar11-prt-restore-rg;bhar11prtolrsauami1/protectableItems/azurefileshare;108104bed900ad950f2f61d09a87adcea2bd0f7cbcb5e070cfc5188d5752f52a","name":"azurefileshare;108104bed900ad950f2f61d09a87adcea2bd0f7cbcb5e070cfc5188d5752f52a","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentContainerFabricId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/bhar11prtolrsauami1","parentContainerFriendlyName":"bhar11prtolrsauami1","azureFileShareType":"XSMB","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","protectableItemType":"AzureFileShare","friendlyName":"uami1share","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/storagecontainer;storage;bhar11-prt-restore-rg;bhar11prtolrsauamips/protectableItems/azurefileshare;dcd0ae317ac9c36fb363606306919bca7ef3b33025488af98b4f7a66125ffd37","name":"azurefileshare;dcd0ae317ac9c36fb363606306919bca7ef3b33025488af98b4f7a66125ffd37","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentContainerFabricId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/bhar11prtolrsauamips","parentContainerFriendlyName":"bhar11prtolrsauamips","azureFileShareType":"XSMB","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","protectableItemType":"AzureFileShare","friendlyName":"f1h","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/storagecontainer;storage;bhar11-prt-restore-rg;bhar11prtolrtgtsami/protectableItems/azurefileshare;snapshot-tgt-fs","name":"azurefileshare;snapshot-tgt-fs","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentContainerFabricId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/bhar11prtolrtgtsami","parentContainerFriendlyName":"bhar11prtolrtgtsami","azureFileShareType":"XSMB","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","protectableItemType":"AzureFileShare","friendlyName":"snapshot-tgt-fs","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/storagecontainer;storage;bhar11-prt-restore-rg;bhar11prtolrtgtsami/protectableItems/azurefileshare;vault-tgt-fs","name":"azurefileshare;vault-tgt-fs","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentContainerFabricId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/bhar11prtolrtgtsami","parentContainerFriendlyName":"bhar11prtolrtgtsami","azureFileShareType":"XSMB","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","protectableItemType":"AzureFileShare","friendlyName":"vault-tgt-fs","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/storagecontainer;storage;bhar11-prt-restore-rg;bhar11prtolrtgtuami/protectableItems/azurefileshare;snapshot-tgt-fs","name":"azurefileshare;snapshot-tgt-fs","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentContainerFabricId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/bhar11prtolrtgtuami","parentContainerFriendlyName":"bhar11prtolrtgtuami","azureFileShareType":"XSMB","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","protectableItemType":"AzureFileShare","friendlyName":"snapshot-tgt-fs","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/storagecontainer;storage;bhar11-prt-restore-rg;bhar11prtolrtgtuami/protectableItems/azurefileshare;vault-tgt-fs","name":"azurefileshare;vault-tgt-fs","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentContainerFabricId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/bhar11prtolrtgtuami","parentContainerFriendlyName":"bhar11prtolrtgtuami","azureFileShareType":"XSMB","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","protectableItemType":"AzureFileShare","friendlyName":"vault-tgt-fs","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/storagecontainer;storage;bhar11-prt-restore-rg;climsilive09191401/protectableItems/azurefileshare;fskey2","name":"azurefileshare;fskey2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentContainerFabricId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/climsilive09191401","parentContainerFriendlyName":"climsilive09191401","azureFileShareType":"XSMB","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","protectableItemType":"AzureFileShare","friendlyName":"fskey2","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/storagecontainer;storage;bhar11-prt-restore-rg;climsilive09191401/protectableItems/azurefileshare;fssami2","name":"azurefileshare;fssami2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentContainerFabricId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/climsilive09191401","parentContainerFriendlyName":"climsilive09191401","azureFileShareType":"XSMB","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","protectableItemType":"AzureFileShare","friendlyName":"fssami2","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/storagecontainer;storage;bhar11-prt-restore-rg;climsilive09191401/protectableItems/azurefileshare;fsuami1","name":"azurefileshare;fsuami1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentContainerFabricId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/climsilive09191401","parentContainerFriendlyName":"climsilive09191401","azureFileShareType":"XSMB","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","protectableItemType":"AzureFileShare","friendlyName":"fsuami1","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/storagecontainer;storage;bhar11-prt-restore-rg;climsilive09191401/protectableItems/azurefileshare;msirestore","name":"azurefileshare;msirestore","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentContainerFabricId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/climsilive09191401","parentContainerFriendlyName":"climsilive09191401","azureFileShareType":"XSMB","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","protectableItemType":"AzureFileShare","friendlyName":"msirestore","protectionState":"NotProtected"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '12729' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 21 Sep 2026 06:59:20 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=d5f45f9e-867c-4805-9aba-55121e6bdbb8/westeurope/4ec12563-d602-459c-ad24-c305a7b87de6 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '249' + x-msedge-ref: + - 'Ref A: 31AFF98DE65046CE9C438613FF86875E Ref B: PNQ231110906025 Ref C: 2026-09-21T06:59:20Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --storage-account --azure-file-share --policy-name + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.41.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupPolicies/bhar11-prt-snapshot-policy?api-version=2026-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupPolicies/bhar11-prt-snapshot-policy","name":"bhar11-prt-snapshot-policy","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureStorage","workLoadType":"AzureFileShare","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2026-09-01T22:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2026-09-01T22:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":27}}' + headers: + cache-control: + - no-cache + content-length: + - '772' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 21 Sep 2026 06:59:21 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=d5f45f9e-867c-4805-9aba-55121e6bdbb8/westeurope/ed0995a1-dd43-4911-83e7-9daffd957c13 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '249' + x-msedge-ref: + - 'Ref A: 033B5566F4B44423AA8DA17392DF751E Ref B: PNQ231110906025 Ref C: 2026-09-21T06:59:21Z' + status: + code: 200 + message: OK +- request: + body: '{"properties": {"protectedItemType": "AzureFileShareProtectedItem", "policyId": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupPolicies/bhar11-prt-snapshot-policy", + "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/afsuami09191425"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + Content-Length: + - '449' + Content-Type: + - application/json + ParameterSetName: + - -g -v --storage-account --azure-file-share --policy-name + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.41.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/storagecontainer%3Bstorage%3Bbhar11-prt-restore-rg%3Bafsuami09191425/protectedItems/azurefileshare%3Be87b827cf821b0e0bc080bd3cc0b18e6705bfb19d5c408cdd95c27c624f99024?api-version=2026-07-01 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/storagecontainer;storage;bhar11-prt-restore-rg;afsuami09191425/protectedItems/azurefileshare;e87b827cf821b0e0bc080bd3cc0b18e6705bfb19d5c408cdd95c27c624f99024/operationsStatus/f53118c9-bb37-4225-9906-7d4c24079d8c?api-version=2026-07-01&t=639255707639715629&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=Wy6mauY1G0x9F88esrDlPkoeVFw1P2hP3HD_SQwKI2AMjS2SJq3R1acg8TYrzWKYc39Ujl-limIQHffDrj7eFCZA4QWiSKfqTH8d0e9C6nxfgKO4DxPTRBjUy5LRBAiZkU0FbnMLdvESu69ujep2c1UFudGUpgCQVII2N5gzkGd91vadZcclhKuOco5xe6K0z8bQ4cNiQlf-j47-ezK3SBq2g8kbaIdudnR_4x0HMFhe2l7VaWrV-teaCrcGX4oVyMb2daUc0V4l7liGl08Se16DHoUSy0dsTlUycqCW3xN7r7rEaoATCR3fuzk7skFwWdBkx7zxiYAJ283UltLLag&h=UI4nJNh7aJKlMNQzxYwbDTZH4EKgfqUrkLtKd08uXtQ + cache-control: + - no-cache + content-length: + - '0' + date: + - Mon, 21 Sep 2026 06:59:23 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/storagecontainer;storage;bhar11-prt-restore-rg;afsuami09191425/protectedItems/azurefileshare;e87b827cf821b0e0bc080bd3cc0b18e6705bfb19d5c408cdd95c27c624f99024/operationResults/f53118c9-bb37-4225-9906-7d4c24079d8c?api-version=2026-07-01&t=639255707639715629&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=KGqZr_8XNjcgeBbHiHqwkeQ2atLmMRGq01k8PmRG55tVP0riCgLgf-1Niw3lONtRlUXTQLj-oTnNTP3UnjuzpnSBUX4PtMoVu-DZzfSFH2KREvat43ayZ-TyBfKeWh1u3gJTw2dWP5oeDjkBti0ztpXXP5R4GFT2-5iRoBRuaxTHemhp9tfpfH0PKyBSL6-WSq6dQ4mSGapLgjM3Tr08JHSdNso5Kjt-bT7svnWKYGgj0BbZ-WZyBGqTZ-kz4ATcMFAwz--aCx_oUqbcUSWa6nu-J04uqGu2A9qaSTr8SrbrXYWBKVH_WdEgrr-LnKvfjwcoiLMbadcSv26t28OeFg&h=RJegntf4pDDN_rS3-CJFndfQQLskrgIdaj226HlBF7E + 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=d5f45f9e-867c-4805-9aba-55121e6bdbb8/westeurope/19d677d6-406c-4c7c-8576-0aa140f8c69c + x-ms-ratelimit-remaining-subscription-global-writes: + - '11999' + x-ms-ratelimit-remaining-subscription-writes: + - '799' + x-msedge-ref: + - 'Ref A: 922EB577B6CE49D5A9CCDCA4F7AA33CF Ref B: PNQ231110908034 Ref C: 2026-09-21T06:59:22Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --storage-account --azure-file-share --policy-name + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.41.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupOperations/f53118c9-bb37-4225-9906-7d4c24079d8c?api-version=2026-07-01 + response: + body: + string: '{"id":"f53118c9-bb37-4225-9906-7d4c24079d8c","name":"f53118c9-bb37-4225-9906-7d4c24079d8c","status":"InProgress","startTime":"2026-09-21T06:59:23.4663255Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 21 Sep 2026 06:59:24 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=d5f45f9e-867c-4805-9aba-55121e6bdbb8/westeurope/adfa7daf-126d-45f0-897c-a37eee4657f5 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '249' + x-msedge-ref: + - 'Ref A: B75A2C4F325E44B391D913B3C58CEDE3 Ref B: PNQ231110908031 Ref C: 2026-09-21T06:59:24Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --storage-account --azure-file-share --policy-name + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.41.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupOperations/f53118c9-bb37-4225-9906-7d4c24079d8c?api-version=2026-07-01 + response: + body: + string: '{"id":"f53118c9-bb37-4225-9906-7d4c24079d8c","name":"f53118c9-bb37-4225-9906-7d4c24079d8c","status":"InProgress","startTime":"2026-09-21T06:59:23.4663255Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 21 Sep 2026 06:59:31 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=d5f45f9e-867c-4805-9aba-55121e6bdbb8/westeurope/f0b6d931-23b4-4e63-831b-c091e05bbddf + x-ms-ratelimit-remaining-subscription-resource-requests: + - '249' + x-msedge-ref: + - 'Ref A: 79026F0013B644A3944A4193946A4BE2 Ref B: PNQ231110906040 Ref C: 2026-09-21T06:59:30Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --storage-account --azure-file-share --policy-name + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.41.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupOperations/f53118c9-bb37-4225-9906-7d4c24079d8c?api-version=2026-07-01 + response: + body: + string: '{"id":"f53118c9-bb37-4225-9906-7d4c24079d8c","name":"f53118c9-bb37-4225-9906-7d4c24079d8c","status":"InProgress","startTime":"2026-09-21T06:59:23.4663255Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 21 Sep 2026 06:59:36 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=d5f45f9e-867c-4805-9aba-55121e6bdbb8/westeurope/49f16998-e328-4394-843e-b54db890786b + x-ms-ratelimit-remaining-subscription-resource-requests: + - '249' + x-msedge-ref: + - 'Ref A: 09800EF7FD3943C8B659B38604CDCA94 Ref B: PNQ231110908040 Ref C: 2026-09-21T06:59:36Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --storage-account --azure-file-share --policy-name + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.41.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupOperations/f53118c9-bb37-4225-9906-7d4c24079d8c?api-version=2026-07-01 + response: + body: + string: '{"id":"f53118c9-bb37-4225-9906-7d4c24079d8c","name":"f53118c9-bb37-4225-9906-7d4c24079d8c","status":"InProgress","startTime":"2026-09-21T06:59:23.4663255Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 21 Sep 2026 06:59:42 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=d5f45f9e-867c-4805-9aba-55121e6bdbb8/westeurope/5eda0a9c-1531-471c-b4e4-9f9dc4898f45 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '249' + x-msedge-ref: + - 'Ref A: 256FC7BA4055418996DF6EE18D68A88D Ref B: PNQ231110907031 Ref C: 2026-09-21T06:59:42Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --storage-account --azure-file-share --policy-name + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.41.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupOperations/f53118c9-bb37-4225-9906-7d4c24079d8c?api-version=2026-07-01 + response: + body: + string: '{"id":"f53118c9-bb37-4225-9906-7d4c24079d8c","name":"f53118c9-bb37-4225-9906-7d4c24079d8c","status":"InProgress","startTime":"2026-09-21T06:59:23.4663255Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 21 Sep 2026 06:59:48 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=d5f45f9e-867c-4805-9aba-55121e6bdbb8/westeurope/efe0be5d-00cd-46b8-b4e7-03de7fa1cc21 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '249' + x-msedge-ref: + - 'Ref A: 4F9F0384305448169631F3C505910135 Ref B: PNQ231110906025 Ref C: 2026-09-21T06:59:48Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --storage-account --azure-file-share --policy-name + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.41.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupOperations/f53118c9-bb37-4225-9906-7d4c24079d8c?api-version=2026-07-01 + response: + body: + string: '{"id":"f53118c9-bb37-4225-9906-7d4c24079d8c","name":"f53118c9-bb37-4225-9906-7d4c24079d8c","status":"InProgress","startTime":"2026-09-21T06:59:23.4663255Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 21 Sep 2026 06:59:54 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=d5f45f9e-867c-4805-9aba-55121e6bdbb8/westeurope/52246a1d-d79d-4cec-9b33-b23acac1edac + x-ms-ratelimit-remaining-subscription-resource-requests: + - '249' + x-msedge-ref: + - 'Ref A: 64F56BD50509474497E1EB8291DEAEF3 Ref B: PNQ231110907031 Ref C: 2026-09-21T06:59:54Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --storage-account --azure-file-share --policy-name + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.41.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupOperations/f53118c9-bb37-4225-9906-7d4c24079d8c?api-version=2026-07-01 + response: + body: + string: '{"id":"f53118c9-bb37-4225-9906-7d4c24079d8c","name":"f53118c9-bb37-4225-9906-7d4c24079d8c","status":"InProgress","startTime":"2026-09-21T06:59:23.4663255Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 21 Sep 2026 07:00:01 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=d5f45f9e-867c-4805-9aba-55121e6bdbb8/westeurope/11e3eeb4-858a-4aeb-82cf-74bfbcba74a5 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '249' + x-msedge-ref: + - 'Ref A: E3A6F8C5C14441FDBB95682D84C84817 Ref B: PNQ231110908062 Ref C: 2026-09-21T07:00:00Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --storage-account --azure-file-share --policy-name + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.41.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupOperations/f53118c9-bb37-4225-9906-7d4c24079d8c?api-version=2026-07-01 + response: + body: + string: '{"id":"f53118c9-bb37-4225-9906-7d4c24079d8c","name":"f53118c9-bb37-4225-9906-7d4c24079d8c","status":"InProgress","startTime":"2026-09-21T06:59:23.4663255Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 21 Sep 2026 07:00: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-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=d5f45f9e-867c-4805-9aba-55121e6bdbb8/westeurope/3c49c4e0-b134-4879-b877-c1cd49f63116 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '249' + x-msedge-ref: + - 'Ref A: C9FE6233156C4AECBB1B391330035FFF Ref B: PNQ231110908042 Ref C: 2026-09-21T07:00:06Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --storage-account --azure-file-share --policy-name + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.41.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupOperations/f53118c9-bb37-4225-9906-7d4c24079d8c?api-version=2026-07-01 + response: + body: + string: '{"id":"f53118c9-bb37-4225-9906-7d4c24079d8c","name":"f53118c9-bb37-4225-9906-7d4c24079d8c","status":"InProgress","startTime":"2026-09-21T06:59:23.4663255Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 21 Sep 2026 07:00:12 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=d5f45f9e-867c-4805-9aba-55121e6bdbb8/westeurope/51e09e9e-de55-4311-9ec2-4dc8f6ca6b60 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '249' + x-msedge-ref: + - 'Ref A: 1CE06A2C6BC24C019AA79E8485328B74 Ref B: PNQ231110906042 Ref C: 2026-09-21T07:00:13Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --storage-account --azure-file-share --policy-name + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.41.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupOperations/f53118c9-bb37-4225-9906-7d4c24079d8c?api-version=2026-07-01 + response: + body: + string: '{"id":"f53118c9-bb37-4225-9906-7d4c24079d8c","name":"f53118c9-bb37-4225-9906-7d4c24079d8c","status":"InProgress","startTime":"2026-09-21T06:59:23.4663255Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 21 Sep 2026 07:00:19 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=d5f45f9e-867c-4805-9aba-55121e6bdbb8/westeurope/828d29d1-8302-4c39-9735-d5ea44899b1a + x-ms-ratelimit-remaining-subscription-resource-requests: + - '249' + x-msedge-ref: + - 'Ref A: 6A062E52E81C44E7A666D59BB8111891 Ref B: PNQ231110908034 Ref C: 2026-09-21T07:00:19Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --storage-account --azure-file-share --policy-name + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.41.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupOperations/f53118c9-bb37-4225-9906-7d4c24079d8c?api-version=2026-07-01 + response: + body: + string: '{"id":"f53118c9-bb37-4225-9906-7d4c24079d8c","name":"f53118c9-bb37-4225-9906-7d4c24079d8c","status":"InProgress","startTime":"2026-09-21T06:59:23.4663255Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 21 Sep 2026 07:00:26 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=d5f45f9e-867c-4805-9aba-55121e6bdbb8/westeurope/5a749d09-abe3-451b-a3c3-df15b380bfdd + x-ms-ratelimit-remaining-subscription-resource-requests: + - '249' + x-msedge-ref: + - 'Ref A: 1093F509C5C243BD93DCB832F3EAF367 Ref B: PNQ231110909031 Ref C: 2026-09-21T07:00:25Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --storage-account --azure-file-share --policy-name + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.41.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupOperations/f53118c9-bb37-4225-9906-7d4c24079d8c?api-version=2026-07-01 + response: + body: + string: '{"id":"f53118c9-bb37-4225-9906-7d4c24079d8c","name":"f53118c9-bb37-4225-9906-7d4c24079d8c","status":"InProgress","startTime":"2026-09-21T06:59:23.4663255Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 21 Sep 2026 07:00:32 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=d5f45f9e-867c-4805-9aba-55121e6bdbb8/westeurope/96ddf82c-d64d-4939-80ad-a6a81cd4578d + x-ms-ratelimit-remaining-subscription-resource-requests: + - '249' + x-msedge-ref: + - 'Ref A: 13152E9B0D77487ABA66C4FC818FECB5 Ref B: PNQ231110907025 Ref C: 2026-09-21T07:00:31Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --storage-account --azure-file-share --policy-name + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.41.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupOperations/f53118c9-bb37-4225-9906-7d4c24079d8c?api-version=2026-07-01 + response: + body: + string: '{"id":"f53118c9-bb37-4225-9906-7d4c24079d8c","name":"f53118c9-bb37-4225-9906-7d4c24079d8c","status":"Succeeded","startTime":"2026-09-21T06:59:23.4663255Z","endTime":"2026-09-21T06:59:23.4663255Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"f4cdac5e-4fae-4c9f-bb4f-4ab02eaec8af"}}' + headers: + cache-control: + - no-cache + content-length: + - '304' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 21 Sep 2026 07:00:37 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=d5f45f9e-867c-4805-9aba-55121e6bdbb8/westeurope/14d7d991-607b-4f61-843c-df0d16024d82 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '249' + x-msedge-ref: + - 'Ref A: B7DC14AAA66C42889DC7656DFF8D8964 Ref B: PNQ231110908060 Ref C: 2026-09-21T07:00:37Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --storage-account --azure-file-share --policy-name + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.41.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupJobs/f4cdac5e-4fae-4c9f-bb4f-4ab02eaec8af?api-version=2026-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupJobs/f4cdac5e-4fae-4c9f-bb4f-4ab02eaec8af","name":"f4cdac5e-4fae-4c9f-bb4f-4ab02eaec8af","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT1M13.5419103S","storageAccountName":"afsuami09191425","storageAccountVersion":"Storage","extendedInfo":{"tasksList":[],"propertyBag":{"File + Share Name":"climsirec000001","Storage Account Name":"afsuami09191425","Policy + Name":"bhar11-prt-snapshot-policy"}},"isUserTriggered":false,"entityFriendlyName":"climsirec000001","backupManagementType":"AzureStorage","operation":"ConfigureBackup","status":"Completed","startTime":"2026-09-21T06:59:23.4663255Z","endTime":"2026-09-21T07:00:37.0082358Z","activityId":"ea37cde8-b589-11f1-bd01-6045bda581f9"}}' + headers: + cache-control: + - no-cache + content-length: + - '909' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 21 Sep 2026 07:00:39 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=d5f45f9e-867c-4805-9aba-55121e6bdbb8/westeurope/c9817abf-0a24-40b8-a5b0-61fe626bf526 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '249' + x-msedge-ref: + - 'Ref A: EBBAE66CED5148FF9104687D8180B8CC Ref B: PNQ231110908036 Ref C: 2026-09-21T07:00:39Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item list + Connection: + - keep-alive + ParameterSetName: + - -g -v -c --backup-management-type --workload-type --query + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.41.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupProtectedItems?api-version=2026-07-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20itemType%20eq%20%27AzureFileShare%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg-tgt;bhar11prtalr5sasami/protectedItems/AzureFileShare;E550032D1014827612A3C5E16979A659325DC79E1D281E67829CC251A7BE04EA","name":"AzureFileShare;E550032D1014827612A3C5E16979A659325DC79E1D281E67829CC251A7BE04EA","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"vault-tgt-fs","fileShareProtocol":"SMB","protectionStatus":"Unhealthy","protectionState":"IRPending","lastBackupStatus":"Failed","lastBackupTime":"2026-09-20T22:19:13.8603389Z","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;Storage;bhar11-prt-restore-rg-tgt;bhar11prtalr5sasami","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg-tgt/providers/Microsoft.Storage/storageAccounts/bhar11prtalr5sasami","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupPolicies/bhar11-prt-vault-policy","vaultId":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv","isArchiveEnabled":false,"softDeleteRetentionPeriod":0,"sourceLocation":"westeurope","sourceSideScanInfo":{"sourceSideScanStatus":"NotApplicable","sourceSideScanSummary":"NotApplicable"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg-tgt;bhar11prtalr5sasami/protectedItems/AzureFileShare;12DBCFE6781E105BD2C0BC76884976F581BC008C108BA6104C4DFE09DBEEE99F","name":"AzureFileShare;12DBCFE6781E105BD2C0BC76884976F581BC008C108BA6104C4DFE09DBEEE99F","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"snapshot-tgt-fs","fileShareProtocol":"SMB","protectionStatus":"Unhealthy","protectionState":"IRPending","lastBackupStatus":"Failed","lastBackupTime":"2026-09-20T22:19:14.0832404Z","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;Storage;bhar11-prt-restore-rg-tgt;bhar11prtalr5sasami","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg-tgt/providers/Microsoft.Storage/storageAccounts/bhar11prtalr5sasami","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupPolicies/bhar11-prt-snapshot-policy","vaultId":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv","isArchiveEnabled":false,"softDeleteRetentionPeriod":0,"sourceLocation":"westeurope","sourceSideScanInfo":{"sourceSideScanStatus":"NotApplicable","sourceSideScanSummary":"NotApplicable"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg-tgt;bhar11prtalr5sauami/protectedItems/AzureFileShare;73F4199E2DCB3E867AB65F4D77BCA7776B3919D56FBE189F79DB8EA28FAE048A","name":"AzureFileShare;73F4199E2DCB3E867AB65F4D77BCA7776B3919D56FBE189F79DB8EA28FAE048A","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"vault-tgt-fs","fileShareProtocol":"SMB","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Completed","lastBackupTime":"2026-09-20T22:19:14.1415854Z","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;Storage;bhar11-prt-restore-rg-tgt;bhar11prtalr5sauami","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg-tgt/providers/Microsoft.Storage/storageAccounts/bhar11prtalr5sauami","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupPolicies/bhar11-prt-vault-policy","vaultId":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv","isArchiveEnabled":false,"softDeleteRetentionPeriod":0,"sourceLocation":"westeurope","sourceSideScanInfo":{"sourceSideScanStatus":"NotApplicable","sourceSideScanSummary":"NotApplicable"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg-tgt;bhar11prtalr5sauami/protectedItems/AzureFileShare;59B6D82D018F581919FB4EEBAE721DE69FCE56F4BFE7684B8BEE47AC7B4FF63A","name":"AzureFileShare;59B6D82D018F581919FB4EEBAE721DE69FCE56F4BFE7684B8BEE47AC7B4FF63A","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"snapshot-tgt-fs","fileShareProtocol":"SMB","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Completed","lastBackupTime":"2026-09-20T22:19:14.5363703Z","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;Storage;bhar11-prt-restore-rg-tgt;bhar11prtalr5sauami","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg-tgt/providers/Microsoft.Storage/storageAccounts/bhar11prtalr5sauami","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupPolicies/bhar11-prt-snapshot-policy","vaultId":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv","isArchiveEnabled":false,"softDeleteRetentionPeriod":0,"sourceLocation":"westeurope","sourceSideScanInfo":{"sourceSideScanStatus":"NotApplicable","sourceSideScanSummary":"NotApplicable"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;storage;bhar11-prt-restore-rg;afskey09191425/protectedItems/AzureFileShare;d26513433f7ea56f5262c38c1f14f3307a7c41dd3dd17c1a8e5d0d633916bb41","name":"AzureFileShare;d26513433f7ea56f5262c38c1f14f3307a7c41dd3dd17c1a8e5d0d633916bb41","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"keyshare","fileShareProtocol":"SMB","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Completed","lastBackupTime":"2026-09-21T04:17:57.2397337Z","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;bhar11-prt-restore-rg;afskey09191425","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.storage/storageAccounts/afskey09191425","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupPolicies/bhar11-prt-snapshot-policy","vaultId":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv","isArchiveEnabled":false,"softDeleteRetentionPeriod":0,"sourceLocation":"westeurope","sourceSideScanInfo":{"sourceSideScanStatus":"NotApplicable","sourceSideScanSummary":"NotApplicable"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;storage;bhar11-prt-restore-rg;afsregkey09161005/protectedItems/AzureFileShare;keyshare","name":"AzureFileShare;keyshare","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"keyshare","fileShareProtocol":"SMB","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Completed","lastBackupTime":"2026-09-20T22:19:14.4391446Z","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;bhar11-prt-restore-rg;afsregkey09161005","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.storage/storageAccounts/afsregkey09161005","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupPolicies/bhar11-prt-snapshot-policy","vaultId":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv","isArchiveEnabled":false,"softDeleteRetentionPeriod":0,"sourceLocation":"westeurope","sourceSideScanInfo":{"sourceSideScanStatus":"NotApplicable","sourceSideScanSummary":"NotApplicable"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;storage;bhar11-prt-restore-rg;afsregsami09161005/protectedItems/AzureFileShare;0ae17c22f784ffc21a92d929d47852d8e719b8788b57ce64cddad576ea5a0a04","name":"AzureFileShare;0ae17c22f784ffc21a92d929d47852d8e719b8788b57ce64cddad576ea5a0a04","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"samishare","fileShareProtocol":"SMB","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Completed","lastBackupTime":"2026-09-20T22:19:14.3603362Z","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;bhar11-prt-restore-rg;afsregsami09161005","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.storage/storageAccounts/afsregsami09161005","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupPolicies/bhar11-prt-snapshot-policy","vaultId":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv","isArchiveEnabled":false,"softDeleteRetentionPeriod":0,"sourceLocation":"westeurope","sourceSideScanInfo":{"sourceSideScanStatus":"NotApplicable","sourceSideScanSummary":"NotApplicable"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;storage;bhar11-prt-restore-rg;afsreguami09161005/protectedItems/AzureFileShare;b5d7d6bb30ea41c742ba7d64e514e9b4d5ddafeb720d190a8e85f173fd1fd86b","name":"AzureFileShare;b5d7d6bb30ea41c742ba7d64e514e9b4d5ddafeb720d190a8e85f173fd1fd86b","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"uamishare","fileShareProtocol":"SMB","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Completed","lastBackupTime":"2026-09-20T22:19:14.6105146Z","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;bhar11-prt-restore-rg;afsreguami09161005","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.storage/storageAccounts/afsreguami09161005","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupPolicies/bhar11-prt-snapshot-policy","vaultId":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv","isArchiveEnabled":false,"softDeleteRetentionPeriod":0,"sourceLocation":"westeurope","sourceSideScanInfo":{"sourceSideScanStatus":"NotApplicable","sourceSideScanSummary":"NotApplicable"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;storage;bhar11-prt-restore-rg;afssami09191425/protectedItems/AzureFileShare;dbc3b4d1a30a91883e983f86f3fd6c681a6b2fbd78b29ad310acec5d3e7aecca","name":"AzureFileShare;dbc3b4d1a30a91883e983f86f3fd6c681a6b2fbd78b29ad310acec5d3e7aecca","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"samishare","fileShareProtocol":"SMB","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Completed","lastBackupTime":"2026-09-21T04:18:10.7560248Z","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;bhar11-prt-restore-rg;afssami09191425","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.storage/storageAccounts/afssami09191425","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupPolicies/bhar11-prt-snapshot-policy","vaultId":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv","isArchiveEnabled":false,"softDeleteRetentionPeriod":0,"sourceLocation":"westeurope","sourceSideScanInfo":{"sourceSideScanStatus":"NotApplicable","sourceSideScanSummary":"NotApplicable"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;storage;bhar11-prt-restore-rg;afsuami09191425/protectedItems/AzureFileShare;8f62503c81169ebfd4d355dedb2b3b68b338d3b32fab1b27f22d0a951a5a7f4b","name":"AzureFileShare;8f62503c81169ebfd4d355dedb2b3b68b338d3b32fab1b27f22d0a951a5a7f4b","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"climsirecu7ymlnjyip4","fileShareProtocol":"SMB","protectionStatus":"Healthy","protectionState":"ProtectionStopped","lastBackupStatus":"Completed","lastBackupTime":"2026-09-21T06:43:52.8238107Z","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;bhar11-prt-restore-rg;afsuami09191425","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.storage/storageAccounts/afsuami09191425","vaultId":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv","deferredDeleteTimeInUTC":"2026-09-21T06:55:43.9512229Z","isScheduledForDeferredDelete":true,"deferredDeleteTimeRemaining":"13.23:55:03.0141735","isArchiveEnabled":false,"softDeleteRetentionPeriod":14,"sourceLocation":"westeurope","sourceSideScanInfo":{"sourceSideScanStatus":"NotApplicable","sourceSideScanSummary":"NotApplicable"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;storage;bhar11-prt-restore-rg;afsuami09191425/protectedItems/AzureFileShare;8438e0069876a91dedffa33360d776211d325b1a828836aa057fe21c442632d0","name":"AzureFileShare;8438e0069876a91dedffa33360d776211d325b1a828836aa057fe21c442632d0","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"uamishare","fileShareProtocol":"SMB","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Completed","lastBackupTime":"2026-09-21T04:18:45.8420522Z","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;bhar11-prt-restore-rg;afsuami09191425","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.storage/storageAccounts/afsuami09191425","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupPolicies/bhar11-prt-snapshot-policy","vaultId":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv","isArchiveEnabled":false,"softDeleteRetentionPeriod":0,"sourceLocation":"westeurope","sourceSideScanInfo":{"sourceSideScanStatus":"NotApplicable","sourceSideScanSummary":"NotApplicable"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;storage;bhar11-prt-restore-rg;afsuami09191425/protectedItems/AzureFileShare;e87b827cf821b0e0bc080bd3cc0b18e6705bfb19d5c408cdd95c27c624f99024","name":"AzureFileShare;e87b827cf821b0e0bc080bd3cc0b18e6705bfb19d5c408cdd95c27c624f99024","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"climsirec000001","fileShareProtocol":"SMB","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;bhar11-prt-restore-rg;afsuami09191425","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.storage/storageAccounts/afsuami09191425","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupPolicies/bhar11-prt-snapshot-policy","vaultId":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv","isArchiveEnabled":false,"softDeleteRetentionPeriod":0,"sourceLocation":"westeurope","sourceSideScanInfo":{"sourceSideScanStatus":"NotApplicable","sourceSideScanSummary":"NotApplicable"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg;bhar11prtolrsakey/protectedItems/AzureFileShare;75C30A6EBA9B62694A034D304DE4F4699FE55ECFD2AD847D296A247D27775988","name":"AzureFileShare;75C30A6EBA9B62694A034D304DE4F4699FE55ECFD2AD847D296A247D27775988","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"snapshot-fs","fileShareProtocol":"SMB","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Completed","lastBackupTime":"2026-09-20T22:19:14.7424316Z","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;Storage;bhar11-prt-restore-rg;bhar11prtolrsakey","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/bhar11prtolrsakey","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupPolicies/bhar11-prt-snapshot-policy","vaultId":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv","isArchiveEnabled":false,"softDeleteRetentionPeriod":0,"sourceLocation":"westeurope","sourceSideScanInfo":{"sourceSideScanStatus":"NotApplicable","sourceSideScanSummary":"NotApplicable"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg;bhar11prtolrsakey/protectedItems/AzureFileShare;49394b1bfbad1b3e9c65156adfa81e12b20f9dd5c7f61cbae9cd4c9d1172489e","name":"AzureFileShare;49394b1bfbad1b3e9c65156adfa81e12b20f9dd5c7f61cbae9cd4c9d1172489e","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"vault-src-fs","fileShareProtocol":"SMB","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Completed","lastBackupTime":"2026-09-20T22:19:14.8448905Z","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;Storage;bhar11-prt-restore-rg;bhar11prtolrsakey","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/bhar11prtolrsakey","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupPolicies/bhar11-prt-vault-policy","vaultId":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv","isArchiveEnabled":false,"softDeleteRetentionPeriod":0,"sourceLocation":"westeurope","sourceSideScanInfo":{"sourceSideScanStatus":"NotApplicable","sourceSideScanSummary":"NotApplicable"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;storage;bhar11-prt-restore-rg;bhar11prtolrsakeyps/protectedItems/AzureFileShare;707db9396ab635c89f36d61b8303bd3f9e0fa8bcdb0732c48a9cdc9a8af3de1e","name":"AzureFileShare;707db9396ab635c89f36d61b8303bd3f9e0fa8bcdb0732c48a9cdc9a8af3de1e","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"keypsshare","fileShareProtocol":"SMB","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Completed","lastBackupTime":"2026-09-20T22:19:14.8290798Z","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;bhar11-prt-restore-rg;bhar11prtolrsakeyps","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.storage/storageAccounts/bhar11prtolrsakeyps","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupPolicies/bhar11-prt-snapshot-policy","vaultId":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv","isArchiveEnabled":false,"softDeleteRetentionPeriod":0,"sourceLocation":"westeurope","sourceSideScanInfo":{"sourceSideScanStatus":"NotApplicable","sourceSideScanSummary":"NotApplicable"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg;bhar11prtolrsasami/protectedItems/AzureFileShare;0AE5571567C3AF7A9E5C53E5BC5FB48EE01E8F3DEBC0A1BC54E4F34323B5A32E","name":"AzureFileShare;0AE5571567C3AF7A9E5C53E5BC5FB48EE01E8F3DEBC0A1BC54E4F34323B5A32E","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"snapshot-src-fs","fileShareProtocol":"SMB","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Completed","lastBackupTime":"2026-09-20T22:19:15.0502653Z","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;Storage;bhar11-prt-restore-rg;bhar11prtolrsasami","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/bhar11prtolrsasami","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupPolicies/bhar11-prt-snapshot-policy","vaultId":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv","isArchiveEnabled":false,"softDeleteRetentionPeriod":0,"sourceLocation":"westeurope","sourceSideScanInfo":{"sourceSideScanStatus":"NotApplicable","sourceSideScanSummary":"NotApplicable"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg;bhar11prtolrsasami/protectedItems/AzureFileShare;79F64207C05B1BD6FAD8504A8B8AD5E88DFBB82213D8D462D8847D3119087259","name":"AzureFileShare;79F64207C05B1BD6FAD8504A8B8AD5E88DFBB82213D8D462D8847D3119087259","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"vault-src-fs","fileShareProtocol":"SMB","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Completed","lastBackupTime":"2026-09-20T22:19:14.9611848Z","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;Storage;bhar11-prt-restore-rg;bhar11prtolrsasami","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/bhar11prtolrsasami","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupPolicies/bhar11-prt-vault-policy","vaultId":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv","isArchiveEnabled":false,"softDeleteRetentionPeriod":0,"sourceLocation":"westeurope","sourceSideScanInfo":{"sourceSideScanStatus":"NotApplicable","sourceSideScanSummary":"NotApplicable"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;storage;bhar11-prt-restore-rg;bhar11prtolrsasamips/protectedItems/AzureFileShare;e6e5304a1e7d59d54ffca234349cf7bb8bd5c8eae0ce333d209dfd8b2ce76789","name":"AzureFileShare;e6e5304a1e7d59d54ffca234349cf7bb8bd5c8eae0ce333d209dfd8b2ce76789","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"samienableshare2","fileShareProtocol":"SMB","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Completed","lastBackupTime":"2026-09-20T22:19:15.0478259Z","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;bhar11-prt-restore-rg;bhar11prtolrsasamips","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.storage/storageAccounts/bhar11prtolrsasamips","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupPolicies/bhar11-prt-snapshot-policy","vaultId":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv","isArchiveEnabled":false,"softDeleteRetentionPeriod":0,"sourceLocation":"westeurope","sourceSideScanInfo":{"sourceSideScanStatus":"NotApplicable","sourceSideScanSummary":"NotApplicable"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;storage;bhar11-prt-restore-rg;bhar11prtolrsasamips/protectedItems/AzureFileShare;e7b55a95facccd013a8ebdb5a84bdda4b3d46bd60b595f3b311160754979f398","name":"AzureFileShare;e7b55a95facccd013a8ebdb5a84bdda4b3d46bd60b595f3b311160754979f398","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"samienableshare","fileShareProtocol":"SMB","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Completed","lastBackupTime":"2026-09-20T22:19:15.2997888Z","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;bhar11-prt-restore-rg;bhar11prtolrsasamips","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.storage/storageAccounts/bhar11prtolrsasamips","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupPolicies/bhar11-prt-snapshot-policy","vaultId":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv","isArchiveEnabled":false,"softDeleteRetentionPeriod":0,"sourceLocation":"westeurope","sourceSideScanInfo":{"sourceSideScanStatus":"NotApplicable","sourceSideScanSummary":"NotApplicable"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;storage;bhar11-prt-restore-rg;bhar11prtolrsasamips/protectedItems/AzureFileShare;11d5a6616ea4d4224cda45dbdae4a86578169c52aa5d37888d38343002d1b436","name":"AzureFileShare;11d5a6616ea4d4224cda45dbdae4a86578169c52aa5d37888d38343002d1b436","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"samipsshare","fileShareProtocol":"SMB","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Completed","lastBackupTime":"2026-09-20T22:19:15.3955289Z","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;bhar11-prt-restore-rg;bhar11prtolrsasamips","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.storage/storageAccounts/bhar11prtolrsasamips","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupPolicies/bhar11-prt-snapshot-policy","vaultId":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv","isArchiveEnabled":false,"softDeleteRetentionPeriod":0,"sourceLocation":"westeurope","sourceSideScanInfo":{"sourceSideScanStatus":"NotApplicable","sourceSideScanSummary":"NotApplicable"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;storage;bhar11-prt-restore-rg;bhar11prtolrsauami1/protectedItems/AzureFileShare;97ff9c577c2d4643b847430daeea224e4d57dd309b4b573b97fa5e5931361b08","name":"AzureFileShare;97ff9c577c2d4643b847430daeea224e4d57dd309b4b573b97fa5e5931361b08","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"climsi0915","fileShareProtocol":"SMB","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Completed","lastBackupTime":"2026-09-20T22:19:09.64092Z","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;bhar11-prt-restore-rg;bhar11prtolrsauami1","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.storage/storageAccounts/bhar11prtolrsauami1","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupPolicies/bhar11-prt-snapshot-policy","vaultId":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv","isArchiveEnabled":false,"softDeleteRetentionPeriod":0,"sourceLocation":"westeurope","sourceSideScanInfo":{"sourceSideScanStatus":"NotApplicable","sourceSideScanSummary":"NotApplicable"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;storage;bhar11-prt-restore-rg;bhar11prtolrsauami1/protectedItems/AzureFileShare;uami1share","name":"AzureFileShare;uami1share","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"uami1share","fileShareProtocol":"SMB","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Completed","lastBackupTime":"2026-09-20T22:19:10.0343652Z","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;bhar11-prt-restore-rg;bhar11prtolrsauami1","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.storage/storageAccounts/bhar11prtolrsauami1","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupPolicies/bhar11-prt-snapshot-policy","vaultId":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv","isArchiveEnabled":false,"softDeleteRetentionPeriod":0,"sourceLocation":"westeurope","sourceSideScanInfo":{"sourceSideScanStatus":"NotApplicable","sourceSideScanSummary":"NotApplicable"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg;bhar11prtolrsauami/protectedItems/AzureFileShare;CCFB215E84B2988FF8C3D2E8C615708F91AD9152EC752C347B634E41C74FA8E4","name":"AzureFileShare;CCFB215E84B2988FF8C3D2E8C615708F91AD9152EC752C347B634E41C74FA8E4","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"vault-src-fs","fileShareProtocol":"SMB","protectionStatus":"Unhealthy","protectionState":"Protected","lastBackupStatus":"Failed","lastBackupTime":"2026-09-20T22:19:10.0324782Z","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;Storage;bhar11-prt-restore-rg;bhar11prtolrsauami","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/bhar11prtolrsauami","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupPolicies/bhar11-prt-vault-policy","vaultId":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv","isArchiveEnabled":false,"softDeleteRetentionPeriod":0,"sourceLocation":"westeurope","sourceSideScanInfo":{"sourceSideScanStatus":"NotApplicable","sourceSideScanSummary":"NotApplicable"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;bhar11-prt-restore-rg;bhar11prtolrsauami/protectedItems/AzureFileShare;19746C76036DC106EFAF148967904E957E557C5C6F4BA273305EAB72D2F87989","name":"AzureFileShare;19746C76036DC106EFAF148967904E957E557C5C6F4BA273305EAB72D2F87989","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"snapshot-src-fs","fileShareProtocol":"SMB","protectionStatus":"Unhealthy","protectionState":"Protected","lastBackupStatus":"Failed","lastBackupTime":"2026-09-20T22:19:10.1786493Z","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;Storage;bhar11-prt-restore-rg;bhar11prtolrsauami","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/bhar11prtolrsauami","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupPolicies/bhar11-prt-snapshot-policy","vaultId":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv","isArchiveEnabled":false,"softDeleteRetentionPeriod":0,"sourceLocation":"westeurope","sourceSideScanInfo":{"sourceSideScanStatus":"NotApplicable","sourceSideScanSummary":"NotApplicable"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;storage;bhar11-prt-restore-rg;bhar11prtolrsauamips/protectedItems/AzureFileShare;660c46ccbfd4e3143d80933f606e8b677ebea0c1e70d12c51f9608df634b4b78","name":"AzureFileShare;660c46ccbfd4e3143d80933f606e8b677ebea0c1e70d12c51f9608df634b4b78","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"uamienableshare","fileShareProtocol":"SMB","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Completed","lastBackupTime":"2026-09-20T22:19:10.6312304Z","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;bhar11-prt-restore-rg;bhar11prtolrsauamips","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.storage/storageAccounts/bhar11prtolrsauamips","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupPolicies/bhar11-prt-snapshot-policy","vaultId":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv","isArchiveEnabled":false,"softDeleteRetentionPeriod":0,"sourceLocation":"westeurope","sourceSideScanInfo":{"sourceSideScanStatus":"NotApplicable","sourceSideScanSummary":"NotApplicable"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;storage;bhar11-prt-restore-rg;bhar11prtolrsauamips/protectedItems/AzureFileShare;4b434c740c03e08339fe7aa0b420ef9e549607c5947d9cf57247adba835dac42","name":"AzureFileShare;4b434c740c03e08339fe7aa0b420ef9e549607c5947d9cf57247adba835dac42","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"uamipsshare","fileShareProtocol":"SMB","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Completed","lastBackupTime":"2026-09-20T22:19:10.7112357Z","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;bhar11-prt-restore-rg;bhar11prtolrsauamips","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.storage/storageAccounts/bhar11prtolrsauamips","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupPolicies/bhar11-prt-snapshot-policy","vaultId":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv","isArchiveEnabled":false,"softDeleteRetentionPeriod":0,"sourceLocation":"westeurope","sourceSideScanInfo":{"sourceSideScanStatus":"NotApplicable","sourceSideScanSummary":"NotApplicable"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;storage;bhar11-prt-restore-rg;bhar11prtolrsauamips/protectedItems/AzureFileShare;32f5d8966f5d11f7729ba00a4694fdfeb986892cdbbecbd6600c235d86f5b34e","name":"AzureFileShare;32f5d8966f5d11f7729ba00a4694fdfeb986892cdbbecbd6600c235d86f5b34e","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"uamienableshare2","fileShareProtocol":"SMB","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Completed","lastBackupTime":"2026-09-20T22:19:10.7689507Z","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;bhar11-prt-restore-rg;bhar11prtolrsauamips","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.storage/storageAccounts/bhar11prtolrsauamips","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupPolicies/bhar11-prt-snapshot-policy","vaultId":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv","isArchiveEnabled":false,"softDeleteRetentionPeriod":0,"sourceLocation":"westeurope","sourceSideScanInfo":{"sourceSideScanStatus":"NotApplicable","sourceSideScanSummary":"NotApplicable"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;storage;bhar11-prt-restore-rg;climsilive09191401/protectedItems/AzureFileShare;msisource","name":"AzureFileShare;msisource","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"msisource","fileShareProtocol":"SMB","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Completed","lastBackupTime":"2026-09-20T22:19:10.3880617Z","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;bhar11-prt-restore-rg;climsilive09191401","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.storage/storageAccounts/climsilive09191401","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupPolicies/bhar11-prt-snapshot-policy","vaultId":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv","isArchiveEnabled":false,"softDeleteRetentionPeriod":0,"sourceLocation":"westeurope","sourceSideScanInfo":{"sourceSideScanStatus":"NotApplicable","sourceSideScanSummary":"NotApplicable"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;storage;bhar11-prt-restore-rg;climsilive09191401/protectedItems/AzureFileShare;fssami1","name":"AzureFileShare;fssami1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"fssami1","fileShareProtocol":"SMB","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Completed","lastBackupTime":"2026-09-20T22:19:10.8313886Z","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;bhar11-prt-restore-rg;climsilive09191401","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.storage/storageAccounts/climsilive09191401","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupPolicies/bhar11-prt-snapshot-policy","vaultId":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv","isArchiveEnabled":false,"softDeleteRetentionPeriod":0,"sourceLocation":"westeurope","sourceSideScanInfo":{"sourceSideScanStatus":"NotApplicable","sourceSideScanSummary":"NotApplicable"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;storage;bhar11-prt-restore-rg;climsilive09191401/protectedItems/AzureFileShare;718ad0d9397dc24568abe6fc99ae25ed8afa9f5865b2a2b59e25fa9b640d1a39","name":"AzureFileShare;718ad0d9397dc24568abe6fc99ae25ed8afa9f5865b2a2b59e25fa9b640d1a39","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"fsuami1","fileShareProtocol":"SMB","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Completed","lastBackupTime":"2026-09-20T22:19:10.5636457Z","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;bhar11-prt-restore-rg;climsilive09191401","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.storage/storageAccounts/climsilive09191401","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupPolicies/bhar11-prt-snapshot-policy","vaultId":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv","isArchiveEnabled":false,"softDeleteRetentionPeriod":0,"sourceLocation":"westeurope","sourceSideScanInfo":{"sourceSideScanStatus":"NotApplicable","sourceSideScanSummary":"NotApplicable"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;storage;bhar11-prt-restore-rg;climsilive09191401/protectedItems/AzureFileShare;b84c9ebad4c37966c9f2315fbb975a01ff0b1c2c2fece3c74c084d43d2643817","name":"AzureFileShare;b84c9ebad4c37966c9f2315fbb975a01ff0b1c2c2fece3c74c084d43d2643817","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"fssami2","fileShareProtocol":"SMB","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Completed","lastBackupTime":"2026-09-20T22:19:10.9923794Z","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;bhar11-prt-restore-rg;climsilive09191401","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.storage/storageAccounts/climsilive09191401","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupPolicies/bhar11-prt-snapshot-policy","vaultId":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv","isArchiveEnabled":false,"softDeleteRetentionPeriod":0,"sourceLocation":"westeurope","sourceSideScanInfo":{"sourceSideScanStatus":"NotApplicable","sourceSideScanSummary":"NotApplicable"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;storage;bhar11-prt-restore-rg;climsilive09191401/protectedItems/AzureFileShare;fskey1","name":"AzureFileShare;fskey1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"fskey1","fileShareProtocol":"SMB","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Completed","lastBackupTime":"2026-09-20T22:19:11.018884Z","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;bhar11-prt-restore-rg;climsilive09191401","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.storage/storageAccounts/climsilive09191401","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupPolicies/bhar11-prt-snapshot-policy","vaultId":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv","isArchiveEnabled":false,"softDeleteRetentionPeriod":0,"sourceLocation":"westeurope","sourceSideScanInfo":{"sourceSideScanStatus":"NotApplicable","sourceSideScanSummary":"NotApplicable"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;storage;bhar11-prt-restore-rg;climsilive09191401/protectedItems/AzureFileShare;9638c5dfb84b7e76fbe6bc8bb34b6aad208706a04e1bbb124d0aaaf4b2163ca7","name":"AzureFileShare;9638c5dfb84b7e76fbe6bc8bb34b6aad208706a04e1bbb124d0aaaf4b2163ca7","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"fskey2","fileShareProtocol":"SMB","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Completed","lastBackupTime":"2026-09-20T22:19:11.2267564Z","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;bhar11-prt-restore-rg;climsilive09191401","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.storage/storageAccounts/climsilive09191401","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupPolicies/bhar11-prt-snapshot-policy","vaultId":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv","isArchiveEnabled":false,"softDeleteRetentionPeriod":0,"sourceLocation":"westeurope","sourceSideScanInfo":{"sourceSideScanStatus":"NotApplicable","sourceSideScanSummary":"NotApplicable"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;storage;bhar11-prt-restore-rg;climsilive09191401/protectedItems/AzureFileShare;fsuami2","name":"AzureFileShare;fsuami2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"fsuami2","fileShareProtocol":"SMB","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Completed","lastBackupTime":"2026-09-20T22:19:11.5015685Z","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;bhar11-prt-restore-rg;climsilive09191401","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.storage/storageAccounts/climsilive09191401","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupPolicies/bhar11-prt-snapshot-policy","vaultId":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv","isArchiveEnabled":false,"softDeleteRetentionPeriod":0,"sourceLocation":"westeurope","sourceSideScanInfo":{"sourceSideScanStatus":"NotApplicable","sourceSideScanSummary":"NotApplicable"}}}]}' + headers: + cache-control: + - no-cache + content-length: + - '57613' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 21 Sep 2026 07:00:41 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=d5f45f9e-867c-4805-9aba-55121e6bdbb8/westeurope/b878a3b4-b324-4c31-b72b-96a517b63e2b + x-ms-ratelimit-remaining-subscription-resource-requests: + - '249' + x-msedge-ref: + - 'Ref A: 61C0728403D34ED58FBFCB3996AC00CC Ref B: PNQ231110909031 Ref C: 2026-09-21T07:00:40Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection backup-now + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -i --backup-management-type --retain-until --query + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.41.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bbhar11-prt-restore-rg%3Bafsuami09191425/protectedItems/AzureFileShare%3Be87b827cf821b0e0bc080bd3cc0b18e6705bfb19d5c408cdd95c27c624f99024?api-version=2026-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;storage;bhar11-prt-restore-rg;afsuami09191425/protectedItems/AzureFileShare;e87b827cf821b0e0bc080bd3cc0b18e6705bfb19d5c408cdd95c27c624f99024","name":"AzureFileShare;e87b827cf821b0e0bc080bd3cc0b18e6705bfb19d5c408cdd95c27c624f99024","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"climsirec000001","fileShareProtocol":"SMB","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","extendedInfo":{"recoveryPointCount":0,"policyState":"Consistent","resourceState":"Active","resourceStateSyncTime":"2026-09-21T07:00:36.5394888Z"},"protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;bhar11-prt-restore-rg;afsuami09191425","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.storage/storageAccounts/afsuami09191425","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupPolicies/bhar11-prt-snapshot-policy","vaultId":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv","isArchiveEnabled":false,"softDeleteRetentionPeriod":0,"sourceLocation":"westeurope","sourceSideScanInfo":{"sourceSideScanStatus":"NotApplicable","sourceSideScanSummary":"NotApplicable"}}}' + headers: + cache-control: + - no-cache + content-length: + - '1809' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 21 Sep 2026 07:00:41 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=d5f45f9e-867c-4805-9aba-55121e6bdbb8/westeurope/fa50d1d9-730e-46f4-b483-406d3c4ce1a6 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '249' + x-msedge-ref: + - 'Ref A: 725F6F2AE4504D969584130154E21182 Ref B: PNQ231110909060 Ref C: 2026-09-21T07:00:41Z' + status: + code: 200 + message: OK +- request: + body: '{"properties": {"recoveryPointExpiryTimeInUTC": "2026-10-21T00:00:00Z", + "objectType": "AzureFileShareBackupRequest"}}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection backup-now + Connection: + - keep-alive + Content-Length: + - '117' + Content-Type: + - application/json + ParameterSetName: + - -g -v -c -i --backup-management-type --retain-until --query + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.41.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bbhar11-prt-restore-rg%3Bafsuami09191425/protectedItems/AzureFileShare%3Be87b827cf821b0e0bc080bd3cc0b18e6705bfb19d5c408cdd95c27c624f99024/backup?api-version=2026-07-01 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;storage;bhar11-prt-restore-rg;afsuami09191425/protectedItems/AzureFileShare;e87b827cf821b0e0bc080bd3cc0b18e6705bfb19d5c408cdd95c27c624f99024/operationsStatus/7530720d-dea3-489e-9b3c-4abac8b2ec1c?api-version=2026-07-01&t=639255708447154963&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=s-vP-4meRJo9P4jo7VdYNGQ9K046-MxxtjWca9SInBZ3-Z9D7M-Y_fQAfgoBxv9QSlPvof9Dz7mOkwWHT8v8a4lNo8gv9s_kyhNoFC2RZ06j0Bvi6ShogJEzJk4egbsU0aqlwk4v40z60mhzbZLkbusoQ_MIcENHfU77lQwip3p_DZAIlNp9ZngH52JlWDRaIjZdpz3Wg0guAbva0mTGPI738o8hG2DQALBrxjMoxeDzcJTvxK9uBrHwxWVvarzhoXH08VvJ2oHYZaIOP8fXhivUV-pMx-R3GP1WmvrK1hkniC3EYu-iGKPG_hFxcRgIeFbKIQJlwUu4rmjIa2SHtQ&h=LH5HsU2q14gI89Y-84SVqcPljBe-DWTPfUYcf0cLPtI + cache-control: + - no-cache + content-length: + - '0' + date: + - Mon, 21 Sep 2026 07:00:44 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;storage;bhar11-prt-restore-rg;afsuami09191425/protectedItems/AzureFileShare;e87b827cf821b0e0bc080bd3cc0b18e6705bfb19d5c408cdd95c27c624f99024/operationResults/7530720d-dea3-489e-9b3c-4abac8b2ec1c?api-version=2026-07-01&t=639255708447154963&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=tm0Zyf3owbC26v72m03yvv3AJkldPHVZk_1Db3P2KIeQ1JzrXuyFjIr9tOmLlHKMezudJTLEvkUpufnScK8fkJ7J8v8m5pWsMN0ObXNR6-luhwbfIRkTS9k-u9_qCIdDyx-IPKFlVAAVDWMAGQp0fDbU-_DhcExSlXxLHQKI2gurlqlctKoTHqAJjBOS666ng7gSY-S2SHE_aBI2ZSfMZBIWdsQppJEAMDPzhsVb_qvN1iaA8kzMHr8DxSYRvVXjmR3iHsNzObUTCtokIq6QbgwYusxH_3K0_c7wfu-AZ-zOBNsbe7SSvmz9ABW0MVJOzMFlNC-C6Nx-HFKurxPL8A&h=Si8EsurOww_Hc3F9UPTbPBGNB_EiHTYAE47eS_cPrL0 + 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=d5f45f9e-867c-4805-9aba-55121e6bdbb8/westeurope/f9d5e62f-e3c8-4213-bd65-36f3eb70c1cc + x-ms-ratelimit-remaining-subscription-global-writes: + - '11999' + x-ms-ratelimit-remaining-subscription-writes: + - '799' + x-msedge-ref: + - 'Ref A: 855CBEEA4EB44EED9E665005B5B32288 Ref B: PNQ231110909042 Ref C: 2026-09-21T07:00:43Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection backup-now + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -i --backup-management-type --retain-until --query + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.41.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupOperations/7530720d-dea3-489e-9b3c-4abac8b2ec1c?api-version=2026-07-01 + response: + body: + string: '{"id":"7530720d-dea3-489e-9b3c-4abac8b2ec1c","name":"7530720d-dea3-489e-9b3c-4abac8b2ec1c","status":"Succeeded","startTime":"2026-09-21T07:00:44.2543418Z","endTime":"2026-09-21T07:00:44.2543418Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"1c3095e8-5803-4725-984c-0e8c596e8296"}}' + headers: + cache-control: + - no-cache + content-length: + - '304' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 21 Sep 2026 07:00:44 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=d5f45f9e-867c-4805-9aba-55121e6bdbb8/westeurope/88c5b4ee-b8a8-4e6f-8f0d-c3a89546655b + x-ms-ratelimit-remaining-subscription-resource-requests: + - '249' + x-msedge-ref: + - 'Ref A: 9F0217E07CA845EA97DA14A8541D6358 Ref B: PNQ231110908025 Ref C: 2026-09-21T07:00:45Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection backup-now + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -i --backup-management-type --retain-until --query + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.41.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupJobs/1c3095e8-5803-4725-984c-0e8c596e8296?api-version=2026-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupJobs/1c3095e8-5803-4725-984c-0e8c596e8296","name":"1c3095e8-5803-4725-984c-0e8c596e8296","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT2.5604584S","storageAccountName":"afsuami09191425","storageAccountVersion":"MicrosoftStorage","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","taskType":"Normal","status":"InProgress"}],"propertyBag":{"Data + Transferred (in MB)":"0","File Share Name":"climsirec000001","Whether job + is adhoc or scheduled.":"True"}},"isUserTriggered":false,"entityFriendlyName":"climsirec000001","backupManagementType":"AzureStorage","operation":"Backup","status":"InProgress","startTime":"2026-09-21T07:00:44.2543418Z","activityId":"286c32ed-b58a-11f1-baec-6045bda581f9"}}' + headers: + cache-control: + - no-cache + content-length: + - '925' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 21 Sep 2026 07:00:46 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=d5f45f9e-867c-4805-9aba-55121e6bdbb8/westeurope/0e5cbd77-c6b8-4054-b583-5b5c6b0d3ab8 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '249' + x-msedge-ref: + - 'Ref A: 793E8798C3A84A249476F54FB5BE32E7 Ref B: PNQ231110909025 Ref C: 2026-09-21T07:00:46Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -g -v -n + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.41.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupJobs/1c3095e8-5803-4725-984c-0e8c596e8296?api-version=2026-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupJobs/1c3095e8-5803-4725-984c-0e8c596e8296","name":"1c3095e8-5803-4725-984c-0e8c596e8296","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT3.9802732S","storageAccountName":"afsuami09191425","storageAccountVersion":"MicrosoftStorage","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","taskType":"Normal","status":"InProgress"}],"propertyBag":{"Data + Transferred (in MB)":"0","File Share Name":"climsirec000001","Whether job + is adhoc or scheduled.":"True"}},"isUserTriggered":false,"entityFriendlyName":"climsirec000001","backupManagementType":"AzureStorage","operation":"Backup","status":"InProgress","startTime":"2026-09-21T07:00:44.2543418Z","activityId":"286c32ed-b58a-11f1-baec-6045bda581f9"}}' + headers: + cache-control: + - no-cache + content-length: + - '925' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 21 Sep 2026 07:00:47 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=d5f45f9e-867c-4805-9aba-55121e6bdbb8/westeurope/1665dcba-be23-498d-828c-3a6f5cc41727 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '249' + x-msedge-ref: + - 'Ref A: 48F2D8D1AE6E4A9F9721F653BBBFD9EC Ref B: PNQ231110908062 Ref C: 2026-09-21T07:00:47Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -g -v -n + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.41.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupJobs/1c3095e8-5803-4725-984c-0e8c596e8296?api-version=2026-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupJobs/1c3095e8-5803-4725-984c-0e8c596e8296","name":"1c3095e8-5803-4725-984c-0e8c596e8296","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT5.1917704S","storageAccountName":"afsuami09191425","storageAccountVersion":"MicrosoftStorage","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","taskType":"Normal","status":"InProgress"}],"propertyBag":{"Data + Transferred (in MB)":"0","File Share Name":"climsirec000001","Whether job + is adhoc or scheduled.":"True"}},"isUserTriggered":false,"entityFriendlyName":"climsirec000001","backupManagementType":"AzureStorage","operation":"Backup","status":"InProgress","startTime":"2026-09-21T07:00:44.2543418Z","activityId":"286c32ed-b58a-11f1-baec-6045bda581f9"}}' + headers: + cache-control: + - no-cache + content-length: + - '925' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 21 Sep 2026 07:00:48 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=d5f45f9e-867c-4805-9aba-55121e6bdbb8/westeurope/5431c481-a51a-4cda-82f3-1f424bc4ac0d + x-ms-ratelimit-remaining-subscription-resource-requests: + - '249' + x-msedge-ref: + - 'Ref A: 061154C5F25D44BB91C21025A2F4EC21 Ref B: PNQ231110909062 Ref C: 2026-09-21T07:00:48Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -g -v -n + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.41.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupJobs/1c3095e8-5803-4725-984c-0e8c596e8296?api-version=2026-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupJobs/1c3095e8-5803-4725-984c-0e8c596e8296","name":"1c3095e8-5803-4725-984c-0e8c596e8296","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT6.8484785S","storageAccountName":"afsuami09191425","storageAccountVersion":"MicrosoftStorage","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","taskType":"Normal","status":"Completed"}],"propertyBag":{"Data + Transferred (in MB)":"0","File Share Name":"climsirec000001","Whether job + is adhoc or scheduled.":"True"}},"isUserTriggered":false,"entityFriendlyName":"climsirec000001","backupManagementType":"AzureStorage","operation":"Backup","status":"Completed","startTime":"2026-09-21T07:00:44.2543418Z","endTime":"2026-09-21T07:00:51.1028203Z","activityId":"286c32ed-b58a-11f1-baec-6045bda581f9"}}' + headers: + cache-control: + - no-cache + content-length: + - '964' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 21 Sep 2026 07:01:19 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=d5f45f9e-867c-4805-9aba-55121e6bdbb8/westeurope/cd091b59-1241-43f2-ba33-4767a65480fb + x-ms-ratelimit-remaining-subscription-resource-requests: + - '249' + x-msedge-ref: + - 'Ref A: 667F6B55A0F24AED80588BB60CE38DCC Ref B: PNQ231110907040 Ref C: 2026-09-21T07:01:19Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup recoverypoint list + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -i --backup-management-type --query + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.41.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bbhar11-prt-restore-rg%3Bafsuami09191425/protectedItems/AzureFileShare%3Be87b827cf821b0e0bc080bd3cc0b18e6705bfb19d5c408cdd95c27c624f99024?api-version=2026-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;storage;bhar11-prt-restore-rg;afsuami09191425/protectedItems/AzureFileShare;e87b827cf821b0e0bc080bd3cc0b18e6705bfb19d5c408cdd95c27c624f99024","name":"AzureFileShare;e87b827cf821b0e0bc080bd3cc0b18e6705bfb19d5c408cdd95c27c624f99024","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"climsirec000001","fileShareProtocol":"SMB","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Completed","lastBackupTime":"2026-09-21T07:00:44.2543418Z","extendedInfo":{"oldestRecoveryPoint":"2026-09-21T07:00:47Z","recoveryPointCount":1,"policyState":"Consistent","resourceState":"Active","resourceStateSyncTime":"2026-09-21T07:00:52Z"},"protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;bhar11-prt-restore-rg;afsuami09191425","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.storage/storageAccounts/afsuami09191425","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupPolicies/bhar11-prt-snapshot-policy","lastRecoveryPoint":"2026-09-21T07:00:47Z","vaultId":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv","isArchiveEnabled":false,"softDeleteRetentionPeriod":0,"sourceLocation":"westeurope","sourceSideScanInfo":{"sourceSideScanStatus":"NotApplicable","sourceSideScanSummary":"NotApplicable"}}}' + headers: + cache-control: + - no-cache + content-length: + - '1937' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 21 Sep 2026 07:01:51 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=d5f45f9e-867c-4805-9aba-55121e6bdbb8/westeurope/309e090f-5419-4f76-b9a4-fb9a26c30023 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '249' + x-msedge-ref: + - 'Ref A: F7383A4C212741FA9160D7415C8BF012 Ref B: PNQ231110909060 Ref C: 2026-09-21T07:01:50Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup recoverypoint list + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -i --backup-management-type --query + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.41.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bbhar11-prt-restore-rg%3Bafsuami09191425/protectedItems/AzureFileShare%3Be87b827cf821b0e0bc080bd3cc0b18e6705bfb19d5c408cdd95c27c624f99024/recoveryPoints?api-version=2026-07-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;storage;bhar11-prt-restore-rg;afsuami09191425/protectedItems/AzureFileShare;e87b827cf821b0e0bc080bd3cc0b18e6705bfb19d5c408cdd95c27c624f99024/recoveryPoints/1847532043816240297","name":"1847532043816240297","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureFileShareRecoveryPoint","recoveryPointType":"FileSystemConsistent","recoveryPointTime":"2026-09-21T07:00:47Z","fileShareSnapshotUri":"https://afsuami09191425.file.core.windows.net/climsirec000001?sharesnapshot=2026-09-21T07:00:47.0000000Z","recoveryPointSizeInGB":0,"recoveryPointProperties":{"isSoftDeleted":false},"recoveryPointTierDetails":[{"type":"InstantRP","status":"Valid"}]}}]}' + headers: + cache-control: + - no-cache + content-length: + - '960' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 21 Sep 2026 07:01:52 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=d5f45f9e-867c-4805-9aba-55121e6bdbb8/westeurope/4c485132-7be1-41ac-9b6f-761ee62cf6a1 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '249' + x-msedge-ref: + - 'Ref A: B00B122C8A234110ADD35F45DB1131F6 Ref B: PNQ231110907054 Ref C: 2026-09-21T07:01:52Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup restore restore-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -i -r --restore-mode --resolve-conflict --target-storage-account + --target-file-share --target-folder --mi-user-assigned --query + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.41.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bbhar11-prt-restore-rg%3Bafsuami09191425/protectedItems/AzureFileShare%3Be87b827cf821b0e0bc080bd3cc0b18e6705bfb19d5c408cdd95c27c624f99024?api-version=2026-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;storage;bhar11-prt-restore-rg;afsuami09191425/protectedItems/AzureFileShare;e87b827cf821b0e0bc080bd3cc0b18e6705bfb19d5c408cdd95c27c624f99024","name":"AzureFileShare;e87b827cf821b0e0bc080bd3cc0b18e6705bfb19d5c408cdd95c27c624f99024","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"climsirec000001","fileShareProtocol":"SMB","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Completed","lastBackupTime":"2026-09-21T07:00:44.2543418Z","extendedInfo":{"oldestRecoveryPoint":"2026-09-21T07:00:47Z","recoveryPointCount":1,"policyState":"Consistent","resourceState":"Active","resourceStateSyncTime":"2026-09-21T07:00:52Z"},"protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;bhar11-prt-restore-rg;afsuami09191425","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.storage/storageAccounts/afsuami09191425","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupPolicies/bhar11-prt-snapshot-policy","lastRecoveryPoint":"2026-09-21T07:00:47Z","vaultId":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv","isArchiveEnabled":false,"softDeleteRetentionPeriod":0,"sourceLocation":"westeurope","sourceSideScanInfo":{"sourceSideScanStatus":"NotApplicable","sourceSideScanSummary":"NotApplicable"}}}' + headers: + cache-control: + - no-cache + content-length: + - '1937' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 21 Sep 2026 07:01:54 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=d5f45f9e-867c-4805-9aba-55121e6bdbb8/westeurope/b1354a49-5732-480b-b5a4-49accebac815 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '249' + x-msedge-ref: + - 'Ref A: 7288F9C7BC65475CA1C969FD0050BE72 Ref B: PNQ231110908052 Ref C: 2026-09-21T07:01:53Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup restore restore-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -i -r --restore-mode --resolve-conflict --target-storage-account + --target-file-share --target-folder --mi-user-assigned --query + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.41.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/bhar11-prt-restore-rg/providers/Microsoft.ClassicStorage/storageAccounts/afsuami09191425?api-version=2015-12-01 + response: + body: + string: '{"error":{"code":"InvalidResourceNamespace","message":"The resource + namespace ''Microsoft.ClassicStorage'' is invalid."}}' + headers: + cache-control: + - no-cache + content-length: + - '119' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 21 Sep 2026 07:01:56 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-failure-cause: + - gateway + x-msedge-ref: + - 'Ref A: 5FDE14369AA84334B59A3D21365C564C Ref B: PNQ231110909029 Ref C: 2026-09-21T07:01:55Z' + status: + code: 404 + message: Not Found +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup restore restore-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -i -r --restore-mode --resolve-conflict --target-storage-account + --target-file-share --target-folder --mi-user-assigned --query + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.41.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/afsuami09191425?api-version=2016-01-01 + response: + body: + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/afsuami09191425","name":"afsuami09191425","type":"Microsoft.Storage/storageAccounts","location":"westeurope","tags":{"DisableLocalAuth":"false","BCDR":"NA","DeleteBy":"10-2026","ETA":"10-2026","ManagerAlias":"bharatp","Owner":"bharatp","Purpose":"AFS-MSI-Manual-Test","Reason":"AFS-MSI-Manual-Test","SourceRegion":"westeurope","TestType":"E2E","Workload":"AzureFileShareBackup"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2026-09-19T08:57:56.7020787Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2026-09-19T08:57:56.1784894Z","primaryEndpoints":{"blob":"https://afsuami09191425.blob.core.windows.net/","queue":"https://afsuami09191425.queue.core.windows.net/","table":"https://afsuami09191425.table.core.windows.net/","file":"https://afsuami09191425.file.core.windows.net/"},"primaryLocation":"westeurope","statusOfPrimary":"available"}}' + headers: + cache-control: + - no-cache + content-length: + - '1139' + content-type: + - application/json + date: + - Mon, 21 Sep 2026 07:01:56 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: DC62643BBE27407494EF9201DF94D2A0 Ref B: PNQ231110909036 Ref C: 2026-09-21T07:01:56Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup restore restore-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -i -r --restore-mode --resolve-conflict --target-storage-account + --target-file-share --target-folder --mi-user-assigned --query + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.41.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/bhar11-prt-restore-rg/providers/Microsoft.ClassicStorage/storageAccounts/afsuami09191425?api-version=2015-12-01 + response: + body: + string: '{"error":{"code":"InvalidResourceNamespace","message":"The resource + namespace ''Microsoft.ClassicStorage'' is invalid."}}' + headers: + cache-control: + - no-cache + content-length: + - '119' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 21 Sep 2026 07:01:57 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-failure-cause: + - gateway + x-msedge-ref: + - 'Ref A: 7D500EC29E254C5B9D6D7200289D4E74 Ref B: PNQ231110906025 Ref C: 2026-09-21T07:01:57Z' + status: + code: 404 + message: Not Found +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup restore restore-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -i -r --restore-mode --resolve-conflict --target-storage-account + --target-file-share --target-folder --mi-user-assigned --query + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.41.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/afsuami09191425?api-version=2016-01-01 + response: + body: + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/afsuami09191425","name":"afsuami09191425","type":"Microsoft.Storage/storageAccounts","location":"westeurope","tags":{"DisableLocalAuth":"false","BCDR":"NA","DeleteBy":"10-2026","ETA":"10-2026","ManagerAlias":"bharatp","Owner":"bharatp","Purpose":"AFS-MSI-Manual-Test","Reason":"AFS-MSI-Manual-Test","SourceRegion":"westeurope","TestType":"E2E","Workload":"AzureFileShareBackup"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2026-09-19T08:57:56.7020787Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2026-09-19T08:57:56.1784894Z","primaryEndpoints":{"blob":"https://afsuami09191425.blob.core.windows.net/","queue":"https://afsuami09191425.queue.core.windows.net/","table":"https://afsuami09191425.table.core.windows.net/","file":"https://afsuami09191425.file.core.windows.net/"},"primaryLocation":"westeurope","statusOfPrimary":"available"}}' + headers: + cache-control: + - no-cache + content-length: + - '1139' + content-type: + - application/json + date: + - Mon, 21 Sep 2026 07:01:58 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 52A57AEA5AC84CF6B417558BF7AE67C2 Ref B: PNQ231110909034 Ref C: 2026-09-21T07:01:57Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup restore restore-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -i -r --restore-mode --resolve-conflict --target-storage-account + --target-file-share --target-folder --mi-user-assigned --query + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.41.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupResourceGuardProxies?api-version=2026-07-01 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 21 Sep 2026 07:01:59 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=d5f45f9e-867c-4805-9aba-55121e6bdbb8/westeurope/764d04c0-c862-4ba0-871d-ba624e332d82 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: BC43FC24081B432EB39293F9579B178A Ref B: PNQ231110909023 Ref C: 2026-09-21T07:01:59Z' + status: + code: 200 + message: OK +- request: + body: '{"properties": {"objectType": "AzureFileShareRestoreRequest", "copyOptions": + "Overwrite", "recoveryType": "AlternateLocation", "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/afsuami09191425", + "restoreRequestType": "FullShareRestore", "identityInfo": {"isSystemAssignedIdentity": + false, "managedIdentityResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/afs-test-uami-09191425"}, + "targetDetails": {"name": "climsirec000001", "targetResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/afsuami09191425"}, + "restoreFileSpecs": [{"targetFolderPath": "restore000002"}]}}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - backup restore restore-azurefileshare + Connection: + - keep-alive + Content-Length: + - '876' + Content-Type: + - application/json + ParameterSetName: + - -g -v -c -i -r --restore-mode --resolve-conflict --target-storage-account + --target-file-share --target-folder --mi-user-assigned --query + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.41.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bbhar11-prt-restore-rg%3Bafsuami09191425/protectedItems/AzureFileShare%3Be87b827cf821b0e0bc080bd3cc0b18e6705bfb19d5c408cdd95c27c624f99024/recoveryPoints/1847532043816240297/restore?api-version=2026-07-01 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;storage;bhar11-prt-restore-rg;afsuami09191425/protectedItems/AzureFileShare;e87b827cf821b0e0bc080bd3cc0b18e6705bfb19d5c408cdd95c27c624f99024/operationsStatus/d786b69d-bb73-47ac-b2b0-34ed106e0f95?api-version=2026-07-01&t=639255709215541423&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=DOCMQuOg99UiyhpLajBU00rYo6PTVP1UVUSVz-Oc4DXO7kcqefdvnyADmo8lZTC8w-W2zzJyxwoyxXZ_mRWFoEiouJWg2uxU_FDrj-4qwyekn3fEkgONYSDcJVO7ik0aGuH2LUsm4DqcaWEiF65GM8F8xJl37AjRfS25UlgJXqWMCqG-iI5hJOAnPqnTQlOqI1R7wpJ1Lt8BvHXCIXMJ0qOvwTPD8w5iW_DlwPVRHNBPxU1uVW8t_pCm_c7qVN6qxWogjwXwHaogXVTv-T4EadKnpj88iDMyJPPu7HTNt4JkVkyWd0ZwdTV3Yb2Ls6InSVGTOzMZcDEsxMrLw3gx5A&h=sRcpM2i_77vT_tde488EmgU4Psj-DOoZXMWxhRSK3Kk + cache-control: + - no-cache + content-length: + - '0' + date: + - Mon, 21 Sep 2026 07:02:00 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;storage;bhar11-prt-restore-rg;afsuami09191425/protectedItems/AzureFileShare;e87b827cf821b0e0bc080bd3cc0b18e6705bfb19d5c408cdd95c27c624f99024/operationResults/d786b69d-bb73-47ac-b2b0-34ed106e0f95?api-version=2026-07-01&t=639255709215699116&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=m9D147cpLmLp13nyfXkYd8Ex3y5XSh4YDw8dw6RTlbKxueKagRcaZxfKrf8rKKofcpfZMT28NXjdxf1nW6kRPV10nqJi_2TBr7j3AnbYOKbJOWqSqj2jfqKQpvNtI_SrX2IMDhjrh6IbHsuAdMdsAzlyXG1k6tuq9B_vHMEdpVMr4LzntKA0Me4y9CP2q8sc84YuSPfnsnk-cGgJjestun9GeRKRyc4TARe9i0hqEeB1YSGHZgoDCsWY-c-m3xlpTRotTNe8pb-7QMB1aX4hDfrNAG_T5FZ2LqoQEUiNl9WIlpykHdXnmkvgG1jNWaJcO9Yy1ut-EGjZfyy-fuvBNA&h=iVlfu_e9PZA4zOGNa78-8Vln0xjlLwVnEmXQIO6MO8o + 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=d5f45f9e-867c-4805-9aba-55121e6bdbb8/westeurope/57a5cead-e0aa-4e66-bfaa-6d8cf6b40c6c + x-ms-ratelimit-remaining-subscription-global-writes: + - '11999' + x-ms-ratelimit-remaining-subscription-writes: + - '799' + x-msedge-ref: + - 'Ref A: D942190A787A486999BEC969B5CDCAAC Ref B: PNQ231110909062 Ref C: 2026-09-21T07:01:59Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup restore restore-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -i -r --restore-mode --resolve-conflict --target-storage-account + --target-file-share --target-folder --mi-user-assigned --query + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.41.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupOperations/d786b69d-bb73-47ac-b2b0-34ed106e0f95?api-version=2026-07-01 + response: + body: + string: '{"id":"d786b69d-bb73-47ac-b2b0-34ed106e0f95","name":"d786b69d-bb73-47ac-b2b0-34ed106e0f95","status":"Succeeded","startTime":"2026-09-21T07:02:01.0991002Z","endTime":"2026-09-21T07:02:01.0991002Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"d786b69d-bb73-47ac-b2b0-34ed106e0f95"}}' + headers: + cache-control: + - no-cache + content-length: + - '304' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 21 Sep 2026 07:02:02 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=d5f45f9e-867c-4805-9aba-55121e6bdbb8/westeurope/19f3da3f-b4bb-4aa4-a2cd-12a19952009f + x-ms-ratelimit-remaining-subscription-resource-requests: + - '249' + x-msedge-ref: + - 'Ref A: B526FEF437CD476BAC878BF7E1F8D565 Ref B: PNQ231110909040 Ref C: 2026-09-21T07:02:02Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup restore restore-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -i -r --restore-mode --resolve-conflict --target-storage-account + --target-file-share --target-folder --mi-user-assigned --query + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.41.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupJobs/d786b69d-bb73-47ac-b2b0-34ed106e0f95?api-version=2026-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupJobs/d786b69d-bb73-47ac-b2b0-34ed106e0f95","name":"d786b69d-bb73-47ac-b2b0-34ed106e0f95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","actionsInfo":["Cancellable"],"duration":"PT2.8949832S","storageAccountName":"afsuami09191425","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source + File Share Name":"climsirec000001","Source Storage Account Name":"afsuami09191425","Target + File Share Name":"climsirec000001","Target Storage Account Name":"afsuami09191425","Job + Type":"Recover to an alternate file share","RestoreDestination":"afsuami09191425/climsirec000001/restore000002","Data + Transferred (in MB)":"0","Number Of Restored Files":"0","Number Of Skipped + Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"climsirec000001","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2026-09-21T07:02:01.0991002Z","activityId":"53679831-b58a-11f1-adf5-6045bda581f9"}}' + headers: + cache-control: + - no-cache + content-length: + - '1195' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 21 Sep 2026 07:02:03 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=d5f45f9e-867c-4805-9aba-55121e6bdbb8/westeurope/b5212dca-448c-4920-b6ee-56214c081ae4 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '249' + x-msedge-ref: + - 'Ref A: 1D7616CF5FE64BC386713A0F9A2B37D5 Ref B: PNQ231110909023 Ref C: 2026-09-21T07:02:03Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -g -v -n + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.41.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupJobs/d786b69d-bb73-47ac-b2b0-34ed106e0f95?api-version=2026-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupJobs/d786b69d-bb73-47ac-b2b0-34ed106e0f95","name":"d786b69d-bb73-47ac-b2b0-34ed106e0f95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","actionsInfo":["Cancellable"],"duration":"PT3.6118335S","storageAccountName":"afsuami09191425","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source + File Share Name":"climsirec000001","Source Storage Account Name":"afsuami09191425","Target + File Share Name":"climsirec000001","Target Storage Account Name":"afsuami09191425","Job + Type":"Recover to an alternate file share","RestoreDestination":"afsuami09191425/climsirec000001/restore000002","Data + Transferred (in MB)":"0","Number Of Restored Files":"0","Number Of Skipped + Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"climsirec000001","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2026-09-21T07:02:01.0991002Z","activityId":"53679831-b58a-11f1-adf5-6045bda581f9"}}' + headers: + cache-control: + - no-cache + content-length: + - '1195' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 21 Sep 2026 07:02: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=d5f45f9e-867c-4805-9aba-55121e6bdbb8/westeurope/cfc37b15-99a5-4e2d-8fe6-68dab6ef9904 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '249' + x-msedge-ref: + - 'Ref A: 14D56FA662CC4782A7FAC2265E35AFB3 Ref B: PNQ231110906025 Ref C: 2026-09-21T07:02:04Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -g -v -n + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.41.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupJobs/d786b69d-bb73-47ac-b2b0-34ed106e0f95?api-version=2026-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupJobs/d786b69d-bb73-47ac-b2b0-34ed106e0f95","name":"d786b69d-bb73-47ac-b2b0-34ed106e0f95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","actionsInfo":["Cancellable"],"duration":"PT4.8066457S","storageAccountName":"afsuami09191425","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source + File Share Name":"climsirec000001","Source Storage Account Name":"afsuami09191425","Target + File Share Name":"climsirec000001","Target Storage Account Name":"afsuami09191425","Job + Type":"Recover to an alternate file share","RestoreDestination":"afsuami09191425/climsirec000001/restore000002","Data + Transferred (in MB)":"0","Number Of Restored Files":"0","Number Of Skipped + Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"climsirec000001","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2026-09-21T07:02:01.0991002Z","activityId":"53679831-b58a-11f1-adf5-6045bda581f9"}}' + headers: + cache-control: + - no-cache + content-length: + - '1195' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 21 Sep 2026 07:02: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-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=d5f45f9e-867c-4805-9aba-55121e6bdbb8/westeurope/413d70e7-314e-462a-b7af-82b58941e2cb + x-ms-ratelimit-remaining-subscription-resource-requests: + - '249' + x-msedge-ref: + - 'Ref A: E88ABBFBBD054FA2851030D6D309BC77 Ref B: PNQ231110906060 Ref C: 2026-09-21T07:02:05Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -g -v -n + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.41.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupJobs/d786b69d-bb73-47ac-b2b0-34ed106e0f95?api-version=2026-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupJobs/d786b69d-bb73-47ac-b2b0-34ed106e0f95","name":"d786b69d-bb73-47ac-b2b0-34ed106e0f95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","actionsInfo":["Cancellable"],"duration":"PT35.7055811S","storageAccountName":"afsuami09191425","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source + File Share Name":"climsirec000001","Source Storage Account Name":"afsuami09191425","Target + File Share Name":"climsirec000001","Target Storage Account Name":"afsuami09191425","Job + Type":"Recover to an alternate file share","RestoreDestination":"afsuami09191425/climsirec000001/restore000002","Data + Transferred (in MB)":"0","Number Of Restored Files":"0","Number Of Skipped + Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"climsirec000001","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2026-09-21T07:02:01.0991002Z","activityId":"53679831-b58a-11f1-adf5-6045bda581f9"}}' + headers: + cache-control: + - no-cache + content-length: + - '1196' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 21 Sep 2026 07:02:36 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=d5f45f9e-867c-4805-9aba-55121e6bdbb8/westeurope/46ab2da0-3ba0-4fd6-94a6-39bc44c009ff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '249' + x-msedge-ref: + - 'Ref A: 3CA3E7A6BC4742D1BB1C03DCF859D7C8 Ref B: PNQ231110909040 Ref C: 2026-09-21T07:02:36Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -g -v -n + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.41.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupJobs/d786b69d-bb73-47ac-b2b0-34ed106e0f95?api-version=2026-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupJobs/d786b69d-bb73-47ac-b2b0-34ed106e0f95","name":"d786b69d-bb73-47ac-b2b0-34ed106e0f95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","actionsInfo":["Cancellable"],"duration":"PT1M6.8515788S","storageAccountName":"afsuami09191425","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source + File Share Name":"climsirec000001","Source Storage Account Name":"afsuami09191425","Target + File Share Name":"climsirec000001","Target Storage Account Name":"afsuami09191425","Job + Type":"Recover to an alternate file share","RestoreDestination":"afsuami09191425/climsirec000001/restore000002","Data + Transferred (in MB)":"0","Number Of Restored Files":"0","Number Of Skipped + Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"climsirec000001","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2026-09-21T07:02:01.0991002Z","activityId":"53679831-b58a-11f1-adf5-6045bda581f9"}}' + headers: + cache-control: + - no-cache + content-length: + - '1197' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 21 Sep 2026 07:03: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-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=d5f45f9e-867c-4805-9aba-55121e6bdbb8/westeurope/aace5fd0-afbb-4643-86d0-62f39af42e67 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '249' + x-msedge-ref: + - 'Ref A: 1E4A7DF408844392B33995000432AE27 Ref B: PNQ231110908031 Ref C: 2026-09-21T07:03:07Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -g -v -n + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.41.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupJobs/d786b69d-bb73-47ac-b2b0-34ed106e0f95?api-version=2026-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupJobs/d786b69d-bb73-47ac-b2b0-34ed106e0f95","name":"d786b69d-bb73-47ac-b2b0-34ed106e0f95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","actionsInfo":["Cancellable"],"duration":"PT1M38.0074044S","storageAccountName":"afsuami09191425","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source + File Share Name":"climsirec000001","Source Storage Account Name":"afsuami09191425","Recovery + Point Time in UTC":"9/21/2026 7:00:49 AM","Target File Share Name":"climsirec000001","Target + Storage Account Name":"afsuami09191425","Job Type":"Recover to an alternate + file share","RestoreDestination":"afsuami09191425/climsirec000001/restore000002","Data + Transferred (in MB)":"0","Number Of Restored Files":"0","Number Of Skipped + Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"climsirec000001","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2026-09-21T07:02:01.0991002Z","activityId":"53679831-b58a-11f1-adf5-6045bda581f9"}}' + headers: + cache-control: + - no-cache + content-length: + - '1250' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 21 Sep 2026 07:03:38 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=d5f45f9e-867c-4805-9aba-55121e6bdbb8/westeurope/d162016e-cf33-4f3d-a6bd-c1f56f1dc568 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '249' + x-msedge-ref: + - 'Ref A: 41B7D3FDF0B44958828C3B243633C6CF Ref B: PNQ231110906025 Ref C: 2026-09-21T07:03:38Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -g -v -n + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.41.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupJobs/d786b69d-bb73-47ac-b2b0-34ed106e0f95?api-version=2026-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupJobs/d786b69d-bb73-47ac-b2b0-34ed106e0f95","name":"d786b69d-bb73-47ac-b2b0-34ed106e0f95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","actionsInfo":["Cancellable"],"duration":"PT2M9.2741003S","storageAccountName":"afsuami09191425","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source + File Share Name":"climsirec000001","Source Storage Account Name":"afsuami09191425","Recovery + Point Time in UTC":"9/21/2026 7:00:49 AM","Target File Share Name":"climsirec000001","Target + Storage Account Name":"afsuami09191425","Job Type":"Recover to an alternate + file share","RestoreDestination":"afsuami09191425/climsirec000001/restore000002","Data + Transferred (in MB)":"0","Number Of Restored Files":"0","Number Of Skipped + Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"climsirec000001","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2026-09-21T07:02:01.0991002Z","activityId":"53679831-b58a-11f1-adf5-6045bda581f9"}}' + headers: + cache-control: + - no-cache + content-length: + - '1249' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 21 Sep 2026 07:04: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=d5f45f9e-867c-4805-9aba-55121e6bdbb8/westeurope/93a7dafe-d231-4fcb-8914-e94198d46477 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '249' + x-msedge-ref: + - 'Ref A: 643EEF27138F48C3A2400B1ADEA26640 Ref B: PNQ231110909052 Ref C: 2026-09-21T07:04:09Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -g -v -n + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.41.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupJobs/d786b69d-bb73-47ac-b2b0-34ed106e0f95?api-version=2026-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupJobs/d786b69d-bb73-47ac-b2b0-34ed106e0f95","name":"d786b69d-bb73-47ac-b2b0-34ed106e0f95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","actionsInfo":["Cancellable"],"duration":"PT2M40.8132233S","storageAccountName":"afsuami09191425","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source + File Share Name":"climsirec000001","Source Storage Account Name":"afsuami09191425","Recovery + Point Time in UTC":"9/21/2026 7:00:49 AM","Target File Share Name":"climsirec000001","Target + Storage Account Name":"afsuami09191425","Job Type":"Recover to an alternate + file share","RestoreDestination":"afsuami09191425/climsirec000001/restore000002","Data + Transferred (in MB)":"0","Number Of Restored Files":"0","Number Of Skipped + Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"climsirec000001","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2026-09-21T07:02:01.0991002Z","activityId":"53679831-b58a-11f1-adf5-6045bda581f9"}}' + headers: + cache-control: + - no-cache + content-length: + - '1250' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 21 Sep 2026 07:04:41 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=d5f45f9e-867c-4805-9aba-55121e6bdbb8/westeurope/664008dc-b4df-49da-9c17-fa1246ca4c0d + x-ms-ratelimit-remaining-subscription-resource-requests: + - '249' + x-msedge-ref: + - 'Ref A: 685B9877DBBB41E0BB63EAA5F695A530 Ref B: PNQ231110907054 Ref C: 2026-09-21T07:04:40Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -g -v -n + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.41.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupJobs/d786b69d-bb73-47ac-b2b0-34ed106e0f95?api-version=2026-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupJobs/d786b69d-bb73-47ac-b2b0-34ed106e0f95","name":"d786b69d-bb73-47ac-b2b0-34ed106e0f95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","actionsInfo":["Cancellable"],"duration":"PT3M12.0149111S","storageAccountName":"afsuami09191425","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source + File Share Name":"climsirec000001","Source Storage Account Name":"afsuami09191425","Recovery + Point Time in UTC":"9/21/2026 7:00:49 AM","Target File Share Name":"climsirec000001","Target + Storage Account Name":"afsuami09191425","Job Type":"Recover to an alternate + file share","RestoreDestination":"afsuami09191425/climsirec000001/restore000002","Data + Transferred (in MB)":"0","Number Of Restored Files":"0","Number Of Skipped + Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"climsirec000001","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2026-09-21T07:02:01.0991002Z","activityId":"53679831-b58a-11f1-adf5-6045bda581f9"}}' + headers: + cache-control: + - no-cache + content-length: + - '1250' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 21 Sep 2026 07:05:12 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=d5f45f9e-867c-4805-9aba-55121e6bdbb8/westeurope/e764e1d5-7c00-4d02-9ea1-bc9bf6317cca + x-ms-ratelimit-remaining-subscription-resource-requests: + - '249' + x-msedge-ref: + - 'Ref A: 316E3628FF4546CEA31CC8D3258F3F13 Ref B: PNQ231110909040 Ref C: 2026-09-21T07:05:12Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -g -v -n + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.41.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupJobs/d786b69d-bb73-47ac-b2b0-34ed106e0f95?api-version=2026-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupJobs/d786b69d-bb73-47ac-b2b0-34ed106e0f95","name":"d786b69d-bb73-47ac-b2b0-34ed106e0f95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","actionsInfo":["Cancellable"],"duration":"PT3M43.20835S","storageAccountName":"afsuami09191425","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source + File Share Name":"climsirec000001","Source Storage Account Name":"afsuami09191425","Recovery + Point Time in UTC":"9/21/2026 7:00:49 AM","Target File Share Name":"climsirec000001","Target + Storage Account Name":"afsuami09191425","Job Type":"Recover to an alternate + file share","RestoreDestination":"afsuami09191425/climsirec000001/restore000002","Data + Transferred (in MB)":"0","Number Of Restored Files":"0","Number Of Skipped + Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"climsirec000001","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2026-09-21T07:02:01.0991002Z","activityId":"53679831-b58a-11f1-adf5-6045bda581f9"}}' + headers: + cache-control: + - no-cache + content-length: + - '1248' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 21 Sep 2026 07:05:43 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=d5f45f9e-867c-4805-9aba-55121e6bdbb8/westeurope/bd70364b-09b7-45d0-b5b4-e859e70b760a + x-ms-ratelimit-remaining-subscription-resource-requests: + - '249' + x-msedge-ref: + - 'Ref A: 22FBE44E39EC4F31A486F5436F7D9669 Ref B: PNQ231110908031 Ref C: 2026-09-21T07:05:43Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -g -v -n + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.41.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupJobs/d786b69d-bb73-47ac-b2b0-34ed106e0f95?api-version=2026-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupJobs/d786b69d-bb73-47ac-b2b0-34ed106e0f95","name":"d786b69d-bb73-47ac-b2b0-34ed106e0f95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","actionsInfo":["Cancellable"],"duration":"PT4M14.4700986S","storageAccountName":"afsuami09191425","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source + File Share Name":"climsirec000001","Source Storage Account Name":"afsuami09191425","Recovery + Point Time in UTC":"9/21/2026 7:00:49 AM","Target File Share Name":"climsirec000001","Target + Storage Account Name":"afsuami09191425","Job Type":"Recover to an alternate + file share","RestoreDestination":"afsuami09191425/climsirec000001/restore000002","Data + Transferred (in MB)":"0","Number Of Restored Files":"0","Number Of Skipped + Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"climsirec000001","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2026-09-21T07:02:01.0991002Z","activityId":"53679831-b58a-11f1-adf5-6045bda581f9"}}' + headers: + cache-control: + - no-cache + content-length: + - '1250' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 21 Sep 2026 07:06:15 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=d5f45f9e-867c-4805-9aba-55121e6bdbb8/westeurope/7f1b0762-1fc1-423a-b68c-e45e75cc5894 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '249' + x-msedge-ref: + - 'Ref A: 840A2D18C3FC44AC87B259ADD4F29DB5 Ref B: PNQ231110907062 Ref C: 2026-09-21T07:06:14Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -g -v -n + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.41.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupJobs/d786b69d-bb73-47ac-b2b0-34ed106e0f95?api-version=2026-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupJobs/d786b69d-bb73-47ac-b2b0-34ed106e0f95","name":"d786b69d-bb73-47ac-b2b0-34ed106e0f95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","actionsInfo":["Cancellable"],"duration":"PT4M45.6940485S","storageAccountName":"afsuami09191425","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source + File Share Name":"climsirec000001","Source Storage Account Name":"afsuami09191425","Recovery + Point Time in UTC":"9/21/2026 7:00:49 AM","Target File Share Name":"climsirec000001","Target + Storage Account Name":"afsuami09191425","Job Type":"Recover to an alternate + file share","RestoreDestination":"afsuami09191425/climsirec000001/restore000002","Data + Transferred (in MB)":"0","Number Of Restored Files":"0","Number Of Skipped + Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"climsirec000001","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2026-09-21T07:02:01.0991002Z","activityId":"53679831-b58a-11f1-adf5-6045bda581f9"}}' + headers: + cache-control: + - no-cache + content-length: + - '1250' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 21 Sep 2026 07:06:46 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=d5f45f9e-867c-4805-9aba-55121e6bdbb8/westeurope/216c5f78-7044-4d8d-bd2a-c63db77faf9f + x-ms-ratelimit-remaining-subscription-resource-requests: + - '249' + x-msedge-ref: + - 'Ref A: 35C78A980E564421B436D758A488DB61 Ref B: PNQ231110909029 Ref C: 2026-09-21T07:06:46Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -g -v -n + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.41.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupJobs/d786b69d-bb73-47ac-b2b0-34ed106e0f95?api-version=2026-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupJobs/d786b69d-bb73-47ac-b2b0-34ed106e0f95","name":"d786b69d-bb73-47ac-b2b0-34ed106e0f95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","actionsInfo":["Cancellable"],"duration":"PT5M12.931919S","storageAccountName":"afsuami09191425","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source + File Share Name":"climsirec000001","Source Storage Account Name":"afsuami09191425","Recovery + Point Time in UTC":"9/21/2026 7:00:49 AM","Target File Share Name":"climsirec000001","Target + Storage Account Name":"afsuami09191425","Job Type":"Recover to an alternate + file share","RestoreDestination":"afsuami09191425/climsirec000001/restore000002","Data + Transferred (in MB)":"0","Number Of Restored Files":"0","Number Of Skipped + Files":"0","Number Of Failed Files":"0","Number Of Restored Directories":"1","Number + Of Skipped Directories":"0","Number Of Failed Directories":"0"}},"isUserTriggered":false,"entityFriendlyName":"climsirec000001","backupManagementType":"AzureStorage","operation":"Restore","status":"Completed","startTime":"2026-09-21T07:02:01.0991002Z","endTime":"2026-09-21T07:07:14.0310192Z","activityId":"53679831-b58a-11f1-adf5-6045bda581f9"}}' + headers: + cache-control: + - no-cache + content-length: + - '1397' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 21 Sep 2026 07:07:17 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=d5f45f9e-867c-4805-9aba-55121e6bdbb8/westeurope/624a4133-c260-4d7f-a1ea-6c5916fa5c9f + x-ms-ratelimit-remaining-subscription-resource-requests: + - '249' + x-msedge-ref: + - 'Ref A: F2DBA7FEF8E34518AF14059278735D75 Ref B: PNQ231110908040 Ref C: 2026-09-21T07:07:17Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job show + Connection: + - keep-alive + ParameterSetName: + - -g -v -n + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.41.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupJobs/d786b69d-bb73-47ac-b2b0-34ed106e0f95?api-version=2026-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupJobs/d786b69d-bb73-47ac-b2b0-34ed106e0f95","name":"d786b69d-bb73-47ac-b2b0-34ed106e0f95","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","actionsInfo":["Cancellable"],"duration":"PT5M12.931919S","storageAccountName":"afsuami09191425","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source + File Share Name":"climsirec000001","Source Storage Account Name":"afsuami09191425","Recovery + Point Time in UTC":"9/21/2026 7:00:49 AM","Target File Share Name":"climsirec000001","Target + Storage Account Name":"afsuami09191425","Job Type":"Recover to an alternate + file share","RestoreDestination":"afsuami09191425/climsirec000001/restore000002","Data + Transferred (in MB)":"0","Number Of Restored Files":"0","Number Of Skipped + Files":"0","Number Of Failed Files":"0","Number Of Restored Directories":"1","Number + Of Skipped Directories":"0","Number Of Failed Directories":"0"}},"isUserTriggered":false,"entityFriendlyName":"climsirec000001","backupManagementType":"AzureStorage","operation":"Restore","status":"Completed","startTime":"2026-09-21T07:02:01.0991002Z","endTime":"2026-09-21T07:07:14.0310192Z","activityId":"53679831-b58a-11f1-adf5-6045bda581f9"}}' + headers: + cache-control: + - no-cache + content-length: + - '1397' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 21 Sep 2026 07:07:48 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=d5f45f9e-867c-4805-9aba-55121e6bdbb8/westeurope/7a3ce31c-019e-4fb1-961d-0e320b803169 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '249' + x-msedge-ref: + - 'Ref A: 7FE1B572B1ED4785BACC5E6F750CEEEC Ref B: PNQ231110907060 Ref C: 2026-09-21T07:07:48Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup restore restore-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -i -r --restore-mode --resolve-conflict --target-subscription-id + --target-resource-group-name --target-storage-account --target-file-share + --target-folder --mi-user-assigned --query + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.41.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bbhar11-prt-restore-rg%3Bafsuami09191425/protectedItems/AzureFileShare%3Be87b827cf821b0e0bc080bd3cc0b18e6705bfb19d5c408cdd95c27c624f99024?api-version=2026-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;storage;bhar11-prt-restore-rg;afsuami09191425/protectedItems/AzureFileShare;e87b827cf821b0e0bc080bd3cc0b18e6705bfb19d5c408cdd95c27c624f99024","name":"AzureFileShare;e87b827cf821b0e0bc080bd3cc0b18e6705bfb19d5c408cdd95c27c624f99024","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"climsirec000001","fileShareProtocol":"SMB","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Completed","lastBackupTime":"2026-09-21T07:00:44.2543418Z","extendedInfo":{"oldestRecoveryPoint":"2026-09-21T07:00:47Z","recoveryPointCount":1,"policyState":"Consistent","resourceState":"Active","resourceStateSyncTime":"2026-09-21T07:00:52Z"},"protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;bhar11-prt-restore-rg;afsuami09191425","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.storage/storageAccounts/afsuami09191425","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupPolicies/bhar11-prt-snapshot-policy","lastRecoveryPoint":"2026-09-21T07:00:47Z","vaultId":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv","isArchiveEnabled":false,"softDeleteRetentionPeriod":0,"sourceLocation":"westeurope","sourceSideScanInfo":{"sourceSideScanStatus":"NotApplicable","sourceSideScanSummary":"NotApplicable"}}}' + headers: + cache-control: + - no-cache + content-length: + - '1937' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 21 Sep 2026 07:07:49 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=d5f45f9e-867c-4805-9aba-55121e6bdbb8/westeurope/2cd56519-669f-45dd-bbca-5d362a9435d5 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '249' + x-msedge-ref: + - 'Ref A: ACCF70BAA8D841E6836B928F65056395 Ref B: PNQ231110909025 Ref C: 2026-09-21T07:07:49Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup restore restore-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -i -r --restore-mode --resolve-conflict --target-subscription-id + --target-resource-group-name --target-storage-account --target-file-share + --target-folder --mi-user-assigned --query + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.41.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/bhar11-prt-restore-rg/providers/Microsoft.ClassicStorage/storageAccounts/afsuami09191425?api-version=2015-12-01 + response: + body: + string: '{"error":{"code":"InvalidResourceNamespace","message":"The resource + namespace ''Microsoft.ClassicStorage'' is invalid."}}' + headers: + cache-control: + - no-cache + content-length: + - '119' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 21 Sep 2026 07:07:50 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-failure-cause: + - gateway + x-msedge-ref: + - 'Ref A: 24CEE5EBAE294573BA28DD7B68D0066F Ref B: PNQ231110909034 Ref C: 2026-09-21T07:07:50Z' + status: + code: 404 + message: Not Found +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup restore restore-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -i -r --restore-mode --resolve-conflict --target-subscription-id + --target-resource-group-name --target-storage-account --target-file-share + --target-folder --mi-user-assigned --query + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.41.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/afsuami09191425?api-version=2016-01-01 + response: + body: + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/afsuami09191425","name":"afsuami09191425","type":"Microsoft.Storage/storageAccounts","location":"westeurope","tags":{"DisableLocalAuth":"false","BCDR":"NA","DeleteBy":"10-2026","ETA":"10-2026","ManagerAlias":"bharatp","Owner":"bharatp","Purpose":"AFS-MSI-Manual-Test","Reason":"AFS-MSI-Manual-Test","SourceRegion":"westeurope","TestType":"E2E","Workload":"AzureFileShareBackup"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2026-09-19T08:57:56.7020787Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2026-09-19T08:57:56.1784894Z","primaryEndpoints":{"blob":"https://afsuami09191425.blob.core.windows.net/","queue":"https://afsuami09191425.queue.core.windows.net/","table":"https://afsuami09191425.table.core.windows.net/","file":"https://afsuami09191425.file.core.windows.net/"},"primaryLocation":"westeurope","statusOfPrimary":"available"}}' + headers: + cache-control: + - no-cache + content-length: + - '1139' + content-type: + - application/json + date: + - Mon, 21 Sep 2026 07:07:51 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 8623FDBE69B94C9AAF8698F64B0E6A3F Ref B: PNQ231110908025 Ref C: 2026-09-21T07:07:51Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup restore restore-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -i -r --restore-mode --resolve-conflict --target-subscription-id + --target-resource-group-name --target-storage-account --target-file-share + --target-folder --mi-user-assigned --query + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.41.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/afs-softdelete-rg/providers/Microsoft.ClassicStorage/storageAccounts/bhar11csrtgtsa?api-version=2015-12-01 + response: + body: + string: '{"error":{"code":"InvalidResourceNamespace","message":"The resource + namespace ''Microsoft.ClassicStorage'' is invalid."}}' + headers: + cache-control: + - no-cache + content-length: + - '119' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 21 Sep 2026 07:07:52 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-failure-cause: + - gateway + x-msedge-ref: + - 'Ref A: 439E341A819840B09EF4473B39FCF779 Ref B: PNQ231110907029 Ref C: 2026-09-21T07:07:52Z' + status: + code: 404 + message: Not Found +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup restore restore-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -i -r --restore-mode --resolve-conflict --target-subscription-id + --target-resource-group-name --target-storage-account --target-file-share + --target-folder --mi-user-assigned --query + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.41.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/afs-softdelete-rg/providers/Microsoft.Storage/storageAccounts/bhar11csrtgtsa?api-version=2016-01-01 + response: + body: + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/afs-softdelete-rg/providers/Microsoft.Storage/storageAccounts/bhar11csrtgtsa","name":"bhar11csrtgtsa","type":"Microsoft.Storage/storageAccounts","location":"eastasia","tags":{"DisableLocalAuth":"true","ETA":"01-01-2027","Owner":"bharatpurwar","Reason":"AFS-MSI-CSR-target"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2026-08-12T19:51:47.9222329Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2026-08-12T19:51:47.8072850Z","primaryEndpoints":{"blob":"https://bhar11csrtgtsa.blob.core.windows.net/","queue":"https://bhar11csrtgtsa.queue.core.windows.net/","table":"https://bhar11csrtgtsa.table.core.windows.net/","file":"https://bhar11csrtgtsa.file.core.windows.net/"},"primaryLocation":"eastasia","statusOfPrimary":"available"}}' + headers: + cache-control: + - no-cache + content-length: + - '962' + content-type: + - application/json + date: + - Mon, 21 Sep 2026 07:07:53 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: B4DD7FB26D0541C89447AD8DD423972B Ref B: PNQ231110908062 Ref C: 2026-09-21T07:07:53Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup restore restore-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -i -r --restore-mode --resolve-conflict --target-subscription-id + --target-resource-group-name --target-storage-account --target-file-share + --target-folder --mi-user-assigned --query + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.41.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupResourceGuardProxies?api-version=2026-07-01 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 21 Sep 2026 07:07:54 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=d5f45f9e-867c-4805-9aba-55121e6bdbb8/westeurope/69a7e602-8780-4002-9498-55318de63f55 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: A0458378A168462E8F90BCE4F97D684E Ref B: PNQ231110906036 Ref C: 2026-09-21T07:07:54Z' + status: + code: 200 + message: OK +- request: + body: '{"properties": {"objectType": "AzureFileShareRestoreRequest", "copyOptions": + "Overwrite", "recoveryType": "AlternateLocation", "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.Storage/storageAccounts/afsuami09191425", + "restoreRequestType": "FullShareRestore", "identityInfo": {"isSystemAssignedIdentity": + false, "managedIdentityResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/afs-test-uami-09191425"}, + "targetDetails": {"name": "restoredfs", "targetResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/afs-softdelete-rg/providers/Microsoft.Storage/storageAccounts/bhar11csrtgtsa"}, + "restoreFileSpecs": [{"targetFolderPath": "csrrestore000003"}]}}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - backup restore restore-azurefileshare + Connection: + - keep-alive + Content-Length: + - '869' + Content-Type: + - application/json + ParameterSetName: + - -g -v -c -i -r --restore-mode --resolve-conflict --target-subscription-id + --target-resource-group-name --target-storage-account --target-file-share + --target-folder --mi-user-assigned --query + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.41.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bbhar11-prt-restore-rg%3Bafsuami09191425/protectedItems/AzureFileShare%3Be87b827cf821b0e0bc080bd3cc0b18e6705bfb19d5c408cdd95c27c624f99024/recoveryPoints/1847532043816240297/restore?api-version=2026-07-01 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;storage;bhar11-prt-restore-rg;afsuami09191425/protectedItems/AzureFileShare;e87b827cf821b0e0bc080bd3cc0b18e6705bfb19d5c408cdd95c27c624f99024/operationsStatus/9ea4e2ca-9632-418b-8e19-d49381781957?api-version=2026-07-01&t=639255712774271927&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=lNLu-JactQKFoC6jyXis56EqmUsXx0WGny2_uYlKvnOKcy2--nM4sseVnmqkfJ5Yj8nGUNeoQJilKpR9Q5j2kwuIvP8n4vIQ8FFNSUiy6a5bw2h35cNX5k6Ih_ODsnCnxhM_n6Fw1dJeAb42S149ecgCJP7XAPUipLfYV9urvy3BB73838riOxGurQb2faFUU5oumLjtKJsueBuzqbcQWDa19obJN9soanJzMTToLgHdeFXyvWHhbJcgCZCZj4CVFPKssGVrTLTzBnIJVufeE8O5G2FqPDhSP00yACAIKeLRX7uUw8ml1lfg55WXDfOPRBBgqPgnXLWDs2U3YDO9CQ&h=jeb5_P2c_BEqsBCP8ck-FS7Ye7ZgHw2d-yW1ulOauHM + cache-control: + - no-cache + content-length: + - '0' + date: + - Mon, 21 Sep 2026 07:07:57 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;storage;bhar11-prt-restore-rg;afsuami09191425/protectedItems/AzureFileShare;e87b827cf821b0e0bc080bd3cc0b18e6705bfb19d5c408cdd95c27c624f99024/operationResults/9ea4e2ca-9632-418b-8e19-d49381781957?api-version=2026-07-01&t=639255712774271927&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=YozAzoPbhCB_qAlM9XNyzW6Hx4nAVQ_fKVopagXCotWedb7PY4l_kgHsEvUYs2T5gVw6--ZoNLs6ijDFFszDZUZUJ2bDSfJcH_thQRQdObEvQuRZ_gXKjOVyKMqtyHdlsao6bUKTp9YLa0Zvlw9LkV2kby-nWDNBEVwZ77TidYvapxJerQAhrwyPzqvnFo4lPD3B2njThIOLadh431I7JTnNrSG-6E8hE7wAcWkHxDbBkv9qQ8KRPk6FBlVi2Avn7O9m73F06benceGs9rgs30tNRXD7WMKFqQCEJ8CDOzanTYk9mFJLb39boLj2E5uOS4iRXAPtLAlP3nVed7ERsA&h=MgPxkJQrnC2eAgDAXVmY87nCSsK5Af2ZWtGUizfVBeI + 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=d5f45f9e-867c-4805-9aba-55121e6bdbb8/westeurope/8d460689-8354-455b-ad17-b786ce357564 + x-ms-ratelimit-remaining-subscription-global-writes: + - '11999' + x-ms-ratelimit-remaining-subscription-writes: + - '799' + x-msedge-ref: + - 'Ref A: 27B5C5FCEA23495986119200CFD082AC Ref B: PNQ231110906052 Ref C: 2026-09-21T07:07:55Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup restore restore-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -i -r --restore-mode --resolve-conflict --target-subscription-id + --target-resource-group-name --target-storage-account --target-file-share + --target-folder --mi-user-assigned --query + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.41.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupOperations/9ea4e2ca-9632-418b-8e19-d49381781957?api-version=2026-07-01 + response: + body: + string: '{"id":"9ea4e2ca-9632-418b-8e19-d49381781957","name":"9ea4e2ca-9632-418b-8e19-d49381781957","status":"Succeeded","startTime":"2026-09-21T07:07:56.7589257Z","endTime":"2026-09-21T07:07:56.7589257Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"9ea4e2ca-9632-418b-8e19-d49381781957"}}' + headers: + cache-control: + - no-cache + content-length: + - '304' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 21 Sep 2026 07:07:57 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=d5f45f9e-867c-4805-9aba-55121e6bdbb8/westeurope/00af046f-ba4a-498c-8c36-2a51730d69c7 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '249' + x-msedge-ref: + - 'Ref A: DC2B1250438F44F38046C622D62CA33C Ref B: PNQ231110906034 Ref C: 2026-09-21T07:07:57Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup restore restore-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -i -r --restore-mode --resolve-conflict --target-subscription-id + --target-resource-group-name --target-storage-account --target-file-share + --target-folder --mi-user-assigned --query + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.41.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupJobs/9ea4e2ca-9632-418b-8e19-d49381781957?api-version=2026-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupJobs/9ea4e2ca-9632-418b-8e19-d49381781957","name":"9ea4e2ca-9632-418b-8e19-d49381781957","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","actionsInfo":["Cancellable"],"duration":"PT3.0136101S","storageAccountName":"afsuami09191425","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source + File Share Name":"climsirec000001","Source Storage Account Name":"afsuami09191425","Target + File Share Name":"restoredfs","Target Storage Account Name":"bhar11csrtgtsa","Job + Type":"Recover to an alternate file share","RestoreDestination":"bhar11csrtgtsa/restoredfs/csrrestore000003","Data + Transferred (in MB)":"0","Number Of Restored Files":"0","Number Of Skipped + Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"climsirec000001","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2026-09-21T07:07:56.7589257Z","activityId":"274d6083-b58b-11f1-86e8-6045bda581f9"}}' + headers: + cache-control: + - no-cache + content-length: + - '1186' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 21 Sep 2026 07:07:59 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=d5f45f9e-867c-4805-9aba-55121e6bdbb8/westeurope/ad749d70-72ee-463b-9332-1f0b8ec47d18 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '249' + x-msedge-ref: + - 'Ref A: 16F9795B94024038AF3F65D840F4A232 Ref B: PNQ231110908042 Ref C: 2026-09-21T07:07:59Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -g -v -n + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.41.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupJobs/9ea4e2ca-9632-418b-8e19-d49381781957?api-version=2026-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupJobs/9ea4e2ca-9632-418b-8e19-d49381781957","name":"9ea4e2ca-9632-418b-8e19-d49381781957","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","actionsInfo":["Cancellable"],"duration":"PT4.3197351S","storageAccountName":"afsuami09191425","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source + File Share Name":"climsirec000001","Source Storage Account Name":"afsuami09191425","Target + File Share Name":"restoredfs","Target Storage Account Name":"bhar11csrtgtsa","Job + Type":"Recover to an alternate file share","RestoreDestination":"bhar11csrtgtsa/restoredfs/csrrestore000003","Data + Transferred (in MB)":"0","Number Of Restored Files":"0","Number Of Skipped + Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"climsirec000001","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2026-09-21T07:07:56.7589257Z","activityId":"274d6083-b58b-11f1-86e8-6045bda581f9"}}' + headers: + cache-control: + - no-cache + content-length: + - '1186' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 21 Sep 2026 07:08:01 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=d5f45f9e-867c-4805-9aba-55121e6bdbb8/westeurope/a9aed8f6-d440-47e3-a450-8e9a4b75725f + x-ms-ratelimit-remaining-subscription-resource-requests: + - '249' + x-msedge-ref: + - 'Ref A: 09D6FD2B10934896A80D2441B4781EB1 Ref B: PNQ231110907036 Ref C: 2026-09-21T07:08:00Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -g -v -n + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.41.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupJobs/9ea4e2ca-9632-418b-8e19-d49381781957?api-version=2026-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupJobs/9ea4e2ca-9632-418b-8e19-d49381781957","name":"9ea4e2ca-9632-418b-8e19-d49381781957","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","actionsInfo":["Cancellable"],"duration":"PT5.3100525S","storageAccountName":"afsuami09191425","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source + File Share Name":"climsirec000001","Source Storage Account Name":"afsuami09191425","Target + File Share Name":"restoredfs","Target Storage Account Name":"bhar11csrtgtsa","Job + Type":"Recover to an alternate file share","RestoreDestination":"bhar11csrtgtsa/restoredfs/csrrestore000003","Data + Transferred (in MB)":"0","Number Of Restored Files":"0","Number Of Skipped + Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"climsirec000001","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2026-09-21T07:07:56.7589257Z","activityId":"274d6083-b58b-11f1-86e8-6045bda581f9"}}' + headers: + cache-control: + - no-cache + content-length: + - '1186' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 21 Sep 2026 07:08:01 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=d5f45f9e-867c-4805-9aba-55121e6bdbb8/westeurope/35b60cdd-6779-4398-bafa-a9563250412a + x-ms-ratelimit-remaining-subscription-resource-requests: + - '249' + x-msedge-ref: + - 'Ref A: 7B0D1387B9D541468AED882472B3A11A Ref B: PNQ231110909040 Ref C: 2026-09-21T07:08:01Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -g -v -n + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.41.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupJobs/9ea4e2ca-9632-418b-8e19-d49381781957?api-version=2026-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupJobs/9ea4e2ca-9632-418b-8e19-d49381781957","name":"9ea4e2ca-9632-418b-8e19-d49381781957","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","actionsInfo":["Cancellable"],"duration":"PT36.5032445S","storageAccountName":"afsuami09191425","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source + File Share Name":"climsirec000001","Source Storage Account Name":"afsuami09191425","Target + File Share Name":"restoredfs","Target Storage Account Name":"bhar11csrtgtsa","Job + Type":"Recover to an alternate file share","RestoreDestination":"bhar11csrtgtsa/restoredfs/csrrestore000003","Data + Transferred (in MB)":"0","Number Of Restored Files":"0","Number Of Skipped + Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"climsirec000001","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2026-09-21T07:07:56.7589257Z","activityId":"274d6083-b58b-11f1-86e8-6045bda581f9"}}' + headers: + cache-control: + - no-cache + content-length: + - '1187' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 21 Sep 2026 07:08:32 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=d5f45f9e-867c-4805-9aba-55121e6bdbb8/westeurope/047da357-5c2d-48dc-8eea-82a23dfca93a + x-ms-ratelimit-remaining-subscription-resource-requests: + - '249' + x-msedge-ref: + - 'Ref A: AD8CBBFFC86D49DC9C67AD52B49CA122 Ref B: PNQ231110908023 Ref C: 2026-09-21T07:08:32Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -g -v -n + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.41.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupJobs/9ea4e2ca-9632-418b-8e19-d49381781957?api-version=2026-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupJobs/9ea4e2ca-9632-418b-8e19-d49381781957","name":"9ea4e2ca-9632-418b-8e19-d49381781957","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","actionsInfo":["Cancellable"],"duration":"PT1M7.7984316S","storageAccountName":"afsuami09191425","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source + File Share Name":"climsirec000001","Source Storage Account Name":"afsuami09191425","Target + File Share Name":"restoredfs","Target Storage Account Name":"bhar11csrtgtsa","Job + Type":"Recover to an alternate file share","RestoreDestination":"bhar11csrtgtsa/restoredfs/csrrestore000003","Data + Transferred (in MB)":"0","Number Of Restored Files":"0","Number Of Skipped + Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"climsirec000001","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2026-09-21T07:07:56.7589257Z","activityId":"274d6083-b58b-11f1-86e8-6045bda581f9"}}' + headers: + cache-control: + - no-cache + content-length: + - '1188' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 21 Sep 2026 07:09: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=d5f45f9e-867c-4805-9aba-55121e6bdbb8/westeurope/56392316-7890-45c9-abf8-9b72acb1ef7f + x-ms-ratelimit-remaining-subscription-resource-requests: + - '249' + x-msedge-ref: + - 'Ref A: 83B207DCEFD3491E905AA35AA33C9BA8 Ref B: PNQ231110906060 Ref C: 2026-09-21T07:09:03Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -g -v -n + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.41.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupJobs/9ea4e2ca-9632-418b-8e19-d49381781957?api-version=2026-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupJobs/9ea4e2ca-9632-418b-8e19-d49381781957","name":"9ea4e2ca-9632-418b-8e19-d49381781957","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","actionsInfo":["Cancellable"],"duration":"PT1M38.9704022S","storageAccountName":"afsuami09191425","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source + File Share Name":"climsirec000001","Source Storage Account Name":"afsuami09191425","Recovery + Point Time in UTC":"9/21/2026 7:00:49 AM","Target File Share Name":"restoredfs","Target + Storage Account Name":"bhar11csrtgtsa","Job Type":"Recover to an alternate + file share","RestoreDestination":"bhar11csrtgtsa/restoredfs/csrrestore000003","Data + Transferred (in MB)":"0","Number Of Restored Files":"0","Number Of Skipped + Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"climsirec000001","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2026-09-21T07:07:56.7589257Z","activityId":"274d6083-b58b-11f1-86e8-6045bda581f9"}}' + headers: + cache-control: + - no-cache + content-length: + - '1241' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 21 Sep 2026 07:09:35 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=d5f45f9e-867c-4805-9aba-55121e6bdbb8/westeurope/59413728-379a-4539-bacc-ab5cbbcaca36 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '249' + x-msedge-ref: + - 'Ref A: AF4F079A83FB4961AED232AC699E04F7 Ref B: PNQ231110906023 Ref C: 2026-09-21T07:09:35Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -g -v -n + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.41.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupJobs/9ea4e2ca-9632-418b-8e19-d49381781957?api-version=2026-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupJobs/9ea4e2ca-9632-418b-8e19-d49381781957","name":"9ea4e2ca-9632-418b-8e19-d49381781957","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","actionsInfo":["Cancellable"],"duration":"PT2M11.2097332S","storageAccountName":"afsuami09191425","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source + File Share Name":"climsirec000001","Source Storage Account Name":"afsuami09191425","Recovery + Point Time in UTC":"9/21/2026 7:00:49 AM","Target File Share Name":"restoredfs","Target + Storage Account Name":"bhar11csrtgtsa","Job Type":"Recover to an alternate + file share","RestoreDestination":"bhar11csrtgtsa/restoredfs/csrrestore000003","Data + Transferred (in MB)":"0","Number Of Restored Files":"0","Number Of Skipped + Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"climsirec000001","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2026-09-21T07:07:56.7589257Z","activityId":"274d6083-b58b-11f1-86e8-6045bda581f9"}}' + headers: + cache-control: + - no-cache + content-length: + - '1241' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 21 Sep 2026 07:10: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-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=d5f45f9e-867c-4805-9aba-55121e6bdbb8/westeurope/8ef51ce0-b915-4985-8b8b-66913308a1e6 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '249' + x-msedge-ref: + - 'Ref A: 5BA8973B0BF54D729510343AD6CE2A4B Ref B: PNQ231110908060 Ref C: 2026-09-21T07:10:07Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -g -v -n + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.41.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupJobs/9ea4e2ca-9632-418b-8e19-d49381781957?api-version=2026-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupJobs/9ea4e2ca-9632-418b-8e19-d49381781957","name":"9ea4e2ca-9632-418b-8e19-d49381781957","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","actionsInfo":["Cancellable"],"duration":"PT2M42.3534526S","storageAccountName":"afsuami09191425","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source + File Share Name":"climsirec000001","Source Storage Account Name":"afsuami09191425","Recovery + Point Time in UTC":"9/21/2026 7:00:49 AM","Target File Share Name":"restoredfs","Target + Storage Account Name":"bhar11csrtgtsa","Job Type":"Recover to an alternate + file share","RestoreDestination":"bhar11csrtgtsa/restoredfs/csrrestore000003","Data + Transferred (in MB)":"0","Number Of Restored Files":"0","Number Of Skipped + Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"climsirec000001","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2026-09-21T07:07:56.7589257Z","activityId":"274d6083-b58b-11f1-86e8-6045bda581f9"}}' + headers: + cache-control: + - no-cache + content-length: + - '1241' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 21 Sep 2026 07:10:38 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=d5f45f9e-867c-4805-9aba-55121e6bdbb8/westeurope/87ba19ce-ade8-40f4-a043-eb9f75f45644 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '249' + x-msedge-ref: + - 'Ref A: DF719D351D1D4C09B53BC9E4AD3289B7 Ref B: PNQ231110909025 Ref C: 2026-09-21T07:10:38Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -g -v -n + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.41.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupJobs/9ea4e2ca-9632-418b-8e19-d49381781957?api-version=2026-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupJobs/9ea4e2ca-9632-418b-8e19-d49381781957","name":"9ea4e2ca-9632-418b-8e19-d49381781957","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","actionsInfo":["Cancellable"],"duration":"PT3M13.6009869S","storageAccountName":"afsuami09191425","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source + File Share Name":"climsirec000001","Source Storage Account Name":"afsuami09191425","Recovery + Point Time in UTC":"9/21/2026 7:00:49 AM","Target File Share Name":"restoredfs","Target + Storage Account Name":"bhar11csrtgtsa","Job Type":"Recover to an alternate + file share","RestoreDestination":"bhar11csrtgtsa/restoredfs/csrrestore000003","Data + Transferred (in MB)":"0","Number Of Restored Files":"0","Number Of Skipped + Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"climsirec000001","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2026-09-21T07:07:56.7589257Z","activityId":"274d6083-b58b-11f1-86e8-6045bda581f9"}}' + headers: + cache-control: + - no-cache + content-length: + - '1241' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 21 Sep 2026 07:11: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=d5f45f9e-867c-4805-9aba-55121e6bdbb8/westeurope/57393560-5e47-4078-9e94-d91757c14397 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '249' + x-msedge-ref: + - 'Ref A: 8A64A354EC7F4767BA0E27875FDA8348 Ref B: PNQ231110909031 Ref C: 2026-09-21T07:11:09Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -g -v -n + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.41.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupJobs/9ea4e2ca-9632-418b-8e19-d49381781957?api-version=2026-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupJobs/9ea4e2ca-9632-418b-8e19-d49381781957","name":"9ea4e2ca-9632-418b-8e19-d49381781957","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","actionsInfo":["Cancellable"],"duration":"PT3M44.7580845S","storageAccountName":"afsuami09191425","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source + File Share Name":"climsirec000001","Source Storage Account Name":"afsuami09191425","Recovery + Point Time in UTC":"9/21/2026 7:00:49 AM","Target File Share Name":"restoredfs","Target + Storage Account Name":"bhar11csrtgtsa","Job Type":"Recover to an alternate + file share","RestoreDestination":"bhar11csrtgtsa/restoredfs/csrrestore000003","Data + Transferred (in MB)":"0","Number Of Restored Files":"0","Number Of Skipped + Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"climsirec000001","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2026-09-21T07:07:56.7589257Z","activityId":"274d6083-b58b-11f1-86e8-6045bda581f9"}}' + headers: + cache-control: + - no-cache + content-length: + - '1241' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 21 Sep 2026 07:11:40 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=d5f45f9e-867c-4805-9aba-55121e6bdbb8/westeurope/c56b5e1d-836e-4813-9e3b-a5961f55dbd3 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '249' + x-msedge-ref: + - 'Ref A: 39ECA9342D2E43E19A89F62329A9A0D7 Ref B: PNQ231110909040 Ref C: 2026-09-21T07:11:40Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -g -v -n + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.41.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupJobs/9ea4e2ca-9632-418b-8e19-d49381781957?api-version=2026-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupJobs/9ea4e2ca-9632-418b-8e19-d49381781957","name":"9ea4e2ca-9632-418b-8e19-d49381781957","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","actionsInfo":["Cancellable"],"duration":"PT4M15.9208866S","storageAccountName":"afsuami09191425","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source + File Share Name":"climsirec000001","Source Storage Account Name":"afsuami09191425","Recovery + Point Time in UTC":"9/21/2026 7:00:49 AM","Target File Share Name":"restoredfs","Target + Storage Account Name":"bhar11csrtgtsa","Job Type":"Recover to an alternate + file share","RestoreDestination":"bhar11csrtgtsa/restoredfs/csrrestore000003","Data + Transferred (in MB)":"0","Number Of Restored Files":"0","Number Of Skipped + Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"climsirec000001","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2026-09-21T07:07:56.7589257Z","activityId":"274d6083-b58b-11f1-86e8-6045bda581f9"}}' + headers: + cache-control: + - no-cache + content-length: + - '1241' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 21 Sep 2026 07:12:12 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=d5f45f9e-867c-4805-9aba-55121e6bdbb8/westeurope/28946674-fc45-4e89-acb8-58540b86f67b + x-ms-ratelimit-remaining-subscription-resource-requests: + - '249' + x-msedge-ref: + - 'Ref A: 199EBE8D9AEA41B1AF8E68EB94F4C10C Ref B: PNQ231110907025 Ref C: 2026-09-21T07:12:11Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -g -v -n + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.41.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupJobs/9ea4e2ca-9632-418b-8e19-d49381781957?api-version=2026-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupJobs/9ea4e2ca-9632-418b-8e19-d49381781957","name":"9ea4e2ca-9632-418b-8e19-d49381781957","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","actionsInfo":["Cancellable"],"duration":"PT4M46.8364812S","storageAccountName":"afsuami09191425","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source + File Share Name":"climsirec000001","Source Storage Account Name":"afsuami09191425","Recovery + Point Time in UTC":"9/21/2026 7:00:49 AM","Target File Share Name":"restoredfs","Target + Storage Account Name":"bhar11csrtgtsa","Job Type":"Recover to an alternate + file share","RestoreDestination":"bhar11csrtgtsa/restoredfs/csrrestore000003","Data + Transferred (in MB)":"0","Number Of Restored Files":"0","Number Of Skipped + Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"climsirec000001","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2026-09-21T07:07:56.7589257Z","activityId":"274d6083-b58b-11f1-86e8-6045bda581f9"}}' + headers: + cache-control: + - no-cache + content-length: + - '1241' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 21 Sep 2026 07:12:43 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=d5f45f9e-867c-4805-9aba-55121e6bdbb8/westeurope/ccb84012-fe8d-492a-94e3-739934c7a8d8 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '249' + x-msedge-ref: + - 'Ref A: 660CF26B7D19496A9EF1DB9F2ADDDD83 Ref B: PNQ231110909036 Ref C: 2026-09-21T07:12:43Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -g -v -n + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.41.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupJobs/9ea4e2ca-9632-418b-8e19-d49381781957?api-version=2026-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupJobs/9ea4e2ca-9632-418b-8e19-d49381781957","name":"9ea4e2ca-9632-418b-8e19-d49381781957","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","actionsInfo":["Cancellable"],"duration":"PT5M18.706273S","storageAccountName":"afsuami09191425","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source + File Share Name":"climsirec000001","Source Storage Account Name":"afsuami09191425","Recovery + Point Time in UTC":"9/21/2026 7:00:49 AM","Target File Share Name":"restoredfs","Target + Storage Account Name":"bhar11csrtgtsa","Job Type":"Recover to an alternate + file share","RestoreDestination":"bhar11csrtgtsa/restoredfs/csrrestore000003","Data + Transferred (in MB)":"0","Number Of Restored Files":"0","Number Of Skipped + Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"climsirec000001","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2026-09-21T07:07:56.7589257Z","activityId":"274d6083-b58b-11f1-86e8-6045bda581f9"}}' + headers: + cache-control: + - no-cache + content-length: + - '1240' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 21 Sep 2026 07:13:15 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=d5f45f9e-867c-4805-9aba-55121e6bdbb8/westeurope/ce005aa1-27fd-4b61-9327-c3e077c2721e + x-ms-ratelimit-remaining-subscription-resource-requests: + - '249' + x-msedge-ref: + - 'Ref A: 8C9BF4913EFB422FBEFD6FE2EE9FCA7A Ref B: PNQ231110909029 Ref C: 2026-09-21T07:13:14Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -g -v -n + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.41.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupJobs/9ea4e2ca-9632-418b-8e19-d49381781957?api-version=2026-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupJobs/9ea4e2ca-9632-418b-8e19-d49381781957","name":"9ea4e2ca-9632-418b-8e19-d49381781957","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","actionsInfo":["Cancellable"],"duration":"PT5M50.1282832S","storageAccountName":"afsuami09191425","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source + File Share Name":"climsirec000001","Source Storage Account Name":"afsuami09191425","Recovery + Point Time in UTC":"9/21/2026 7:00:49 AM","Target File Share Name":"restoredfs","Target + Storage Account Name":"bhar11csrtgtsa","Job Type":"Recover to an alternate + file share","RestoreDestination":"bhar11csrtgtsa/restoredfs/csrrestore000003","Data + Transferred (in MB)":"0","Number Of Restored Files":"0","Number Of Skipped + Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"climsirec000001","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2026-09-21T07:07:56.7589257Z","activityId":"274d6083-b58b-11f1-86e8-6045bda581f9"}}' + headers: + cache-control: + - no-cache + content-length: + - '1241' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 21 Sep 2026 07:13:46 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=d5f45f9e-867c-4805-9aba-55121e6bdbb8/westeurope/6d3cda30-9287-4125-b31b-88b83e2608b4 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '249' + x-msedge-ref: + - 'Ref A: A2DF3EB8C1724E54BA2772710523B264 Ref B: PNQ231110908031 Ref C: 2026-09-21T07:13:46Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -g -v -n + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.41.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupJobs/9ea4e2ca-9632-418b-8e19-d49381781957?api-version=2026-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupJobs/9ea4e2ca-9632-418b-8e19-d49381781957","name":"9ea4e2ca-9632-418b-8e19-d49381781957","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","actionsInfo":["Cancellable"],"duration":"PT6M21.2626305S","storageAccountName":"afsuami09191425","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source + File Share Name":"climsirec000001","Source Storage Account Name":"afsuami09191425","Recovery + Point Time in UTC":"9/21/2026 7:00:49 AM","Target File Share Name":"restoredfs","Target + Storage Account Name":"bhar11csrtgtsa","Job Type":"Recover to an alternate + file share","RestoreDestination":"bhar11csrtgtsa/restoredfs/csrrestore000003","Data + Transferred (in MB)":"0","Number Of Restored Files":"0","Number Of Skipped + Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"climsirec000001","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2026-09-21T07:07:56.7589257Z","activityId":"274d6083-b58b-11f1-86e8-6045bda581f9"}}' + headers: + cache-control: + - no-cache + content-length: + - '1241' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 21 Sep 2026 07:14:17 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=d5f45f9e-867c-4805-9aba-55121e6bdbb8/westeurope/77b04cde-4c38-48b7-bee8-b46c928724eb + x-ms-ratelimit-remaining-subscription-resource-requests: + - '249' + x-msedge-ref: + - 'Ref A: 687637C748FF4D58B00B734CFC0728BC Ref B: PNQ231110908025 Ref C: 2026-09-21T07:14:17Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -g -v -n + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.41.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupJobs/9ea4e2ca-9632-418b-8e19-d49381781957?api-version=2026-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupJobs/9ea4e2ca-9632-418b-8e19-d49381781957","name":"9ea4e2ca-9632-418b-8e19-d49381781957","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","actionsInfo":["Cancellable"],"duration":"PT6M52.0263538S","storageAccountName":"afsuami09191425","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source + File Share Name":"climsirec000001","Source Storage Account Name":"afsuami09191425","Recovery + Point Time in UTC":"9/21/2026 7:00:49 AM","Target File Share Name":"restoredfs","Target + Storage Account Name":"bhar11csrtgtsa","Job Type":"Recover to an alternate + file share","RestoreDestination":"bhar11csrtgtsa/restoredfs/csrrestore000003","Data + Transferred (in MB)":"0","Number Of Restored Files":"0","Number Of Skipped + Files":"0","Number Of Failed Files":"0","Number Of Restored Directories":"1","Number + Of Skipped Directories":"0","Number Of Failed Directories":"0"}},"isUserTriggered":false,"entityFriendlyName":"climsirec000001","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2026-09-21T07:07:56.7589257Z","activityId":"274d6083-b58b-11f1-86e8-6045bda581f9"}}' + headers: + cache-control: + - no-cache + content-length: + - '1349' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 21 Sep 2026 07:14:48 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=d5f45f9e-867c-4805-9aba-55121e6bdbb8/westeurope/d07e325c-fa8c-4938-a41b-59a8c0aa91b4 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '249' + x-msedge-ref: + - 'Ref A: CB94F6C82D2E4BABBB0466131A8EBDE4 Ref B: PNQ231110906054 Ref C: 2026-09-21T07:14:48Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -g -v -n + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.41.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupJobs/9ea4e2ca-9632-418b-8e19-d49381781957?api-version=2026-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupJobs/9ea4e2ca-9632-418b-8e19-d49381781957","name":"9ea4e2ca-9632-418b-8e19-d49381781957","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","actionsInfo":["Cancellable"],"duration":"PT7M23.235333S","storageAccountName":"afsuami09191425","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source + File Share Name":"climsirec000001","Source Storage Account Name":"afsuami09191425","Recovery + Point Time in UTC":"9/21/2026 7:00:49 AM","Target File Share Name":"restoredfs","Target + Storage Account Name":"bhar11csrtgtsa","Job Type":"Recover to an alternate + file share","RestoreDestination":"bhar11csrtgtsa/restoredfs/csrrestore000003","Data + Transferred (in MB)":"0","Number Of Restored Files":"0","Number Of Skipped + Files":"0","Number Of Failed Files":"0","Number Of Restored Directories":"1","Number + Of Skipped Directories":"0","Number Of Failed Directories":"0"}},"isUserTriggered":false,"entityFriendlyName":"climsirec000001","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2026-09-21T07:07:56.7589257Z","activityId":"274d6083-b58b-11f1-86e8-6045bda581f9"}}' + headers: + cache-control: + - no-cache + content-length: + - '1348' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 21 Sep 2026 07:15:19 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=d5f45f9e-867c-4805-9aba-55121e6bdbb8/westeurope/d32c52e0-4a58-4436-85b8-7d90ed3b73fc + x-ms-ratelimit-remaining-subscription-resource-requests: + - '249' + x-msedge-ref: + - 'Ref A: 61CD7E0B11574B01A477BD1F20B82764 Ref B: PNQ231110907034 Ref C: 2026-09-21T07:15:19Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -g -v -n + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.41.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupJobs/9ea4e2ca-9632-418b-8e19-d49381781957?api-version=2026-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupJobs/9ea4e2ca-9632-418b-8e19-d49381781957","name":"9ea4e2ca-9632-418b-8e19-d49381781957","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","actionsInfo":["Cancellable"],"duration":"PT7M53.9653152S","storageAccountName":"afsuami09191425","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source + File Share Name":"climsirec000001","Source Storage Account Name":"afsuami09191425","Recovery + Point Time in UTC":"9/21/2026 7:00:49 AM","Target File Share Name":"restoredfs","Target + Storage Account Name":"bhar11csrtgtsa","Job Type":"Recover to an alternate + file share","RestoreDestination":"bhar11csrtgtsa/restoredfs/csrrestore000003","Data + Transferred (in MB)":"0","Number Of Restored Files":"0","Number Of Skipped + Files":"0","Number Of Failed Files":"0","Number Of Restored Directories":"1","Number + Of Skipped Directories":"0","Number Of Failed Directories":"0"}},"isUserTriggered":false,"entityFriendlyName":"climsirec000001","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2026-09-21T07:07:56.7589257Z","activityId":"274d6083-b58b-11f1-86e8-6045bda581f9"}}' + headers: + cache-control: + - no-cache + content-length: + - '1349' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 21 Sep 2026 07:15:50 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=d5f45f9e-867c-4805-9aba-55121e6bdbb8/westeurope/d995f8ac-4e5d-423c-999b-b83252eb1fbe + x-ms-ratelimit-remaining-subscription-resource-requests: + - '249' + x-msedge-ref: + - 'Ref A: 16CC9F9E60B04C208BB36F56315E39E6 Ref B: PNQ231110909036 Ref C: 2026-09-21T07:15:50Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -g -v -n + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.41.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupJobs/9ea4e2ca-9632-418b-8e19-d49381781957?api-version=2026-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupJobs/9ea4e2ca-9632-418b-8e19-d49381781957","name":"9ea4e2ca-9632-418b-8e19-d49381781957","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","actionsInfo":["Cancellable"],"duration":"PT8M24.8428785S","storageAccountName":"afsuami09191425","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source + File Share Name":"climsirec000001","Source Storage Account Name":"afsuami09191425","Recovery + Point Time in UTC":"9/21/2026 7:00:49 AM","Target File Share Name":"restoredfs","Target + Storage Account Name":"bhar11csrtgtsa","Job Type":"Recover to an alternate + file share","RestoreDestination":"bhar11csrtgtsa/restoredfs/csrrestore000003","Data + Transferred (in MB)":"0","Number Of Restored Files":"0","Number Of Skipped + Files":"0","Number Of Failed Files":"0","Number Of Restored Directories":"1","Number + Of Skipped Directories":"0","Number Of Failed Directories":"0"}},"isUserTriggered":false,"entityFriendlyName":"climsirec000001","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2026-09-21T07:07:56.7589257Z","activityId":"274d6083-b58b-11f1-86e8-6045bda581f9"}}' + headers: + cache-control: + - no-cache + content-length: + - '1349' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 21 Sep 2026 07:16:20 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=d5f45f9e-867c-4805-9aba-55121e6bdbb8/westeurope/67762683-ae63-429f-8544-5c5e1a1967b5 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '249' + x-msedge-ref: + - 'Ref A: 7D75C15186D944FC8FBC1A999A7B480C Ref B: PNQ231110908062 Ref C: 2026-09-21T07:16:21Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -g -v -n + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.41.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupJobs/9ea4e2ca-9632-418b-8e19-d49381781957?api-version=2026-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupJobs/9ea4e2ca-9632-418b-8e19-d49381781957","name":"9ea4e2ca-9632-418b-8e19-d49381781957","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","actionsInfo":["Cancellable"],"duration":"PT8M56.0469186S","storageAccountName":"afsuami09191425","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source + File Share Name":"climsirec000001","Source Storage Account Name":"afsuami09191425","Recovery + Point Time in UTC":"9/21/2026 7:00:49 AM","Target File Share Name":"restoredfs","Target + Storage Account Name":"bhar11csrtgtsa","Job Type":"Recover to an alternate + file share","RestoreDestination":"bhar11csrtgtsa/restoredfs/csrrestore000003","Data + Transferred (in MB)":"0","Number Of Restored Files":"0","Number Of Skipped + Files":"0","Number Of Failed Files":"0","Number Of Restored Directories":"1","Number + Of Skipped Directories":"0","Number Of Failed Directories":"0"}},"isUserTriggered":false,"entityFriendlyName":"climsirec000001","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2026-09-21T07:07:56.7589257Z","activityId":"274d6083-b58b-11f1-86e8-6045bda581f9"}}' + headers: + cache-control: + - no-cache + content-length: + - '1349' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 21 Sep 2026 07:16:52 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=d5f45f9e-867c-4805-9aba-55121e6bdbb8/westeurope/478c07cb-a1ca-46c3-9dcf-e0113e5b4c30 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '249' + x-msedge-ref: + - 'Ref A: 80144E5D45BF475491D5F84422619890 Ref B: PNQ231110908029 Ref C: 2026-09-21T07:16:52Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -g -v -n + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.41.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupJobs/9ea4e2ca-9632-418b-8e19-d49381781957?api-version=2026-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupJobs/9ea4e2ca-9632-418b-8e19-d49381781957","name":"9ea4e2ca-9632-418b-8e19-d49381781957","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","actionsInfo":["Cancellable"],"duration":"PT9M27.803457S","storageAccountName":"afsuami09191425","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source + File Share Name":"climsirec000001","Source Storage Account Name":"afsuami09191425","Recovery + Point Time in UTC":"9/21/2026 7:00:49 AM","Target File Share Name":"restoredfs","Target + Storage Account Name":"bhar11csrtgtsa","Job Type":"Recover to an alternate + file share","RestoreDestination":"bhar11csrtgtsa/restoredfs/csrrestore000003","Data + Transferred (in MB)":"0","Number Of Restored Files":"0","Number Of Skipped + Files":"0","Number Of Failed Files":"0","Number Of Restored Directories":"1","Number + Of Skipped Directories":"0","Number Of Failed Directories":"0"}},"isUserTriggered":false,"entityFriendlyName":"climsirec000001","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2026-09-21T07:07:56.7589257Z","activityId":"274d6083-b58b-11f1-86e8-6045bda581f9"}}' + headers: + cache-control: + - no-cache + content-length: + - '1348' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 21 Sep 2026 07:17:23 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=d5f45f9e-867c-4805-9aba-55121e6bdbb8/westeurope/a970c88f-ff96-4bf3-8439-2fadcf765316 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '249' + x-msedge-ref: + - 'Ref A: 78CD9B98DC1646039D1E46B5CA24A435 Ref B: PNQ231110907029 Ref C: 2026-09-21T07:17:23Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -g -v -n + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.41.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupJobs/9ea4e2ca-9632-418b-8e19-d49381781957?api-version=2026-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupJobs/9ea4e2ca-9632-418b-8e19-d49381781957","name":"9ea4e2ca-9632-418b-8e19-d49381781957","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","actionsInfo":["Cancellable"],"duration":"PT9M58.8200957S","storageAccountName":"afsuami09191425","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source + File Share Name":"climsirec000001","Source Storage Account Name":"afsuami09191425","Recovery + Point Time in UTC":"9/21/2026 7:00:49 AM","Target File Share Name":"restoredfs","Target + Storage Account Name":"bhar11csrtgtsa","Job Type":"Recover to an alternate + file share","RestoreDestination":"bhar11csrtgtsa/restoredfs/csrrestore000003","Data + Transferred (in MB)":"0","Number Of Restored Files":"0","Number Of Skipped + Files":"0","Number Of Failed Files":"0","Number Of Restored Directories":"1","Number + Of Skipped Directories":"0","Number Of Failed Directories":"0"}},"isUserTriggered":false,"entityFriendlyName":"climsirec000001","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2026-09-21T07:07:56.7589257Z","activityId":"274d6083-b58b-11f1-86e8-6045bda581f9"}}' + headers: + cache-control: + - no-cache + content-length: + - '1349' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 21 Sep 2026 07:17:55 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=d5f45f9e-867c-4805-9aba-55121e6bdbb8/westeurope/f93fb56c-5d18-4881-ae52-fc102c6339ad + x-ms-ratelimit-remaining-subscription-resource-requests: + - '249' + x-msedge-ref: + - 'Ref A: B874782C7FB044829EFBCF38C1CB9601 Ref B: PNQ231110906042 Ref C: 2026-09-21T07:17:55Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -g -v -n + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.41.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupJobs/9ea4e2ca-9632-418b-8e19-d49381781957?api-version=2026-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupJobs/9ea4e2ca-9632-418b-8e19-d49381781957","name":"9ea4e2ca-9632-418b-8e19-d49381781957","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","actionsInfo":["Cancellable"],"duration":"PT10M29.7887954S","storageAccountName":"afsuami09191425","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source + File Share Name":"climsirec000001","Source Storage Account Name":"afsuami09191425","Recovery + Point Time in UTC":"9/21/2026 7:00:49 AM","Target File Share Name":"restoredfs","Target + Storage Account Name":"bhar11csrtgtsa","Job Type":"Recover to an alternate + file share","RestoreDestination":"bhar11csrtgtsa/restoredfs/csrrestore000003","Data + Transferred (in MB)":"0","Number Of Restored Files":"0","Number Of Skipped + Files":"0","Number Of Failed Files":"0","Number Of Restored Directories":"1","Number + Of Skipped Directories":"0","Number Of Failed Directories":"0"}},"isUserTriggered":false,"entityFriendlyName":"climsirec000001","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2026-09-21T07:07:56.7589257Z","activityId":"274d6083-b58b-11f1-86e8-6045bda581f9"}}' + headers: + cache-control: + - no-cache + content-length: + - '1350' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 21 Sep 2026 07:18:26 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=d5f45f9e-867c-4805-9aba-55121e6bdbb8/westeurope/ff492cd3-232e-4e88-b50b-3afa25df594a + x-ms-ratelimit-remaining-subscription-resource-requests: + - '249' + x-msedge-ref: + - 'Ref A: 36467753F2AA45CFB9EF10EAB67604B1 Ref B: PNQ231110907036 Ref C: 2026-09-21T07:18:26Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -g -v -n + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.41.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupJobs/9ea4e2ca-9632-418b-8e19-d49381781957?api-version=2026-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupJobs/9ea4e2ca-9632-418b-8e19-d49381781957","name":"9ea4e2ca-9632-418b-8e19-d49381781957","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","actionsInfo":["Cancellable"],"duration":"PT10M33.1752144S","storageAccountName":"afsuami09191425","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source + File Share Name":"climsirec000001","Source Storage Account Name":"afsuami09191425","Recovery + Point Time in UTC":"9/21/2026 7:00:49 AM","Target File Share Name":"restoredfs","Target + Storage Account Name":"bhar11csrtgtsa","Job Type":"Recover to an alternate + file share","RestoreDestination":"bhar11csrtgtsa/restoredfs/csrrestore000003","Data + Transferred (in MB)":"0","Number Of Restored Files":"0","Number Of Skipped + Files":"0","Number Of Failed Files":"0","Number Of Restored Directories":"1","Number + Of Skipped Directories":"0","Number Of Failed Directories":"0"}},"isUserTriggered":false,"entityFriendlyName":"climsirec000001","backupManagementType":"AzureStorage","operation":"Restore","status":"Completed","startTime":"2026-09-21T07:07:56.7589257Z","endTime":"2026-09-21T07:18:29.9341401Z","activityId":"274d6083-b58b-11f1-86e8-6045bda581f9"}}' + headers: + cache-control: + - no-cache + content-length: + - '1390' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 21 Sep 2026 07:18:57 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=d5f45f9e-867c-4805-9aba-55121e6bdbb8/westeurope/5cf099e5-276d-4078-834e-676aa4b2bac7 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '249' + x-msedge-ref: + - 'Ref A: 235169FC9F7B4EDFBEAAB90910B766C5 Ref B: PNQ231110907062 Ref C: 2026-09-21T07:18:57Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job show + Connection: + - keep-alive + ParameterSetName: + - -g -v -n + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.41.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupJobs/9ea4e2ca-9632-418b-8e19-d49381781957?api-version=2026-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupJobs/9ea4e2ca-9632-418b-8e19-d49381781957","name":"9ea4e2ca-9632-418b-8e19-d49381781957","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","actionsInfo":["Cancellable"],"duration":"PT10M33.1752144S","storageAccountName":"afsuami09191425","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source + File Share Name":"climsirec000001","Source Storage Account Name":"afsuami09191425","Recovery + Point Time in UTC":"9/21/2026 7:00:49 AM","Target File Share Name":"restoredfs","Target + Storage Account Name":"bhar11csrtgtsa","Job Type":"Recover to an alternate + file share","RestoreDestination":"bhar11csrtgtsa/restoredfs/csrrestore000003","Data + Transferred (in MB)":"0","Number Of Restored Files":"0","Number Of Skipped + Files":"0","Number Of Failed Files":"0","Number Of Restored Directories":"1","Number + Of Skipped Directories":"0","Number Of Failed Directories":"0"}},"isUserTriggered":false,"entityFriendlyName":"climsirec000001","backupManagementType":"AzureStorage","operation":"Restore","status":"Completed","startTime":"2026-09-21T07:07:56.7589257Z","endTime":"2026-09-21T07:18:29.9341401Z","activityId":"274d6083-b58b-11f1-86e8-6045bda581f9"}}' + headers: + cache-control: + - no-cache + content-length: + - '1390' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 21 Sep 2026 07:19:28 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=d5f45f9e-867c-4805-9aba-55121e6bdbb8/westeurope/6d20f099-5abf-4c71-846e-3439d4d3b86a + x-ms-ratelimit-remaining-subscription-resource-requests: + - '249' + x-msedge-ref: + - 'Ref A: 3DA4704E318F4D03A7F41561273F26A0 Ref B: PNQ231110906025 Ref C: 2026-09-21T07:19:28Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -i --backup-management-type --delete-backup-data --yes + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.41.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bbhar11-prt-restore-rg%3Bafsuami09191425/protectedItems/AzureFileShare%3Be87b827cf821b0e0bc080bd3cc0b18e6705bfb19d5c408cdd95c27c624f99024?api-version=2026-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer;storage;bhar11-prt-restore-rg;afsuami09191425/protectedItems/AzureFileShare;e87b827cf821b0e0bc080bd3cc0b18e6705bfb19d5c408cdd95c27c624f99024","name":"AzureFileShare;e87b827cf821b0e0bc080bd3cc0b18e6705bfb19d5c408cdd95c27c624f99024","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"climsirec000001","fileShareProtocol":"SMB","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Completed","lastBackupTime":"2026-09-21T07:00:44.2543418Z","extendedInfo":{"oldestRecoveryPoint":"2026-09-21T07:00:47Z","recoveryPointCount":1,"policyState":"Consistent","resourceState":"Active","resourceStateSyncTime":"2026-09-21T07:00:52Z"},"protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;bhar11-prt-restore-rg;afsuami09191425","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.storage/storageAccounts/afsuami09191425","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupPolicies/bhar11-prt-snapshot-policy","lastRecoveryPoint":"2026-09-21T07:00:47Z","vaultId":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv","isArchiveEnabled":false,"softDeleteRetentionPeriod":0,"sourceLocation":"westeurope","sourceSideScanInfo":{"sourceSideScanStatus":"NotApplicable","sourceSideScanSummary":"NotApplicable"}}}' + headers: + cache-control: + - no-cache + content-length: + - '1937' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 21 Sep 2026 07:19:30 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=d5f45f9e-867c-4805-9aba-55121e6bdbb8/westeurope/22f49d90-ed1c-43ce-8217-3a7f8193b50a + x-ms-ratelimit-remaining-subscription-resource-requests: + - '249' + x-msedge-ref: + - 'Ref A: 08FF9286F0534B97A9EBC0B7C6AF6E54 Ref B: PNQ231110908025 Ref C: 2026-09-21T07:19:29Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -i --backup-management-type --delete-backup-data --yes + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.41.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupResourceGuardProxies?api-version=2026-07-01 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 21 Sep 2026 07:19:31 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=d5f45f9e-867c-4805-9aba-55121e6bdbb8/westeurope/37a83a6f-f60f-4ace-994d-db75d31074db + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 6804489521214CEE9E00939AE36352BD Ref B: PNQ231110908040 Ref C: 2026-09-21T07:19:31Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -v -c -i --backup-management-type --delete-backup-data --yes + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.41.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bbhar11-prt-restore-rg%3Bafsuami09191425/protectedItems/AzureFileShare%3Be87b827cf821b0e0bc080bd3cc0b18e6705bfb19d5c408cdd95c27c624f99024?api-version=2026-07-01 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupOperations/5684a2d0-63c4-4306-9bab-bff957e6c530?api-version=2026-07-01&t=639255719741160393&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=Qmd37-ksUcn1k2z0-V1xzdQUNV0VkMRost1f5TzTCJ69bl7vEKyQD1M0ZNxm8yySHaQTHej20kHGtzPg-ktojW4fc69W6qCMMVPt7InVwpnXJdpg5v5wmDZUDG5CDaF1HRxiiCbO0q9LQAGg1W1-T3zWSh_9GugHmaMo4SxGWRXUE0VH_0iUsj_SJ7A7wz6ZCfn1Zi3ziP90H7LNNKaaih_QCGsyfO2HP5EHSJUWJpGtKeDR_HCGps-NtNyni04JZprs15FNQiX_vwL55f_v9cmgSO1Q0052PmFMqsFIHbV1dO4C0BfhnCQuYV6OSweU2fuTzbAa_IdYLopnDGTiGA&h=bs2FrvLBOb1MtYqHfZZkQsV66FdV2y6TaaVfYtVJCM8 + cache-control: + - no-cache + content-length: + - '0' + date: + - Mon, 21 Sep 2026 07:19:33 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupOperationResults/5684a2d0-63c4-4306-9bab-bff957e6c530?api-version=2026-07-01&t=639255719741160393&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=CwMD1KS5A_XubBOmMl_SAnUVtTYBYCt_0HqX597sqmTVTxiFotiydq3hciWwdivJxRsHsb0xwkd9iztvG3yHGurO3w8W3Babeg1FJvUh7DQukKMQ9gncEuKr0AE5v9ZGX_TFfu2O_kaWb-1DfklvOIYlIenFoUEBP1FJDOJBpUgXzhQ3OOfxKLVcVon4J6ITnmIktMJ3gsbuJB95YW3WOJQ5_ROsdYZShBjaDzRtTPqd7t8sxAJYSEz8klFXlN78OnrRip5EQM7KUHRT-nASLu66AFPLl7VAtdBVE8OuaKpabflysUWgoKQ4KPTm3KUgTZLRZ1jJnSmSW_Xw03E4SQ&h=KQ-BiSdzi27KHDUrxoepl5jd9c9qZhqRIGwKOMxEhts + 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=d5f45f9e-867c-4805-9aba-55121e6bdbb8/westeurope/1552ed28-e673-4e04-af52-0c3478c7f05e + x-ms-ratelimit-remaining-subscription-deletes: + - '799' + x-ms-ratelimit-remaining-subscription-global-deletes: + - '11999' + x-msedge-ref: + - 'Ref A: 6486DDEF0C15457C8DE77CC1D919C292 Ref B: PNQ231110906034 Ref C: 2026-09-21T07:19:32Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -i --backup-management-type --delete-backup-data --yes + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.41.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupOperations/5684a2d0-63c4-4306-9bab-bff957e6c530?api-version=2026-07-01 + response: + body: + string: '{"id":"5684a2d0-63c4-4306-9bab-bff957e6c530","name":"5684a2d0-63c4-4306-9bab-bff957e6c530","status":"InProgress","startTime":"2026-09-21T07:19:33.7040098Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 21 Sep 2026 07:19:34 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=d5f45f9e-867c-4805-9aba-55121e6bdbb8/westeurope/c4aa5438-2f3b-4087-beef-79ed32d6080f + x-ms-ratelimit-remaining-subscription-resource-requests: + - '249' + x-msedge-ref: + - 'Ref A: A358FC328B9841BAB310AA7604ED3212 Ref B: PNQ231110909029 Ref C: 2026-09-21T07:19:34Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -i --backup-management-type --delete-backup-data --yes + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.41.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupOperations/5684a2d0-63c4-4306-9bab-bff957e6c530?api-version=2026-07-01 + response: + body: + string: '{"id":"5684a2d0-63c4-4306-9bab-bff957e6c530","name":"5684a2d0-63c4-4306-9bab-bff957e6c530","status":"InProgress","startTime":"2026-09-21T07:19:33.7040098Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 21 Sep 2026 07:19:40 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=d5f45f9e-867c-4805-9aba-55121e6bdbb8/westeurope/890b0234-e58f-411c-b04c-cac55c3be2fd + x-ms-ratelimit-remaining-subscription-resource-requests: + - '249' + x-msedge-ref: + - 'Ref A: 29E22D6AAB694966B620F387DCFDC43B Ref B: PNQ231110907040 Ref C: 2026-09-21T07:19:40Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -i --backup-management-type --delete-backup-data --yes + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.41.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupOperations/5684a2d0-63c4-4306-9bab-bff957e6c530?api-version=2026-07-01 + response: + body: + string: '{"id":"5684a2d0-63c4-4306-9bab-bff957e6c530","name":"5684a2d0-63c4-4306-9bab-bff957e6c530","status":"InProgress","startTime":"2026-09-21T07:19:33.7040098Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 21 Sep 2026 07:19:47 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=d5f45f9e-867c-4805-9aba-55121e6bdbb8/westeurope/5a2f0470-3cc8-482a-b86c-2cdf037bed00 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '249' + x-msedge-ref: + - 'Ref A: 0FC60FD790034630A3DC919B826E97CB Ref B: PNQ231110906029 Ref C: 2026-09-21T07:19:46Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -i --backup-management-type --delete-backup-data --yes + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.41.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupOperations/5684a2d0-63c4-4306-9bab-bff957e6c530?api-version=2026-07-01 + response: + body: + string: '{"id":"5684a2d0-63c4-4306-9bab-bff957e6c530","name":"5684a2d0-63c4-4306-9bab-bff957e6c530","status":"InProgress","startTime":"2026-09-21T07:19:33.7040098Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 21 Sep 2026 07:19:53 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=d5f45f9e-867c-4805-9aba-55121e6bdbb8/westeurope/61f58e21-cae6-4af4-ac5f-7072ae8a0215 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '249' + x-msedge-ref: + - 'Ref A: 6772CEB7AFB34E02BD5D306BEBCB5A80 Ref B: PNQ231110907040 Ref C: 2026-09-21T07:19:52Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -i --backup-management-type --delete-backup-data --yes + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.41.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupOperations/5684a2d0-63c4-4306-9bab-bff957e6c530?api-version=2026-07-01 + response: + body: + string: '{"id":"5684a2d0-63c4-4306-9bab-bff957e6c530","name":"5684a2d0-63c4-4306-9bab-bff957e6c530","status":"Succeeded","startTime":"2026-09-21T07:19:33.7040098Z","endTime":"2026-09-21T07:19:33.7040098Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"7a180811-76d1-4d9a-9e3d-5d41604cdaa4"}}' + headers: + cache-control: + - no-cache + content-length: + - '304' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 21 Sep 2026 07:19:59 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=d5f45f9e-867c-4805-9aba-55121e6bdbb8/westeurope/7d5ebdc3-424f-4ae6-9286-543b2196ed86 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '249' + x-msedge-ref: + - 'Ref A: 994B21E4D95347058AC266B0F6C23D57 Ref B: PNQ231110909052 Ref C: 2026-09-21T07:19:59Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -i --backup-management-type --delete-backup-data --yes + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.41.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupJobs/7a180811-76d1-4d9a-9e3d-5d41604cdaa4?api-version=2026-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.RecoveryServices/vaults/bhar11-prt-olr-rsv/backupJobs/7a180811-76d1-4d9a-9e3d-5d41604cdaa4","name":"7a180811-76d1-4d9a-9e3d-5d41604cdaa4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT22.5963937S","storageAccountName":"afsuami09191425","storageAccountVersion":"Storage","extendedInfo":{"tasksList":[],"propertyBag":{"File + Share Name":"climsirec000001","Storage Account Name":"afsuami09191425"}},"isUserTriggered":false,"entityFriendlyName":"climsirec000001","backupManagementType":"AzureStorage","operation":"DeleteBackupData","status":"Completed","startTime":"2026-09-21T07:19:33.7040098Z","endTime":"2026-09-21T07:19:56.3004035Z","activityId":"c8b6d56d-b58c-11f1-904a-6045bda581f9"}}' + headers: + cache-control: + - no-cache + content-length: + - '865' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 21 Sep 2026 07:20:00 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=d5f45f9e-867c-4805-9aba-55121e6bdbb8/westeurope/d2ff102c-6fc1-4c5d-b9a0-6f94a5f6a869 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '249' + x-msedge-ref: + - 'Ref A: 85F882A702E0429093074B220057AA2A Ref B: PNQ231110909052 Ref C: 2026-09-21T07:20:00Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage share delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - --account-name --account-key --name --delete-snapshots + User-Agent: + - AZURECLI/2.90.0 azsdk-python-storage-file-share/12.24.0b1 Python/3.13.11 (Windows-11-10.0.26200-SP0) + x-ms-date: + - Mon, 21 Sep 2026 07:20:00 GMT + x-ms-delete-snapshots: + - include-leased + x-ms-version: + - '2026-02-06' + method: DELETE + uri: https://afsuami09191425.file.core.windows.net/climsirec000001?restype=share + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Mon, 21 Sep 2026 07:20:01 GMT + server: + - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2026-02-06' + status: + code: 202 + message: Accepted +version: 1 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 05dc9ce4593..d3bc02b0b8b 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 @@ -353,6 +353,146 @@ def test_afs_cross_region_restore(self): ] ) + @AllowLargeResponse() + @record_only() + def test_afs_msi_reregistration_protection_restore(self): + source_subscription = ( + '8f74352d-05ee-4ca1-8807-c04eaa2dee5a' + if self.is_live else self.get_subscription_id() + ) + target_subscription = ( + '53ad7692-5283-4f0a-baf6-49412f5ebefe' + if self.is_live else self.get_subscription_id() + ) + self.kwargs.update({ + 'rg': 'bhar11-prt-restore-rg', + 'vault': 'bhar11-prt-olr-rsv', + 'policy': 'bhar11-prt-snapshot-policy', + 'storage_account': 'afsuami09191425', + 'uami_id': ( + '/subscriptions/{}/' + 'resourceGroups/bhar11-prt-restore-rg/providers/Microsoft.ManagedIdentity/' + 'userAssignedIdentities/afs-test-uami-09191425' + ).format(source_subscription), + 'target_subscription': target_subscription, + 'target_resource_group': 'afs-softdelete-rg', + 'target_storage_account': 'bhar11csrtgtsa', + 'target_share': 'restoredfs', + 'share': self.create_random_name('climsirec', 20), + 'type': 'AzureStorage' + }) + + self.cmd( + 'backup container register -g {rg} -v {vault} ' + '--backup-management-type {type} --workload-type AzureFileShare ' + '--storage-account {storage_account} --access-type IdentityBased ' + '--mi-system-assigned --yes' + ) + self.cmd( + 'backup container show -g {rg} -v {vault} -n {storage_account} ' + '--backup-management-type {type}', + checks=[ + self.check('properties.accessType', 'IdentityBased'), + self.check('properties.identityInfo.isSystemAssignedIdentity', True) + ] + ) + + self.cmd( + 'backup container register -g {rg} -v {vault} ' + '--backup-management-type {type} --workload-type AzureFileShare ' + '--storage-account {storage_account} --access-type IdentityBased ' + '--mi-user-assigned {uami_id} --yes' + ) + self.cmd( + 'backup container show -g {rg} -v {vault} -n {storage_account} ' + '--backup-management-type {type}', + checks=[ + self.check('properties.accessType', 'IdentityBased'), + self.check('properties.identityInfo.isSystemAssignedIdentity', False), + self.check('properties.identityInfo.managedIdentityResourceId', '{uami_id}') + ] + ) + + self.cmd( + 'storage share-rm create -g {rg} --storage-account {storage_account} ' + '--name {share} --quota 100 --enabled-protocols SMB' + ) + self.kwargs['storage_key'] = self.cmd( + 'storage account keys list -g {rg} -n {storage_account} ' + '--query "[0].value" -o tsv' + ).output.strip() + self.cmd( + 'storage directory create --account-name {storage_account} ' + '--account-key "{storage_key}" --share-name {share} --name seed' + ) + + self.cmd( + 'backup protection enable-for-azurefileshare -g {rg} -v {vault} ' + '--storage-account {storage_account} --azure-file-share {share} ' + '--policy-name {policy}', + checks=[ + self.check('properties.operation', 'ConfigureBackup'), + self.check('properties.status', 'Completed') + ] + ) + + item = self.cmd( + 'backup item list -g {rg} -v {vault} -c {storage_account} ' + '--backup-management-type {type} --workload-type AzureFileShare ' + '--query "[?properties.friendlyName == \'{share}\'] | [0]"' + ).get_output_in_json() + self.kwargs['item'] = item['name'] + self.kwargs['container'] = item['properties']['containerName'] + self.kwargs['retain_date'] = (datetime.utcnow() + timedelta(days=30)).strftime('%d-%m-%Y') + + self.kwargs['job'] = self.cmd( + 'backup protection backup-now -g {rg} -v {vault} -c {container} -i {item} ' + '--backup-management-type {type} --retain-until {retain_date} --query name' + ).get_output_in_json() + self.cmd('backup job wait -g {rg} -v {vault} -n {job}') + + self.kwargs['rp'] = self.cmd( + 'backup recoverypoint list -g {rg} -v {vault} -c {container} -i {item} ' + '--backup-management-type {type} --query "sort_by(@, &properties.recoveryPointTime)[-1].name"' + ).get_output_in_json() + + self.kwargs['job'] = self.cmd( + 'backup restore restore-azurefileshare -g {rg} -v {vault} ' + '-c {container} -i {item} -r {rp} --restore-mode AlternateLocation ' + '--resolve-conflict Overwrite --target-storage-account {storage_account} ' + '--target-file-share {share} ' + '--mi-user-assigned {uami_id} --query name' + ).get_output_in_json() + self.cmd('backup job wait -g {rg} -v {vault} -n {job}') + self.cmd( + 'backup job show -g {rg} -v {vault} -n {job}', + checks=[self.check('properties.status', 'Completed')] + ) + + self.kwargs['job'] = self.cmd( + 'backup restore restore-azurefileshare -g {rg} -v {vault} ' + '-c {container} -i {item} -r {rp} --restore-mode AlternateLocation ' + '--resolve-conflict Overwrite --target-subscription-id {target_subscription} ' + '--target-resource-group-name {target_resource_group} ' + '--target-storage-account {target_storage_account} --target-file-share {target_share} ' + '--mi-user-assigned {uami_id} --query name' + ).get_output_in_json() + self.cmd('backup job wait -g {rg} -v {vault} -n {job}') + self.cmd( + 'backup job show -g {rg} -v {vault} -n {job}', + checks=[self.check('properties.status', 'Completed')] + ) + + self.cmd( + 'backup protection disable -g {rg} -v {vault} -c {container} -i {item} ' + '--backup-management-type {type} --delete-backup-data true --yes' + ) + self.cmd( + 'storage share delete --account-name {storage_account} ' + '--account-key "{storage_key}" --name {share} ' + '--delete-snapshots include-leased' + ) + #@record_only() @live_only() @AllowLargeResponse() diff --git a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/test_custom_afs.py b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/test_custom_afs.py new file mode 100644 index 00000000000..9e367b1bd94 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/test_custom_afs.py @@ -0,0 +1,257 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------------------------- + +import unittest +from types import SimpleNamespace +from unittest.mock import Mock, patch + +from azure.cli.core.azclierror import ArgumentUsageError, RequiredArgumentMissingError, \ + MutuallyExclusiveArgumentError, InvalidArgumentValueError +from azure.cli.command_modules.backup import custom_afs, custom_base + + +class AfsManagedIdentityTest(unittest.TestCase): + + def test_register_container_rejects_afs_arguments_for_azure_workload(self): + afs_arguments = [ + {'storage_account': 'account'}, + {'access_type': 'KeyBased'}, + {'mi_system_assigned': True}, + {'mi_user_assigned': 'identity-id'} + ] + + for arguments in afs_arguments: + with self.subTest(arguments=arguments), self.assertRaises(ArgumentUsageError): + custom_base.register_container( + Mock(), Mock(), "vault", "rg", "AzureWorkload", + workload_type="MSSQL", resource_id="resource-id", **arguments) + + def test_validate_identity_parameters(self): + custom_afs._validate_afs_identity_parameters(None, None, None) + custom_afs._validate_afs_identity_parameters("KeyBased", None, None) + custom_afs._validate_afs_identity_parameters("IdentityBased", True, None) + custom_afs._validate_afs_identity_parameters("IdentityBased", None, "identity-id") + + with self.assertRaises(MutuallyExclusiveArgumentError): + custom_afs._validate_afs_identity_parameters("IdentityBased", True, "identity-id") + with self.assertRaises(RequiredArgumentMissingError): + custom_afs._validate_afs_identity_parameters(None, True, None) + with self.assertRaises(RequiredArgumentMissingError): + custom_afs._validate_afs_identity_parameters("IdentityBased", None, None) + with self.assertRaises(ArgumentUsageError): + custom_afs._validate_afs_identity_parameters("KeyBased", None, "identity-id") + + def test_validate_restore_parameters(self): + item = SimpleNamespace(id="/protectionContainers/container/protectedItems/item") + + custom_afs._validate_afs_restore_parameters( + "AlternateLocation", "account", "share", "subscription", None, None) + + with self.assertRaises(MutuallyExclusiveArgumentError): + custom_afs._validate_afs_restore_parameters( + "AlternateLocation", "account", "share", None, True, "identity-id") + with self.assertRaises(RequiredArgumentMissingError): + custom_afs._validate_afs_restore_parameters( + "AlternateLocation", None, "share", "subscription", None, None) + with self.assertRaises(RequiredArgumentMissingError): + custom_afs._validate_afs_restore_parameters( + "AlternateLocation", "account", None, None, None, None) + with self.assertRaises(InvalidArgumentValueError): + custom_afs._validate_afs_restore_parameters( + "AlternateLocation", "account", "share", "", None, None) + with self.assertRaises(ArgumentUsageError): + custom_afs._validate_afs_restore_parameters( + "OriginalLocation", "account", None, "subscription", None, None) + with self.assertRaises(InvalidArgumentValueError): + custom_afs.restore_AzureFileShare( + Mock(), Mock(), "rg", "vault", "recovery-point", item, + "AlternateLocation", "Overwrite", "ItemLevelRestore", + target_storage_account_name="account", target_file_share_name="share", + target_subscription_id="subscription", use_secondary_region=True) + with self.assertRaises(ArgumentUsageError): + custom_afs.restore_AzureFileShare( + Mock(), Mock(), "rg", "vault", "recovery-point", item, + "AlternateLocation", "Overwrite", "FullShareRestore", + target_storage_account_name="account", target_file_share_name="share", + target_subscription_id="subscription", mi_system_assigned=True, + use_secondary_region=True) + + def test_build_identity_info(self): + self.assertIsNone(custom_afs._build_afs_identity_info("KeyBased", None, None)) + + system_identity = custom_afs._build_afs_identity_info("IdentityBased", True, None) + self.assertTrue(system_identity.is_system_assigned_identity) + self.assertIsNone(system_identity.managed_identity_resource_id) + + user_identity = custom_afs._build_afs_identity_info("IdentityBased", None, "identity-id") + self.assertFalse(user_identity.is_system_assigned_identity) + self.assertEqual("identity-id", user_identity.managed_identity_resource_id) + + def test_identity_comparison_is_case_insensitive(self): + first = custom_afs._build_afs_identity_info( + "IdentityBased", None, "/subscriptions/SUB/resourceGroups/RG/providers/Microsoft.ManagedIdentity/" + "userAssignedIdentities/IDENTITY") + second = custom_afs._build_afs_identity_info( + "IdentityBased", None, "/subscriptions/sub/resourceGroups/rg/providers/Microsoft.ManagedIdentity/" + "userAssignedIdentities/identity") + + self.assertTrue(custom_afs._are_afs_identities_equal(first, second)) + self.assertFalse(custom_afs._are_afs_identities_equal( + first, custom_afs._build_afs_identity_info("IdentityBased", True, None))) + + @patch('azure.cli.command_modules.backup.custom_afs.helper.track_register_operation') + def test_register_storage_account_builds_identity_payload(self, track_register_operation): + client = Mock() + client.begin_register.return_value.result.return_value = Mock() + cmd = SimpleNamespace(cli_ctx=Mock()) + storage_account = SimpleNamespace( + name="StorageContainer;Storage;rg;account", + properties=SimpleNamespace( + container_id="/subscriptions/sub/resourceGroups/rg/providers/Microsoft.Storage/" + "storageAccounts/account", + friendly_name="account")) + identity = custom_afs._build_afs_identity_info("IdentityBased", None, "identity-id") + + custom_afs._register_storage_account( + cmd, client, "rg", "vault", storage_account, "IdentityBased", identity, "Reregister") + + request = client.begin_register.call_args.args[4] + self.assertEqual("IdentityBased", request.properties.access_type) + self.assertEqual("Reregister", request.properties.operation_type) + self.assertEqual("identity-id", request.properties.identity_info.managed_identity_resource_id) + track_register_operation.assert_called_once() + + @patch('azure.cli.command_modules.backup.custom_afs.protection_containers_cf') + @patch('azure.cli.command_modules.backup.custom_afs.backup_protection_containers_cf') + @patch('azure.cli.command_modules.backup.custom_afs.common.list_containers') + def test_matching_registration_is_no_op( + self, list_containers, backup_protection_containers_cf, protection_containers_cf): + identity = custom_afs._build_afs_identity_info("IdentityBased", True, None) + registered = SimpleNamespace( + name="StorageContainer;Storage;rg;account", + properties=SimpleNamespace( + friendly_name="account", + access_type="IdentityBased", + identity_info=identity)) + list_containers.return_value = [registered] + cmd = SimpleNamespace(cli_ctx=Mock()) + + result = custom_afs._ensure_storage_account_registration( + cmd, "rg", "vault", "account", "IdentityBased", True, None) + + self.assertIs(registered, result) + backup_protection_containers_cf.assert_called_once_with(cmd.cli_ctx) + protection_containers_cf.assert_not_called() + + @patch('azure.cli.command_modules.backup.custom_afs._register_storage_account') + @patch('azure.cli.command_modules.backup.custom_afs.protection_containers_cf') + @patch('azure.cli.command_modules.backup.custom_afs.backup_protection_containers_cf') + @patch('azure.cli.command_modules.backup.custom_afs.common.list_containers') + def test_changed_registration_uses_reregister( + self, list_containers, backup_protection_containers_cf, + protection_containers_cf, register_storage_account): + registered = SimpleNamespace( + name="StorageContainer;Storage;rg;account", + properties=SimpleNamespace( + friendly_name="account", + source_resource_id="/subscriptions/sub/resourceGroups/rg/providers/Microsoft.Storage/" + "storageAccounts/account", + access_type="KeyBased", + identity_info=None)) + list_containers.return_value = [registered] + cmd = SimpleNamespace(cli_ctx=Mock()) + + custom_afs._ensure_storage_account_registration( + cmd, "rg", "vault", "account", "IdentityBased", True, None, yes=True) + + args = register_storage_account.call_args.args + protection_containers_cf.assert_called_once_with(cmd.cli_ctx) + self.assertIs(registered, args[4]) + self.assertEqual("IdentityBased", args[5]) + self.assertTrue(args[6].is_system_assigned_identity) + self.assertEqual("Reregister", args[7]) + + @patch('azure.cli.command_modules.backup.custom_afs.helper.track_backup_job') + @patch('azure.cli.command_modules.backup.custom_afs.helper.has_resource_guard_mapping', return_value=False) + @patch('azure.cli.command_modules.backup.custom_afs._get_storage_account_id') + def test_restore_sets_uami_and_target_subscription( + self, get_storage_account_id, has_resource_guard_mapping, track_backup_job): + get_storage_account_id.side_effect = ["source-account-id", "target-account-id"] + client = Mock() + client.begin_trigger.return_value.result.return_value = Mock() + track_backup_job.return_value = Mock() + cmd = SimpleNamespace(cli_ctx=Mock()) + item = SimpleNamespace( + id=("/subscriptions/sub/resourceGroups/rg/providers/Microsoft.RecoveryServices/vaults/vault/" + "backupFabrics/Azure/protectionContainers/StorageContainer;Storage;rg;source/" + "protectedItems/AzureFileShare;share"), + properties=SimpleNamespace(container_name="StorageContainer;Storage;rg;source")) + + custom_afs.restore_AzureFileShare( + cmd, client, "rg", "vault", "recovery-point", item, "AlternateLocation", + "Overwrite", "FullShareRestore", target_storage_account_name="target", + target_file_share_name="target-share", target_resource_group_name="target-rg", + target_subscription_id="target-subscription", mi_user_assigned="identity-id") + + request = client.begin_trigger.call_args.args[6].properties + self.assertFalse(request.identity_info.is_system_assigned_identity) + self.assertEqual("identity-id", request.identity_info.managed_identity_resource_id) + self.assertEqual("target-account-id", request.target_details.target_resource_id) + self.assertEqual( + ("target", "target-rg", "target-subscription"), + get_storage_account_id.call_args_list[1].args[1:]) + has_resource_guard_mapping.assert_called_once() + track_backup_job.assert_called_once() + + @patch('azure.cli.command_modules.backup.custom_afs.recovery_points_passive_cf') + @patch('azure.cli.command_modules.backup.custom_afs.aad_properties_cf') + @patch('azure.cli.command_modules.backup.custom_afs.helper.track_backup_crr_job') + @patch('azure.cli.command_modules.backup.custom_afs.cross_region_restore_cf') + @patch('azure.cli.command_modules.backup.custom_afs.vaults_cf') + @patch('azure.cli.command_modules.backup.custom_afs._validate_target_file_share') + @patch('azure.cli.command_modules.backup.custom_afs._get_storage_account_id') + def test_cross_region_cross_subscription_restore( + self, get_storage_account_id, validate_target_file_share, vaults_cf, cross_region_restore_cf, + track_backup_crr_job, aad_properties_cf, recovery_points_passive_cf): + get_storage_account_id.side_effect = ["source-account-id", "target-account-id"] + vaults_cf.return_value.get.return_value = SimpleNamespace( + id="/subscriptions/sub/resourceGroups/rg/providers/Microsoft.RecoveryServices/vaults/vault", + location="centralus") + crr_access_token = Mock() + recovery_points_passive_cf.return_value.get_access_token.return_value.properties = crr_access_token + result = Mock() + cross_region_restore_cf.return_value.begin_trigger.return_value.result.return_value = result + track_backup_crr_job.return_value = Mock() + cmd = SimpleNamespace(cli_ctx=Mock()) + item = SimpleNamespace( + id=("/subscriptions/sub/resourceGroups/rg/providers/Microsoft.RecoveryServices/vaults/vault/" + "backupFabrics/Azure/protectionContainers/StorageContainer;Storage;rg;source/" + "protectedItems/AzureFileShare;share"), + properties=SimpleNamespace(container_name="StorageContainer;Storage;rg;source")) + + custom_afs.restore_AzureFileShare( + cmd, Mock(), "rg", "vault", "recovery-point", item, "AlternateLocation", + "Overwrite", "FullShareRestore", target_storage_account_name="target", + target_file_share_name="target-share", + target_resource_group_name="target-rg", + target_subscription_id="target-subscription", use_secondary_region=True) + + begin_trigger = cross_region_restore_cf.return_value.begin_trigger + self.assertEqual("eastus2", begin_trigger.call_args.args[0]) + request = begin_trigger.call_args.args[1] + self.assertEqual("AlternateLocation", request.restore_request.recovery_type) + self.assertEqual("target-account-id", request.restore_request.target_details.target_resource_id) + crr_access_token.enable_additional_properties_sending.assert_called_once_with() + aad_properties_cf.return_value.get.assert_called_once_with( + "eastus2", "backupManagementType eq 'AzureStorage'") + recovery_points_passive_cf.return_value.get_access_token.assert_called_once() + validate_target_file_share.assert_called_once_with( + cmd.cli_ctx, "target-rg", "target", "target-share", "target-subscription") + track_backup_crr_job.assert_called_once_with( + cmd.cli_ctx, result, "eastus2", vaults_cf.return_value.get.return_value.id) + + +if __name__ == '__main__': + unittest.main() From f923ae8bb75a03144b526e7d4cae437c906f376a Mon Sep 17 00:00:00 2001 From: Bharat Purwar Date: Tue, 22 Sep 2026 14:11:40 +0530 Subject: [PATCH 2/2] Preserve backup container registration defaults Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- .../cli/command_modules/backup/custom_base.py | 5 +++-- .../backup/tests/latest/test_custom_afs.py | 15 +++++++++++++-- 2 files changed, 16 insertions(+), 4 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/backup/custom_base.py b/src/azure-cli/azure/cli/command_modules/backup/custom_base.py index 5c96fff6435..5065bb6f856 100644 --- a/src/azure-cli/azure/cli/command_modules/backup/custom_base.py +++ b/src/azure-cli/azure/cli/command_modules/backup/custom_base.py @@ -491,8 +491,9 @@ def register_wl_container(cmd, client, vault_name, resource_group_name, workload resource_id, backup_management_type) -def register_container(cmd, client, vault_name, resource_group_name, backup_management_type, - workload_type=None, resource_id=None, storage_account=None, access_type=None, +def register_container(cmd, client, vault_name, resource_group_name, workload_type, + resource_id=None, backup_management_type="AzureWorkload", + storage_account=None, access_type=None, mi_system_assigned=None, mi_user_assigned=None, yes=False): if backup_management_type.lower() == "azurestorage": if workload_type is None or workload_type.lower() not in ["azurefiles", "azurefileshare"]: diff --git a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/test_custom_afs.py b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/test_custom_afs.py index 9e367b1bd94..80d130003bc 100644 --- a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/test_custom_afs.py +++ b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/test_custom_afs.py @@ -25,8 +25,19 @@ def test_register_container_rejects_afs_arguments_for_azure_workload(self): for arguments in afs_arguments: with self.subTest(arguments=arguments), self.assertRaises(ArgumentUsageError): custom_base.register_container( - Mock(), Mock(), "vault", "rg", "AzureWorkload", - workload_type="MSSQL", resource_id="resource-id", **arguments) + Mock(), Mock(), "vault", "rg", "MSSQL", + resource_id="resource-id", **arguments) + + @patch("azure.cli.command_modules.backup.custom_base.register_wl_container") + def test_register_container_preserves_azure_workload_default(self, register_wl_container): + cmd = Mock() + client = Mock() + + custom_base.register_container( + cmd, client, "vault", "rg", "MSSQL", resource_id="resource-id") + + register_wl_container.assert_called_once_with( + cmd, client, "vault", "rg", "MSSQL", "resource-id", "AzureWorkload") def test_validate_identity_parameters(self): custom_afs._validate_afs_identity_parameters(None, None, None)