diff --git a/linter_exclusions.yml b/linter_exclusions.yml index d61beed1e87..380bdcf7dc0 100644 --- a/linter_exclusions.yml +++ b/linter_exclusions.yml @@ -774,6 +774,9 @@ backup recoverypoint list: backup_management_type: rule_exclusions: - option_length_too_long + recommended_for_archive: + rule_exclusions: + - option_length_too_long backup recoverypoint show: parameters: backup_management_type: 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 83147877bcc..2fae0ba17eb 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 @@ -146,6 +146,10 @@ def recovery_points_cf(cli_ctx, *_): return _backup_client_factory(cli_ctx).recovery_points +def recovery_points_recommended_cf(cli_ctx, *_): + return _backup_client_factory(cli_ctx).recovery_points_recommended_for_move + + def recovery_points_crr_cf(cli_ctx, *_): return _backup_client_factory(cli_ctx).recovery_points_crr 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 ba925dc3dd1..91076d14086 100644 --- a/src/azure-cli/azure/cli/command_modules/backup/_help.py +++ b/src/azure-cli/azure/cli/command_modules/backup/_help.py @@ -350,6 +350,14 @@ crafted: true """ +helps['backup recoverypoint move'] = """ +type: command +short-summary: Move a particular recovery point of a backed up item from one tier to another tier. +examples: + - name: Move a particular recovery point of a backed up item. + text: az backup recoverypoint move --container-name MyContainer --item-name MyItem --resource-group MyResourceGroup --vault-name MyVault --name RpId --source-tier SourceTier --destination-tier DestinationTier +""" + helps['backup recoverypoint show'] = """ type: command short-summary: Shows details of a particular recovery point. 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 2c54719bcf6..5a5b92c160f 100644 --- a/src/azure-cli/azure/cli/command_modules/backup/_params.py +++ b/src/azure-cli/azure/cli/command_modules/backup/_params.py @@ -25,10 +25,13 @@ allowed_azure_workload_types = ['MSSQL', 'SAPHANA', 'SAPASE', 'SAPHanaDatabase', 'SQLDataBase'] allowed_backup_management_types = ['AzureIaasVM', 'AzureStorage', 'AzureWorkload'] allowed_protectable_item_type = ['SQLAG', 'SQLInstance', 'SQLDatabase', 'HANAInstance', 'SAPHanaDatabase', 'SAPHanaSystem'] +allowed_target_tier_type_chk_archivable = ['VaultArchive'] +allowed_tier_type = ['VaultStandard', 'Snapshot', 'VaultArchive', 'VaultStandardRehydrated', 'SnapshotAndVaultStandard', 'SnapshotAndVaultArchive'] +allowed_rehyd_priority_type = ['Standard', 'High'] backup_management_type_help = """Specifiy the backup management type. Define how Azure Backup manages the backup of entities within the ARM resource. For eg: AzureWorkloads refers to workloads installed within Azure VMs, AzureStorage refers to entities within Storage account. Required only if friendly name is used as Container name.""" container_name_help = """Name of the backup container. Accepts 'Name' or 'FriendlyName' from the output of az backup container list command. If 'FriendlyName' is passed then BackupManagementType is required.""" -workload_type_help = """Specifiy the type of applications within the Resource which should be discovered and protected by Azure Backup. """ +workload_type_help = """Specify the type of applications within the Resource which should be discovered and protected by Azure Backup. """ restore_mode_help = """Specify the restore mode.""" resolve_conflict_help = "Instruction if there's a conflict with the restored data." resource_id_help = """ID of the Azure Resource containing items to be protected by Azure Backup service. Currently, only Azure VM resource IDs are supported.""" @@ -40,6 +43,9 @@ diskslist_help = """List of disks to be excluded or included.""" disk_list_setting_help = """option to decide whether to include or exclude the disk or reset any previous settings to default behavior""" target_container_name_help = """The target container to which the DB recovery point should be downloaded as files.""" +target_tier_help = """ The destination/target tier to which a particular recovery point has to be moved.""" +tier_help = """ Provide 'tier' parameter to filter recovery points.""" +rehyd_priority_type_help = """The type of priority to be maintained while rehydrating a recovery point """ vault_name_type = CLIArgumentType(help='Name of the Recovery services vault.', options_list=['--vault-name', '-v'], completer=get_resource_name_completion_list('Microsoft.RecoveryServices/vaults')) container_name_type = CLIArgumentType(help=container_name_help, options_list=['--container-name', '-c']) @@ -62,6 +68,9 @@ target_container_name_type = CLIArgumentType(options_list=['--target-container-name'], help=target_container_name_help) filepath_type = CLIArgumentType(options_list=['--filepath'], help="The path to which the DB should be restored as files.") from_full_rp_type = CLIArgumentType(options_list=['--from-full-rp-name'], help="Name of the starting Recovery point.") +target_tier_type = CLIArgumentType(help=target_tier_help, arg_type=get_enum_type(allowed_target_tier_type_chk_archivable), options_list=['--target-tier']) +tier_type = CLIArgumentType(help=tier_help, arg_type=get_enum_type(allowed_tier_type), options_list=['--tier']) +rehyd_priority_type = CLIArgumentType(help=rehyd_priority_type_help, arg_type=get_enum_type(allowed_rehyd_priority_type), options_list=['--rehydration-priority']) # pylint: disable=too-many-statements @@ -175,15 +184,36 @@ def load_arguments(self, _): c.argument('container_name', container_name_type, id_part='child_name_2') c.argument('item_name', item_name_type, id_part='child_name_3') - for command in ['list', 'show-log-chain']: - with self.argument_context('backup recoverypoint ' + command) as c: - c.argument('vault_name', vault_name_type, id_part=None) - c.argument('start_date', type=datetime_type, help='The start date of the range in UTC (d-m-Y).') - c.argument('end_date', type=datetime_type, help='The end date of the range in UTC (d-m-Y).') - c.argument('backup_management_type', backup_management_type) - c.argument('container_name', container_name_type) - c.argument('workload_type', workload_type) - c.argument('use_secondary_region', action='store_true', help='Use this flag to list recoverypoints in secondary region.') + with self.argument_context('backup recoverypoint list') as c: + c.argument('vault_name', vault_name_type, id_part=None) + c.argument('start_date', type=datetime_type, help='The start date of the range in UTC (d-m-Y).') + c.argument('end_date', type=datetime_type, help='The end date of the range in UTC (d-m-Y).') + c.argument('backup_management_type', backup_management_type) + c.argument('container_name', container_name_type) + c.argument('workload_type', workload_type) + c.argument('use_secondary_region', action='store_true', help='Use this flag to list recoverypoints in secondary region.') + c.argument('is_ready_for_move', arg_type=get_three_state_flag(), help='Use this flag to retrieve the recoverypoints that are ready to be moved to destination-tier.') + c.argument('target_tier', target_tier_type) + c.argument('tier', tier_type) + c.argument('recommended_for_archive', action="store_true", help='Use this flag to retrieve recommended archivable recoverypoints.') + + with self.argument_context('backup recoverypoint move') as c: + c.argument('vault_name', vault_name_type, id_part=None) + c.argument('container_name', container_name_type) + c.argument('rp_name', rp_name_type, options_list=['--name', '-n'], id_part='child_name_4') + c.argument('backup_management_type', backup_management_type) + c.argument('workload_type', workload_type) + c.argument('source_tier', help='The source tier from which a particular recovery point has to be moved.', arg_type=get_enum_type(['VaultStandard']), options_list=['--source-tier']) + c.argument('destination_tier', help=target_tier_help, arg_type=get_enum_type(['VaultArchive']), options_list=['--destination-tier']) + + with self.argument_context('backup recoverypoint show-log-chain') as c: + c.argument('vault_name', vault_name_type, id_part=None) + c.argument('start_date', type=datetime_type, help='The start date of the range in UTC (d-m-Y).') + c.argument('end_date', type=datetime_type, help='The end date of the range in UTC (d-m-Y).') + c.argument('backup_management_type', backup_management_type) + c.argument('container_name', container_name_type) + c.argument('workload_type', workload_type) + c.argument('use_secondary_region', action='store_true', help='Use this flag to list recoverypoints in secondary region.') with self.argument_context('backup recoverypoint show') as c: c.argument('name', rp_name_type, options_list=['--name', '-n'], help='Name of the recovery point. You can use the backup recovery point list command to get the name of a backed up item.', id_part='child_name_4') @@ -276,6 +306,8 @@ def load_arguments(self, _): c.argument('restore_only_osdisk', arg_type=get_three_state_flag(), help='Use this flag to restore only OS disks of a backed up VM.') c.argument('restore_as_unmanaged_disks', arg_type=get_three_state_flag(), help='Use this flag to specify to restore as unmanaged disks') c.argument('use_secondary_region', action='store_true', help='Use this flag to show recoverypoints in secondary region.') + c.argument('rehydration_duration', type=int, help='Set the maximum time, in days (between 10-30, both inclusive) for which the recovery point stays in hydrated state. Default: 15') + c.argument('rehydration_priority', rehyd_priority_type) with self.argument_context('backup restore restore-azurefileshare') as c: c.argument('resolve_conflict', resolve_conflict_type) @@ -296,6 +328,8 @@ def load_arguments(self, _): with self.argument_context('backup restore restore-azurewl') as c: c.argument('vault_name', vault_name_type, id_part=None) c.argument('recovery_config', options_list=['--recovery-config'], help="""Specify the recovery configuration of a backed up item. The configuration object can be obtained from 'backup recoveryconfig show' command.""") + c.argument('rehydration_duration', type=int, help='Set the maximum time, in days (between 10-30, both inclusive) for which the recovery point stays in hydrated state. Default: 15') + c.argument('rehydration_priority', rehyd_priority_type) # Recoveryconfig with self.argument_context('backup recoveryconfig show') as c: 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 01f7bb958fd..ef8914685d5 100644 --- a/src/azure-cli/azure/cli/command_modules/backup/commands.py +++ b/src/azure-cli/azure/cli/command_modules/backup/commands.py @@ -9,6 +9,7 @@ job_details_cf, job_cancellations_cf, recovery_points_cf, restores_cf, backup_storage_configs_cf, \ item_level_recovery_connections_cf, backup_protected_items_cf, backup_protectable_items_cf, \ protection_containers_cf, protection_intent_cf # pylint: disable=unused-variable + from azure.cli.command_modules.backup._format import ( transform_container_list, transform_policy_list, transform_item_list, transform_job_list, transform_recovery_point_list, transform_container, transform_item, transform_protectable_item_list, transform_job, @@ -89,7 +90,8 @@ def load_command_table(self, _): with self.command_group('backup recoverypoint', backup_custom_base, client_factory=recovery_points_cf) as g: g.show_command('show', 'show_recovery_point') g.command('list', 'list_recovery_points', table_transformer=transform_recovery_point_list) - g.show_command('show-log-chain', 'list_recovery_points', table_transformer=transform_log_chain_list) + g.command('move', 'move_recovery_points') + g.show_command('show-log-chain', 'show_log_chain_recovery_points', table_transformer=transform_log_chain_list) with self.command_group('backup restore', backup_custom_base, client_factory=restores_cf) as g: g.command('restore-disks', 'restore_disks') diff --git a/src/azure-cli/azure/cli/command_modules/backup/custom.py b/src/azure-cli/azure/cli/command_modules/backup/custom.py index d08f66707d0..817c58dd991 100644 --- a/src/azure-cli/azure/cli/command_modules/backup/custom.py +++ b/src/azure-cli/azure/cli/command_modules/backup/custom.py @@ -20,18 +20,24 @@ AzureIaaSClassicComputeVMProtectedItem, ProtectionState, IaasVMBackupRequest, BackupRequestResource, \ IaasVMRestoreRequest, RestoreRequestResource, BackupManagementType, WorkloadType, OperationStatusValues, \ JobStatus, ILRRequestResource, IaasVMILRRegistrationRequest, BackupResourceConfig, BackupResourceConfigResource, \ - BackupResourceVaultConfig, BackupResourceVaultConfigResource, DiskExclusionProperties, ExtendedProperties + BackupResourceVaultConfig, BackupResourceVaultConfigResource, DiskExclusionProperties, ExtendedProperties, \ + MoveRPAcrossTiersRequest, RecoveryPointRehydrationInfo, IaasVMRestoreWithRehydrationRequest from azure.cli.core.util import CLIError from azure.core.exceptions import HttpResponseError -from azure.cli.core.azclierror import RequiredArgumentMissingError, InvalidArgumentValueError +from azure.cli.core.azclierror import RequiredArgumentMissingError, InvalidArgumentValueError, \ + MutuallyExclusiveArgumentError, ArgumentUsageError + from azure.cli.command_modules.backup._client_factory import ( vaults_cf, backup_protected_items_cf, protection_policies_cf, virtual_machines_cf, recovery_points_cf, protection_containers_cf, backup_protectable_items_cf, resources_cf, backup_operation_statuses_cf, job_details_cf, protection_container_refresh_operation_results_cf, backup_protection_containers_cf, protected_items_cf, backup_resource_vault_config_cf, recovery_points_crr_cf, aad_properties_cf, cross_region_restore_cf, backup_crr_job_details_cf, crr_operation_status_cf, backup_crr_jobs_cf, - backup_protected_items_crr_cf, protection_container_operation_results_cf) + backup_protected_items_crr_cf, protection_container_operation_results_cf, _backup_client_factory, + recovery_points_recommended_cf) + +import azure.cli.command_modules.backup.custom_common as common logger = get_logger(__name__) @@ -525,9 +531,12 @@ def show_recovery_point(cmd, client, resource_group_name, vault_name, container_ def list_recovery_points(cmd, client, resource_group_name, vault_name, item, start_date=None, end_date=None, - use_secondary_region=None): + use_secondary_region=None, is_ready_for_move=None, target_tier=None, tier=None, + recommended_for_archive=None): + if cmd.name.split()[2] == 'show-log-chain': - raise InvalidArgumentValueError("show-log-chain is supported by AzureWorkload backup management type only.") + raise ArgumentUsageError("show-log-chain is supported by AzureWorkload backup management type only.") + # Get container and item URIs container_uri = _get_protection_container_uri_from_id(item.id) item_uri = _get_protected_item_uri_from_id(item.id) @@ -541,11 +550,51 @@ def list_recovery_points(cmd, client, resource_group_name, vault_name, item, sta if use_secondary_region: client = recovery_points_crr_cf(cmd.cli_ctx) - # Get recovery points - recovery_points = client.list(vault_name, resource_group_name, fabric_name, container_uri, item_uri, filter_string) + if recommended_for_archive: + if is_ready_for_move is False: + raise InvalidArgumentValueError( + """ + All the recommended archivable recovery points are by default ready for + move. Please provide the correct value for --is-ready-for-move. + """) + + client = recovery_points_recommended_cf(cmd.cli_ctx) + recovery_points = client.list(vault_name, resource_group_name, fabric_name, container_uri, item_uri) + + else: + recovery_points = client.list(vault_name, resource_group_name, fabric_name, container_uri, item_uri, + filter_string) + paged_recovery_points = _get_list_from_paged_response(recovery_points) + common.fetch_tier(paged_recovery_points) - return paged_recovery_points + if use_secondary_region: + paged_recovery_points = [item for item in paged_recovery_points if item.properties.recovery_point_tier_details + is None or (item.properties.recovery_point_tier_details is not None and + item.tier_type != 'VaultArchive')] + + recovery_point_list = common.check_rp_move_readiness(paged_recovery_points, target_tier, is_ready_for_move) + recovery_point_list = common.filter_rp_based_on_tier(recovery_point_list, tier) + return recovery_point_list + + +def move_recovery_points(cmd, resource_group_name, vault_name, item_name, rp_name, source_tier, + destination_tier): + + container_uri = _get_protection_container_uri_from_id(item_name.id) + item_uri = _get_protected_item_uri_from_id(item_name.id) + + if source_tier not in common.tier_type_map.keys(): + raise InvalidArgumentValueError('This source tier-type is not accepted by move command at present.') + + parameters = MoveRPAcrossTiersRequest(source_tier_type=common.tier_type_map[source_tier], + target_tier_type=common.tier_type_map[destination_tier]) + + result = _backup_client_factory(cmd.cli_ctx).move_recovery_point(vault_name, resource_group_name, fabric_name, + container_uri, item_uri, rp_name, parameters, + raw=True, polling=False).result() + + return _track_backup_job(cmd.cli_ctx, result, vault_name, resource_group_name) def _should_use_original_storage_account(recovery_point, restore_to_staging_storage_account): @@ -578,15 +627,63 @@ def _should_use_original_storage_account(recovery_point, restore_to_staging_stor return use_original_storage_account +def _get_trigger_restore_properties(rp_name, vault_location, storage_account_id, + source_resource_id, target_rg_id, + use_original_storage_account, restore_disk_lun_list, + rehydration_duration, rehydration_priority, tier): + if tier == 'VaultArchive': + rehyd_duration = 'P' + str(rehydration_duration) + 'D' + rehydration_info = RecoveryPointRehydrationInfo(rehydration_retention_duration=rehyd_duration, + rehydration_priority=rehydration_priority) + + trigger_restore_properties = IaasVMRestoreWithRehydrationRequest( + create_new_cloud_service=True, + recovery_point_id=rp_name, + recovery_type='RestoreDisks', + region=vault_location, + storage_account_id=storage_account_id, + source_resource_id=source_resource_id, + target_resource_group_id=target_rg_id, + original_storage_account_option=use_original_storage_account, + restore_disk_lun_list=restore_disk_lun_list, + recovery_point_rehydration_info=rehydration_info) + + else: + trigger_restore_properties = IaasVMRestoreRequest( + create_new_cloud_service=True, + recovery_point_id=rp_name, + recovery_type='RestoreDisks', + region=vault_location, + storage_account_id=storage_account_id, + source_resource_id=source_resource_id, + target_resource_group_id=target_rg_id, + original_storage_account_option=use_original_storage_account, + restore_disk_lun_list=restore_disk_lun_list) + + return trigger_restore_properties + + # pylint: disable=too-many-locals def restore_disks(cmd, client, resource_group_name, vault_name, container_name, item_name, rp_name, storage_account, target_resource_group=None, restore_to_staging_storage_account=None, restore_only_osdisk=None, - diskslist=None, restore_as_unmanaged_disks=None, use_secondary_region=None): + diskslist=None, restore_as_unmanaged_disks=None, use_secondary_region=None, rehydration_duration=15, + rehydration_priority=None): + item = show_item(cmd, backup_protected_items_cf(cmd.cli_ctx), resource_group_name, vault_name, container_name, item_name, "AzureIaasVM", "VM", use_secondary_region) _validate_item(item) + recovery_point = show_recovery_point(cmd, recovery_points_cf(cmd.cli_ctx), resource_group_name, vault_name, container_name, item_name, rp_name, "AzureIaasVM", "VM", use_secondary_region) + + rp_list = [recovery_point] + common.fetch_tier(rp_list) + + if (rp_list[0].properties.recovery_point_tier_details is not None and rp_list[0].tier_type == 'VaultArchive' and + rehydration_priority is None): + raise InvalidArgumentValueError("""The selected recovery point is in archive tier, provide additional + parameters of rehydration duration and rehydration priority.""") + vault = vaults_cf(cmd.cli_ctx).get(resource_group_name, vault_name) vault_location = vault.location @@ -638,20 +735,22 @@ def restore_disks(cmd, client, resource_group_name, vault_name, container_name, if diskslist: restore_disk_lun_list = diskslist - trigger_restore_properties = IaasVMRestoreRequest(create_new_cloud_service=True, - recovery_point_id=rp_name, - recovery_type='RestoreDisks', - region=vault_location, - storage_account_id=_storage_account_id, - source_resource_id=_source_resource_id, - target_resource_group_id=target_rg_id, - original_storage_account_option=use_original_storage_account, - restore_disk_lun_list=restore_disk_lun_list) + trigger_restore_properties = _get_trigger_restore_properties(rp_name, vault_location, _storage_account_id, + _source_resource_id, target_rg_id, + use_original_storage_account, restore_disk_lun_list, + rehydration_duration, rehydration_priority, + None if rp_list[0]. + properties.recovery_point_tier_details is None else + rp_list[0].tier_type) trigger_restore_request = RestoreRequestResource(properties=trigger_restore_properties) if use_secondary_region: if target_rg_id is None: raise RequiredArgumentMissingError("Please provide target resource group using --target-resource-group.") + + if rehydration_priority is not None: + raise MutuallyExclusiveArgumentError("Archive restore isn't supported for secondary region.") + azure_region = secondary_region_map[vault_location] aad_client = aad_properties_cf(cmd.cli_ctx) aad_result = aad_client.get(azure_region) @@ -663,6 +762,7 @@ def restore_disks(cmd, client, resource_group_name, vault_name, container_name, trigger_restore_properties.region = azure_region result = crr_client.trigger(azure_region, crr_access_token, trigger_restore_properties, raw=True, polling=False).result() + return _track_backup_crr_job(cmd.cli_ctx, result, azure_region, vault.id) # Trigger restore @@ -1163,15 +1263,19 @@ def _get_filter_string(filter_dict): def _get_query_dates(end_date, start_date): query_start_date = None query_end_date = None + if start_date and end_date: query_start_date = start_date query_end_date = end_date + elif not start_date and end_date: query_end_date = end_date query_start_date = query_end_date - timedelta(days=30) + elif start_date and not end_date: query_start_date = start_date query_end_date = query_start_date + timedelta(days=30) + return query_end_date, query_start_date # JSON Utilities 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 689bbd9745b..aae6c6e9472 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 @@ -18,7 +18,7 @@ from azure.cli.command_modules.backup._client_factory import protection_containers_cf, protectable_containers_cf, \ protection_policies_cf, backup_protection_containers_cf, backup_protectable_items_cf, \ resources_cf, backup_protected_items_cf -from azure.cli.core.azclierror import InvalidArgumentValueError +from azure.cli.core.azclierror import ArgumentUsageError fabric_name = "Azure" backup_management_type = "AzureStorage" @@ -210,16 +210,25 @@ def restore_AzureFileShare(cmd, client, resource_group_name, vault_name, rp_name def list_recovery_points(cmd, client, resource_group_name, vault_name, item, start_date=None, end_date=None, - use_secondary_region=None): + use_secondary_region=None, is_ready_for_move=None, target_tier=None, tier=None, + recommended_for_archive=None): if use_secondary_region: - raise InvalidArgumentValueError( + raise ArgumentUsageError( """ --use-secondary-region flag is not supported for --backup-management-type AzureStorage. Please either remove the flag or query for any other backup-management-type. """) + if is_ready_for_move is not None or target_tier is not None or tier is not None: + raise ArgumentUsageError("""Invalid argument has been passed. --is-ready-for-move true, --target-tier + and --tier flags are not supported for --backup-management-type AzureStorage.""") + + if recommended_for_archive is not None: + raise ArgumentUsageError("""--recommended-for-archive is supported by AzureIaasVM backup management + type only.""") + if cmd.name.split()[2] == 'show-log-chain': - raise InvalidArgumentValueError("show-log-chain is supported by AzureWorkload backup management type only.") + raise ArgumentUsageError("show-log-chain is supported by AzureWorkload backup management type only.") # Get container and item URIs container_uri = helper.get_protection_container_uri_from_id(item.id) 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 2d1f4c23b27..abbc6dc42af 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 @@ -10,7 +10,8 @@ import azure.cli.command_modules.backup.custom_wl as custom_wl from azure.cli.command_modules.backup._client_factory import protection_policies_cf, backup_protected_items_cf, \ backup_protection_containers_cf, backup_protectable_items_cf -from azure.cli.core.azclierror import ValidationError, RequiredArgumentMissingError +from azure.cli.core.azclierror import ValidationError, RequiredArgumentMissingError, InvalidArgumentValueError, \ + MutuallyExclusiveArgumentError, ArgumentUsageError # pylint: disable=import-error fabric_name = "Azure" @@ -70,7 +71,43 @@ def show_recovery_point(cmd, client, resource_group_name, vault_name, container_ def list_recovery_points(cmd, client, resource_group_name, vault_name, container_name, item_name, backup_management_type=None, workload_type=None, start_date=None, end_date=None, - use_secondary_region=None): + use_secondary_region=None, is_ready_for_move=None, target_tier=None, tier=None, + recommended_for_archive=None): + + items_client = backup_protected_items_cf(cmd.cli_ctx) + item = show_item(cmd, items_client, resource_group_name, vault_name, container_name, item_name, + backup_management_type, workload_type, use_secondary_region) + custom_help.validate_item(item) + + if isinstance(item, list): + raise ValidationError("Multiple items found. Please give native names instead.") + + if (use_secondary_region and (is_ready_for_move is not None or target_tier is not None or + recommended_for_archive is not None)): + raise MutuallyExclusiveArgumentError("Archive based filtering is not supported in secondary region.") + + if item.properties.backup_management_type.lower() == "azureiaasvm": + return custom.list_recovery_points(cmd, client, resource_group_name, vault_name, item, start_date, end_date, + use_secondary_region, is_ready_for_move, target_tier, tier, + recommended_for_archive) + + if item.properties.backup_management_type.lower() == "azurestorage": + return custom_afs.list_recovery_points(cmd, client, resource_group_name, vault_name, item, start_date, + end_date, use_secondary_region, is_ready_for_move, target_tier, tier, + recommended_for_archive) + + if item.properties.backup_management_type.lower() == "azureworkload": + return custom_wl.list_wl_recovery_points(cmd, client, resource_group_name, vault_name, item, + start_date, end_date, is_ready_for_move=is_ready_for_move, + target_tier=target_tier, use_secondary_region=use_secondary_region, + tier=tier, recommended_for_archive=recommended_for_archive) + + return None + + +def show_log_chain_recovery_points(cmd, client, resource_group_name, vault_name, container_name, item_name, + backup_management_type=None, workload_type=None, start_date=None, end_date=None, + use_secondary_region=None): items_client = backup_protected_items_cf(cmd.cli_ctx) item = show_item(cmd, items_client, resource_group_name, vault_name, container_name, item_name, @@ -87,13 +124,35 @@ def list_recovery_points(cmd, client, resource_group_name, vault_name, container if item.properties.backup_management_type.lower() == "azurestorage": return custom_afs.list_recovery_points(cmd, client, resource_group_name, vault_name, item, start_date, end_date, use_secondary_region) + if item.properties.backup_management_type.lower() == "azureworkload": return custom_wl.list_wl_recovery_points(cmd, client, resource_group_name, vault_name, item, start_date, end_date, use_secondary_region=use_secondary_region) - return None +def move_recovery_points(cmd, resource_group_name, vault_name, container_name, item_name, rp_name, source_tier, + destination_tier, backup_management_type=None, workload_type=None): + + items_client = backup_protected_items_cf(cmd.cli_ctx) + item = show_item(cmd, items_client, resource_group_name, vault_name, container_name, item_name, + backup_management_type, workload_type) + custom_help.validate_item(item) + + if isinstance(item, list): + raise ValidationError("Multiple items found. Please give native names instead.") + + if item.properties.backup_management_type.lower() == "azureiaasvm": + return custom.move_recovery_points(cmd, resource_group_name, vault_name, item, rp_name, source_tier, + destination_tier) + + if item.properties.backup_management_type.lower() == "azureworkload": + return custom_wl.move_wl_recovery_points(cmd, resource_group_name, vault_name, item, rp_name, + source_tier, destination_tier) + + raise ArgumentUsageError('This command is not supported for --backup-management-type AzureStorage.') + + def backup_now(cmd, client, resource_group_name, vault_name, item_name, retain_until=None, container_name=None, backup_management_type=None, workload_type=None, backup_type=None, enable_compression=False): @@ -322,10 +381,16 @@ def disable_auto_for_azure_wl(client, resource_group_name, vault_name, item_name def restore_disks(cmd, client, resource_group_name, vault_name, container_name, item_name, rp_name, storage_account, target_resource_group=None, restore_to_staging_storage_account=None, restore_only_osdisk=None, - diskslist=None, restore_as_unmanaged_disks=None, use_secondary_region=None): + diskslist=None, restore_as_unmanaged_disks=None, use_secondary_region=None, rehydration_duration=15, + rehydration_priority=None): + + if rehydration_duration < 10 or rehydration_duration > 30: + raise InvalidArgumentValueError('--rehydration-duration must have a value between 10 and 30 (both inclusive).') + return custom.restore_disks(cmd, client, resource_group_name, vault_name, container_name, item_name, rp_name, storage_account, target_resource_group, restore_to_staging_storage_account, - restore_only_osdisk, diskslist, restore_as_unmanaged_disks, use_secondary_region) + restore_only_osdisk, diskslist, restore_as_unmanaged_disks, use_secondary_region, + rehydration_duration, rehydration_priority) def enable_for_azurefileshare(cmd, client, resource_group_name, vault_name, policy_name, storage_account, @@ -395,8 +460,14 @@ def resume_protection(cmd, client, resource_group_name, vault_name, container_na return None -def restore_azure_wl(cmd, client, resource_group_name, vault_name, recovery_config): - return custom_wl.restore_azure_wl(cmd, client, resource_group_name, vault_name, recovery_config) +def restore_azure_wl(cmd, client, resource_group_name, vault_name, recovery_config, rehydration_duration=15, + rehydration_priority=None): + + if rehydration_duration < 10 or rehydration_duration > 30: + raise InvalidArgumentValueError('--rehydration-duration must have a value between 10 and 30 (both inclusive).') + + return custom_wl.restore_azure_wl(cmd, client, resource_group_name, vault_name, recovery_config, + rehydration_duration, rehydration_priority) def show_recovery_config(cmd, client, resource_group_name, vault_name, restore_mode, container_name, item_name, diff --git a/src/azure-cli/azure/cli/command_modules/backup/custom_common.py b/src/azure-cli/azure/cli/command_modules/backup/custom_common.py index 562ecc11d4d..f56b3cef7d0 100644 --- a/src/azure-cli/azure/cli/command_modules/backup/custom_common.py +++ b/src/azure-cli/azure/cli/command_modules/backup/custom_common.py @@ -8,7 +8,7 @@ from azure.cli.command_modules.backup._client_factory import backup_protected_items_cf, \ protection_containers_cf, protected_items_cf, backup_protected_items_crr_cf, recovery_points_crr_cf from azure.cli.core.util import CLIError -from azure.cli.core.azclierror import InvalidArgumentValueError +from azure.cli.core.azclierror import InvalidArgumentValueError, RequiredArgumentMissingError # pylint: disable=import-error fabric_name = "Azure" @@ -22,6 +22,10 @@ 'VM': 'VM', 'AzureFileShare': 'AzureFileShare'} +tier_type_map = {'VaultStandard': 'HardenedRP', + 'VaultArchive': 'ArchivedRP', + 'Snapshot': 'InstantRP'} + def show_container(cmd, client, name, resource_group_name, vault_name, backup_management_type=None, status="Registered", use_secondary_region=None): @@ -115,6 +119,83 @@ def list_items(cmd, client, resource_group_name, vault_name, workload_type=None, return paged_items +def fetch_tier(paged_recovery_points): + + for rp in paged_recovery_points: + isRehydrated = False + isInstantRecoverable = False + isHardenedRP = False + isArchived = False + + if rp.properties.recovery_point_tier_details is None: + continue + + for i in range(len(rp.properties.recovery_point_tier_details)): + if (rp.properties.recovery_point_tier_details[i].type == "ArchivedRP" and + rp.properties.recovery_point_tier_details[i].status == "Rehydrated"): + isRehydrated = True + + if rp.properties.recovery_point_tier_details[i].status == "Valid": + if rp.properties.recovery_point_tier_details[i].type == "InstantRP": + isInstantRecoverable = True + + if rp.properties.recovery_point_tier_details[i].type == "HardenedRP": + isHardenedRP = True + + if rp.properties.recovery_point_tier_details[i].type == "ArchivedRP": + isArchived = True + + if (isHardenedRP and isArchived) or (isRehydrated): + setattr(rp, "tier_type", "VaultStandardRehydrated") + + elif isInstantRecoverable and isHardenedRP: + setattr(rp, "tier_type", "SnapshotAndVaultStandard") + + elif isInstantRecoverable and isArchived: + setattr(rp, "tier_type", "SnapshotAndVaultArchive") + + elif isArchived: + setattr(rp, "tier_type", "VaultArchive") + + elif isInstantRecoverable: + setattr(rp, "tier_type", "Snapshot") + + elif isHardenedRP: + setattr(rp, "tier_type", "VaultStandard") + + +def check_rp_move_readiness(paged_recovery_points, target_tier, is_ready_for_move): + + if target_tier and is_ready_for_move is not None: + filter_rps = [] + for rp in paged_recovery_points: + if (rp.properties.recovery_point_move_readiness_info is not None and + rp.properties.recovery_point_move_readiness_info['ArchivedRP'].is_ready_for_move == + is_ready_for_move): + filter_rps.append(rp) + + return filter_rps + + if target_tier or is_ready_for_move is not None: + raise RequiredArgumentMissingError("""--is-ready-for-move or --target-tier is missing. Please provide + the required arguments.""") + + return paged_recovery_points + + +def filter_rp_based_on_tier(recovery_point_list, tier): + + if tier: + filter_rps = [] + for rp in recovery_point_list: + if rp.properties.recovery_point_tier_details is not None and rp.tier_type == tier: + filter_rps.append(rp) + + return filter_rps + + return recovery_point_list + + def show_recovery_point(cmd, client, resource_group_name, vault_name, container_name, item_name, name, workload_type=None, backup_management_type=None, use_secondary_region=None): diff --git a/src/azure-cli/azure/cli/command_modules/backup/custom_wl.py b/src/azure-cli/azure/cli/command_modules/backup/custom_wl.py index 4936c9424e2..e784c0b064c 100644 --- a/src/azure-cli/azure/cli/command_modules/backup/custom_wl.py +++ b/src/azure-cli/azure/cli/command_modules/backup/custom_wl.py @@ -18,16 +18,20 @@ RestoreRequestResource, BackupRequestResource, ProtectionIntentResource, SQLDataDirectoryMapping, \ ProtectionContainerResource, AzureWorkloadSAPHanaRestoreRequest, AzureWorkloadSQLRestoreRequest, \ AzureWorkloadSAPHanaPointInTimeRestoreRequest, AzureWorkloadSQLPointInTimeRestoreRequest, \ - AzureVmWorkloadSAPHanaDatabaseProtectedItem, AzureVmWorkloadSQLDatabaseProtectedItem + AzureVmWorkloadSAPHanaDatabaseProtectedItem, AzureVmWorkloadSQLDatabaseProtectedItem, MoveRPAcrossTiersRequest, \ + RecoveryPointRehydrationInfo, AzureWorkloadSAPHanaRestoreWithRehydrateRequest, \ + AzureWorkloadSQLRestoreWithRehydrateRequest from azure.cli.core.util import CLIError from azure.cli.command_modules.backup._validators import datetime_type from azure.cli.command_modules.backup._client_factory import backup_workload_items_cf, \ - protectable_containers_cf, backup_protection_containers_cf, backup_protected_items_cf, recovery_points_crr_cf + protectable_containers_cf, backup_protection_containers_cf, backup_protected_items_cf, recovery_points_crr_cf, \ + _backup_client_factory, recovery_points_cf + import azure.cli.command_modules.backup.custom_help as cust_help import azure.cli.command_modules.backup.custom_common as common from azure.cli.core.azclierror import InvalidArgumentValueError, RequiredArgumentMissingError, ValidationError, \ - ResourceNotFoundError + ResourceNotFoundError, ArgumentUsageError fabric_name = "Azure" @@ -320,7 +324,13 @@ def list_protectable_items(client, resource_group_name, vault_name, workload_typ def list_wl_recovery_points(cmd, client, resource_group_name, vault_name, item, start_date=None, end_date=None, - extended_info=None, use_secondary_region=None): + extended_info=None, is_ready_for_move=None, target_tier=None, use_secondary_region=None, + tier=None, recommended_for_archive=None): + + if recommended_for_archive is not None: + raise ArgumentUsageError("""--recommended-for-archive is supported by AzureIaasVM backup management + type only.""") + # Get container and item URIs container_uri = cust_help.get_protection_container_uri_from_id(item.id) item_uri = cust_help.get_protected_item_uri_from_id(item.id) @@ -348,7 +358,35 @@ def list_wl_recovery_points(cmd, client, resource_group_name, vault_name, item, recovery_points = client.list(vault_name, resource_group_name, fabric_name, container_uri, item_uri, filter_string) paged_recovery_points = cust_help.get_list_from_paged_response(recovery_points) - return paged_recovery_points + common.fetch_tier(paged_recovery_points) + + if use_secondary_region: + paged_recovery_points = [item for item in paged_recovery_points if item.properties.recovery_point_tier_details + is None or (item.properties.recovery_point_tier_details is not None and + item.tier_type != 'VaultArchive')] + + recovery_point_list = common.check_rp_move_readiness(paged_recovery_points, target_tier, is_ready_for_move) + recovery_point_list = common.filter_rp_based_on_tier(recovery_point_list, tier) + return recovery_point_list + + +def move_wl_recovery_points(cmd, resource_group_name, vault_name, item_name, rp_name, source_tier, + destination_tier): + + container_uri = cust_help.get_protection_container_uri_from_id(item_name.id) + item_uri = cust_help.get_protected_item_uri_from_id(item_name.id) + + if source_tier not in common.tier_type_map.keys(): + raise InvalidArgumentValueError('This source tier-type is not accepted by move command at present.') + + parameters = MoveRPAcrossTiersRequest(source_tier_type=common.tier_type_map[source_tier], + target_tier_type=common.tier_type_map[destination_tier]) + + result = _backup_client_factory(cmd.cli_ctx).move_recovery_point(vault_name, resource_group_name, fabric_name, + container_uri, item_uri, rp_name, parameters, + raw=True, polling=False).result() + + return cust_help.track_backup_job(cmd.cli_ctx, result, vault_name, resource_group_name) def enable_protection_for_azure_wl(cmd, client, resource_group_name, vault_name, policy_object, protectable_item): @@ -527,7 +565,9 @@ def list_workload_items(cmd, vault_name, resource_group_name, container_name, return cust_help.get_list_from_paged_response(items) -def restore_azure_wl(cmd, client, resource_group_name, vault_name, recovery_config): +def restore_azure_wl(cmd, client, resource_group_name, vault_name, recovery_config, rehydration_duration=15, + rehydration_priority=None): + recovery_config_object = cust_help.get_or_read_json(recovery_config) restore_mode = recovery_config_object['restore_mode'] container_uri = recovery_config_object['container_uri'] @@ -542,8 +582,31 @@ def restore_azure_wl(cmd, client, resource_group_name, vault_name, recovery_conf recovery_mode = recovery_config_object['recovery_mode'] filepath = recovery_config_object['filepath'] - # Construct trigger restore request object - trigger_restore_properties = _get_restore_request_instance(item_type, log_point_in_time) + recovery_point = common.show_recovery_point(cmd, recovery_points_cf(cmd.cli_ctx), resource_group_name, + vault_name, container_uri, item_uri, recovery_point_id, item_type, + backup_management_type="AzureWorkload") + + rp_list = [recovery_point] + common.fetch_tier(rp_list) + + if (rp_list[0].properties.recovery_point_tier_details is not None and rp_list[0].tier_type == 'VaultArchive' and + rehydration_priority is None): + raise InvalidArgumentValueError("""The selected recovery point is in archive tier, provide additional + parameters of rehydration duration and rehydration priority.""") + + if rp_list[0].properties.recovery_point_tier_details is not None and rp_list[0].tier_type == 'VaultArchive': + # Construct trigger restore request object + trigger_restore_properties = _get_restore_request_instance(item_type, log_point_in_time, rehydration_priority) + + rehyd_duration = 'P' + str(rehydration_duration) + 'D' + rehydration_info = RecoveryPointRehydrationInfo(rehydration_retention_duration=rehyd_duration, + rehydration_priority=rehydration_priority) + + trigger_restore_properties.recovery_point_rehydration_info = rehydration_info + + else: + trigger_restore_properties = _get_restore_request_instance(item_type, log_point_in_time, None) + trigger_restore_properties.recovery_type = restore_mode # Get target vm id @@ -580,7 +643,9 @@ def restore_azure_wl(cmd, client, resource_group_name, vault_name, recovery_conf if 'sql' in item_type.lower(): setattr(trigger_restore_properties, 'should_use_alternate_target_location', True) setattr(trigger_restore_properties, 'is_non_recoverable', False) + trigger_restore_request = RestoreRequestResource(properties=trigger_restore_properties) + # Trigger restore and wait for completion result = client.trigger(vault_name, resource_group_name, fabric_name, container_uri, item_uri, recovery_point_id, trigger_restore_request, raw=True, polling=False).result() @@ -692,16 +757,28 @@ def show_recovery_config(cmd, client, resource_group_name, vault_name, restore_m 'alternate_directory_paths': alternate_directory_paths} -def _get_restore_request_instance(item_type, log_point_in_time): +def _get_restore_request_instance(item_type, log_point_in_time, rehydration_priority): + + if rehydration_priority is None: + if item_type.lower() == "saphana": + if log_point_in_time is not None: + return AzureWorkloadSAPHanaPointInTimeRestoreRequest() + return AzureWorkloadSAPHanaRestoreRequest() + + if item_type.lower() == "sql": + if log_point_in_time is not None: + return AzureWorkloadSQLPointInTimeRestoreRequest() + return AzureWorkloadSQLRestoreRequest() + if item_type.lower() == "saphana": if log_point_in_time is not None: - return AzureWorkloadSAPHanaPointInTimeRestoreRequest() - return AzureWorkloadSAPHanaRestoreRequest() + raise InvalidArgumentValueError('Integrated restore is not defined for log recovery point.') + return AzureWorkloadSAPHanaRestoreWithRehydrateRequest() + if item_type.lower() == "sql": if log_point_in_time is not None: - return AzureWorkloadSQLPointInTimeRestoreRequest() - return AzureWorkloadSQLRestoreRequest() - return None + raise InvalidArgumentValueError('Integrated restore is not defined for log recovery point.') + return AzureWorkloadSQLRestoreWithRehydrateRequest() def _get_protected_item_instance(item_type): diff --git a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_afs_backup_item.yaml b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_afs_backup_item.yaml index 4dd2f5b7685..be8f017944c 100644 --- a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_afs_backup_item.yaml +++ b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_afs_backup_item.yaml @@ -14894,4 +14894,4 @@ interactions: status: code: 200 message: OK -version: 1 +version: 1 \ No newline at end of file diff --git a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_afs_backup_policy.yaml b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_afs_backup_policy.yaml index 59862667574..19bcad5a841 100644 --- a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_afs_backup_policy.yaml +++ b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_afs_backup_policy.yaml @@ -9796,4 +9796,4 @@ interactions: status: code: 200 message: OK -version: 1 +version: 1 \ No newline at end of file diff --git a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_afs_backup_protection.yaml b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_afs_backup_protection.yaml index 94c120f50b8..dbdb7016f8d 100644 --- a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_afs_backup_protection.yaml +++ b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_afs_backup_protection.yaml @@ -17,12 +17,12 @@ interactions: ParameterSetName: - -n -g --location User-Agent: - - AZURECLI/2.25.0 azsdk-python-mgmt-recoveryservices/1.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.24.0 azsdk-python-mgmt-recoveryservices/1.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2016-06-01 response: body: - string: '{"location":"southeastasia","name":"clitest-vault000002","etag":"W/\"datetime''2021-06-21T12%3A17%3A25.8807509Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' + string: '{"location":"southeastasia","name":"clitest-vault000002","etag":"W/\"datetime''2021-06-18T06%3A58%3A43.9960836Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' headers: cache-control: - no-cache @@ -31,7 +31,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:17:26 GMT + - Fri, 18 Jun 2021 06:58:43 GMT expires: - '-1' pragma: @@ -63,12 +63,12 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-storage/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.24.0 azsdk-python-azure-mgmt-storage/18.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003/listKeys?api-version=2021-04-01&$expand=kerb response: body: - string: '{"keys":[{"creationTime":"2021-06-21T12:17:29.2726967Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2021-06-21T12:17:29.2726967Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' + string: '{"keys":[{"creationTime":"2021-06-18T06:58:47.8538456Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2021-06-18T06:58:47.8538456Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' headers: cache-control: - no-cache @@ -77,7 +77,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:17:50 GMT + - Fri, 18 Jun 2021 06:59:11 GMT expires: - '-1' pragma: @@ -105,9 +105,9 @@ interactions: Content-Length: - '0' User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.5; Windows 10) AZURECLI/2.25.0 + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.7.9; Windows 10) AZURECLI/2.24.0 x-ms-date: - - Mon, 21 Jun 2021 12:17:50 GMT + - Fri, 18 Jun 2021 06:59:11 GMT x-ms-share-quota: - '1' x-ms-version: @@ -121,11 +121,11 @@ interactions: content-length: - '0' date: - - Mon, 21 Jun 2021 12:17:50 GMT + - Fri, 18 Jun 2021 06:59:12 GMT etag: - - '"0x8D934AE9710D3AE"' + - '"0x8D93226947213DF"' last-modified: - - Mon, 21 Jun 2021 12:17:51 GMT + - Fri, 18 Jun 2021 06:59:13 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -147,15 +147,15 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","name":"DefaultPolicy","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureIaasVM","instantRPDetails":{},"schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-06-21T22:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-06-21T22:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":0}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","name":"DefaultPolicy","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureIaasVM","instantRPDetails":{},"schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-06-18T16:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-06-18T16:30:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":0}}' headers: cache-control: - no-cache @@ -164,7 +164,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:17:51 GMT + - Fri, 18 Jun 2021 06:59:13 GMT expires: - '-1' pragma: @@ -189,9 +189,9 @@ interactions: - request: body: '{"properties": {"protectedItemsCount": 0, "backupManagementType": "AzureStorage", "workLoadType": "AzureFileShare", "schedulePolicy": {"schedulePolicyType": "SimpleSchedulePolicy", - "scheduleRunFrequency": "Daily", "scheduleRunTimes": ["2021-06-21T22:00:00.000Z"], + "scheduleRunFrequency": "Daily", "scheduleRunTimes": ["2021-06-18T16:30:00.000Z"], "scheduleWeeklyFrequency": 0}, "retentionPolicy": {"retentionPolicyType": "LongTermRetentionPolicy", - "dailySchedule": {"retentionTimes": ["2021-06-21T22:00:00.000Z"], "retentionDuration": + "dailySchedule": {"retentionTimes": ["2021-06-18T16:30:00.000Z"], "retentionDuration": {"count": 30, "durationType": "Days"}}}, "timeZone": "UTC"}}' headers: Accept: @@ -209,15 +209,15 @@ interactions: ParameterSetName: - -g -v --policy -n --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","name":"clitest-item000005","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureStorage","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-06-21T22:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-06-21T22:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","name":"clitest-item000005","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureStorage","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-06-18T16:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-06-18T16:30:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}' headers: cache-control: - no-cache @@ -226,7 +226,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:17:51 GMT + - Fri, 18 Jun 2021 06:59:13 GMT expires: - '-1' pragma: @@ -262,8 +262,8 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET @@ -279,7 +279,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:17:52 GMT + - Fri, 18 Jun 2021 06:59:14 GMT expires: - '-1' pragma: @@ -315,24 +315,24 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;shswain-rg-donotuse;shswainrgdonotusedisks","name":"StorageContainer;Storage;shswain-rg-donotuse;shswainrgdonotusedisks","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"shswainrgdonotusedisks","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shswain-rg-donotuse/providers/Microsoft.Storage/storageAccounts/shswainrgdonotusedisks"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;abhinitRG;k0pseacan01otds1","name":"StorageContainer;Storage;abhinitRG;k0pseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"k0pseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinitRG/providers/Microsoft.Storage/storageAccounts/k0pseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;abhinitRGeus;8zhseacan01otds1","name":"StorageContainer;Storage;abhinitRGeus;8zhseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"8zhseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinitRGeus/providers/Microsoft.Storage/storageAccounts/8zhseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;anubhsnapshot;sojseacan01otds1","name":"StorageContainer;Storage;anubhsnapshot;sojseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"sojseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/anubhsnapshot/providers/Microsoft.Storage/storageAccounts/sojseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;capraz-rg;9ocseacan01otds1","name":"StorageContainer;Storage;capraz-rg;9ocseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"9ocseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/capraz-rg/providers/Microsoft.Storage/storageAccounts/9ocseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgfp4sne26em;clitestcu7pvgj6ftfvagsfy","name":"StorageContainer;Storage;clitest.rgfp4sne26em;clitestcu7pvgj6ftfvagsfy","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestcu7pvgj6ftfvagsfy","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgfp4sne26em/providers/Microsoft.Storage/storageAccounts/clitestcu7pvgj6ftfvagsfy"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000c5357b2c","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000c5357b2c","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs110032000c5357b2c","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000c5357b2c"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;contosorg2;contosorg2diag","name":"StorageContainer;Storage;contosorg2;contosorg2diag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"contosorg2diag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/contosorg2/providers/Microsoft.Storage/storageAccounts/contosorg2diag"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;diskbackup_seacan_otds;1s8seacan01otds1","name":"StorageContainer;Storage;diskbackup_seacan_otds;1s8seacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"1s8seacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/diskbackup_seacan_otds/providers/Microsoft.Storage/storageAccounts/1s8seacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;diskbackup_seacan_otds;nhiseacan01otds1","name":"StorageContainer;Storage;diskbackup_seacan_otds;nhiseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"nhiseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/diskbackup_seacan_otds/providers/Microsoft.Storage/storageAccounts/nhiseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;mayaggarOTDSRG;raaseacan01otds1","name":"StorageContainer;Storage;mayaggarOTDSRG;raaseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"raaseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mayaggarOTDSRG/providers/Microsoft.Storage/storageAccounts/raaseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;Prachankdisktest;skrseacan01otds1","name":"StorageContainer;Storage;Prachankdisktest;skrseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"skrseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Prachankdisktest/providers/Microsoft.Storage/storageAccounts/skrseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pracotdsrg-diskbackup;cy6seacan01otds1","name":"StorageContainer;Storage;pracotdsrg-diskbackup;cy6seacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cy6seacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pracotdsrg-diskbackup/providers/Microsoft.Storage/storageAccounts/cy6seacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pratikbugbashrg;nlgseacan01otds1","name":"StorageContainer;Storage;pratikbugbashrg;nlgseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"nlgseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pratikbugbashrg/providers/Microsoft.Storage/storageAccounts/nlgseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;sakaarmab;sakaarmabdiag","name":"StorageContainer;Storage;sakaarmab;sakaarmabdiag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"sakaarmabdiag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sakaarmab/providers/Microsoft.Storage/storageAccounts/sakaarmabdiag"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;snapshotsrg;6w3seacan01otds1","name":"StorageContainer;Storage;snapshotsrg;6w3seacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"6w3seacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/snapshotsrg/providers/Microsoft.Storage/storageAccounts/6w3seacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;Southeast-Asia-stamp-test01-prot1;cxzvsdcvsdffdsd","name":"StorageContainer;Storage;Southeast-Asia-stamp-test01-prot1;cxzvsdcvsdffdsd","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cxzvsdcvsdffdsd","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Southeast-Asia-stamp-test01-prot1/providers/Microsoft.Storage/storageAccounts/cxzvsdcvsdffdsd"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;srbansrg;7k3seacan01otds1","name":"StorageContainer;Storage;srbansrg;7k3seacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"7k3seacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/srbansrg/providers/Microsoft.Storage/storageAccounts/7k3seacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;suana-otds-bugbash;brzseacan01otds1","name":"StorageContainer;Storage;suana-otds-bugbash;brzseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"brzseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/suana-otds-bugbash/providers/Microsoft.Storage/storageAccounts/brzseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;suana-otds-bugbash;nr1seacan01otds1","name":"StorageContainer;Storage;suana-otds-bugbash;nr1seacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"nr1seacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/suana-otds-bugbash/providers/Microsoft.Storage/storageAccounts/nr1seacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;vishakrg;mbstest","name":"StorageContainer;Storage;vishakrg;mbstest","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"mbstest","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishakrg/providers/Microsoft.Storage/storageAccounts/mbstest"}}]}' headers: cache-control: - no-cache content-length: - - '777' + - '14658' content-type: - application/json date: - - Mon, 21 Jun 2021 12:17:53 GMT + - Fri, 18 Jun 2021 06:59:15 GMT expires: - '-1' pragma: @@ -370,8 +370,8 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: POST @@ -381,17 +381,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationsStatus/5fbf809c-06e5-476e-b625-45299113b4f5?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationsStatus/80a3fc2e-bf61-4400-8929-8f439e40802f?api-version=2019-05-13-preview cache-control: - no-cache content-length: - '0' date: - - Mon, 21 Jun 2021 12:17:53 GMT + - Fri, 18 Jun 2021 06:59:15 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/5fbf809c-06e5-476e-b625-45299113b4f5?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/80a3fc2e-bf61-4400-8929-8f439e40802f?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -419,12 +419,12 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/5fbf809c-06e5-476e-b625-45299113b4f5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/80a3fc2e-bf61-4400-8929-8f439e40802f?api-version=2021-01-01 response: body: string: '' @@ -434,11 +434,11 @@ interactions: content-length: - '0' date: - - Mon, 21 Jun 2021 12:17:53 GMT + - Fri, 18 Jun 2021 06:59:16 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/5fbf809c-06e5-476e-b625-45299113b4f5?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/80a3fc2e-bf61-4400-8929-8f439e40802f?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -466,12 +466,12 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/5fbf809c-06e5-476e-b625-45299113b4f5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/80a3fc2e-bf61-4400-8929-8f439e40802f?api-version=2021-01-01 response: body: string: '' @@ -481,11 +481,11 @@ interactions: content-length: - '0' date: - - Mon, 21 Jun 2021 12:17:55 GMT + - Fri, 18 Jun 2021 06:59:17 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/5fbf809c-06e5-476e-b625-45299113b4f5?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/80a3fc2e-bf61-4400-8929-8f439e40802f?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -513,12 +513,12 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/5fbf809c-06e5-476e-b625-45299113b4f5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/80a3fc2e-bf61-4400-8929-8f439e40802f?api-version=2021-01-01 response: body: string: '' @@ -528,11 +528,11 @@ interactions: content-length: - '0' date: - - Mon, 21 Jun 2021 12:17:56 GMT + - Fri, 18 Jun 2021 06:59:18 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/5fbf809c-06e5-476e-b625-45299113b4f5?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/80a3fc2e-bf61-4400-8929-8f439e40802f?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -560,12 +560,12 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/5fbf809c-06e5-476e-b625-45299113b4f5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/80a3fc2e-bf61-4400-8929-8f439e40802f?api-version=2021-01-01 response: body: string: '' @@ -575,11 +575,11 @@ interactions: content-length: - '0' date: - - Mon, 21 Jun 2021 12:17:57 GMT + - Fri, 18 Jun 2021 06:59:19 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/5fbf809c-06e5-476e-b625-45299113b4f5?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/80a3fc2e-bf61-4400-8929-8f439e40802f?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -587,54 +587,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' - x-powered-by: - - ASP.NET - 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 -p - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/5fbf809c-06e5-476e-b625-45299113b4f5?api-version=2021-01-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Mon, 21 Jun 2021 12:17:58 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/5fbf809c-06e5-476e-b625-45299113b4f5?api-version=2021-01-01 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '146' x-powered-by: - ASP.NET status: @@ -654,12 +607,12 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/5fbf809c-06e5-476e-b625-45299113b4f5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/80a3fc2e-bf61-4400-8929-8f439e40802f?api-version=2021-01-01 response: body: string: '' @@ -669,11 +622,11 @@ interactions: content-length: - '0' date: - - Mon, 21 Jun 2021 12:17:59 GMT + - Fri, 18 Jun 2021 06:59:21 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/5fbf809c-06e5-476e-b625-45299113b4f5?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/80a3fc2e-bf61-4400-8929-8f439e40802f?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -681,7 +634,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '141' + - '145' x-powered-by: - ASP.NET status: @@ -701,12 +654,12 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/5fbf809c-06e5-476e-b625-45299113b4f5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/80a3fc2e-bf61-4400-8929-8f439e40802f?api-version=2021-01-01 response: body: string: '' @@ -716,11 +669,11 @@ interactions: content-length: - '0' date: - - Mon, 21 Jun 2021 12:18:01 GMT + - Fri, 18 Jun 2021 06:59:22 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/5fbf809c-06e5-476e-b625-45299113b4f5?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/80a3fc2e-bf61-4400-8929-8f439e40802f?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -728,7 +681,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '139' + - '144' x-powered-by: - ASP.NET status: @@ -748,12 +701,12 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/5fbf809c-06e5-476e-b625-45299113b4f5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/80a3fc2e-bf61-4400-8929-8f439e40802f?api-version=2021-01-01 response: body: string: '' @@ -763,11 +716,11 @@ interactions: content-length: - '0' date: - - Mon, 21 Jun 2021 12:18:02 GMT + - Fri, 18 Jun 2021 06:59:23 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/5fbf809c-06e5-476e-b625-45299113b4f5?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/80a3fc2e-bf61-4400-8929-8f439e40802f?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -775,7 +728,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '137' + - '143' x-powered-by: - ASP.NET status: @@ -795,12 +748,12 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/5fbf809c-06e5-476e-b625-45299113b4f5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/80a3fc2e-bf61-4400-8929-8f439e40802f?api-version=2021-01-01 response: body: string: '' @@ -810,11 +763,11 @@ interactions: content-length: - '0' date: - - Mon, 21 Jun 2021 12:18:03 GMT + - Fri, 18 Jun 2021 06:59:24 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/5fbf809c-06e5-476e-b625-45299113b4f5?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/80a3fc2e-bf61-4400-8929-8f439e40802f?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -822,7 +775,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '135' + - '142' x-powered-by: - ASP.NET status: @@ -842,12 +795,12 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/5fbf809c-06e5-476e-b625-45299113b4f5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/80a3fc2e-bf61-4400-8929-8f439e40802f?api-version=2021-01-01 response: body: string: '' @@ -857,11 +810,11 @@ interactions: content-length: - '0' date: - - Mon, 21 Jun 2021 12:18:04 GMT + - Fri, 18 Jun 2021 06:59:26 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/5fbf809c-06e5-476e-b625-45299113b4f5?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/80a3fc2e-bf61-4400-8929-8f439e40802f?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -869,7 +822,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '133' + - '141' x-powered-by: - ASP.NET status: @@ -889,12 +842,12 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/5fbf809c-06e5-476e-b625-45299113b4f5?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/80a3fc2e-bf61-4400-8929-8f439e40802f?api-version=2021-01-01 response: body: string: '' @@ -902,7 +855,7 @@ interactions: cache-control: - no-cache date: - - Mon, 21 Jun 2021 12:18:05 GMT + - Fri, 18 Jun 2021 06:59:27 GMT expires: - '-1' pragma: @@ -912,7 +865,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '131' + - '140' x-powered-by: - ASP.NET status: @@ -932,30 +885,28 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg3m5mkejasm;clitestvxpkc5mxr64qsinm4","name":"StorageContainer;Storage;clitest.rg3m5mkejasm;clitestvxpkc5mxr64qsinm4","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestvxpkc5mxr64qsinm4","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3m5mkejasm/providers/Microsoft.Storage/storageAccounts/clitestvxpkc5mxr64qsinm4"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg523jlp2qto;clitestxwjqcdjfjsdxdfwxf","name":"StorageContainer;Storage;clitest.rg523jlp2qto;clitestxwjqcdjfjsdxdfwxf","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestxwjqcdjfjsdxdfwxf","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg523jlp2qto/providers/Microsoft.Storage/storageAccounts/clitestxwjqcdjfjsdxdfwxf"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg7k23stmumegjxjaxw2iq5u54zxv4dskooe4b4w3zg7x36rwkmidnguljpg2tuk7tz;clitestlryhxn3wguzr6a6g4","name":"StorageContainer;Storage;clitest.rg7k23stmumegjxjaxw2iq5u54zxv4dskooe4b4w3zg7x36rwkmidnguljpg2tuk7tz;clitestlryhxn3wguzr6a6g4","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestlryhxn3wguzr6a6g4","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg7k23stmumegjxjaxw2iq5u54zxv4dskooe4b4w3zg7x36rwkmidnguljpg2tuk7tz/providers/Microsoft.Storage/storageAccounts/clitestlryhxn3wguzr6a6g4"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgfn56lpdrcu;clitest4bj3esn6b6jledr3q","name":"StorageContainer;Storage;clitest.rgfn56lpdrcu;clitest4bj3esn6b6jledr3q","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest4bj3esn6b6jledr3q","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgfn56lpdrcu/providers/Microsoft.Storage/storageAccounts/clitest4bj3esn6b6jledr3q"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg000001;clitest000003","name":"StorageContainer;Storage;clitest.rg000001;clitest000003","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest000003","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgkz3bef4iwd;clitestxf4lf7kbfvaskdl6z","name":"StorageContainer;Storage;clitest.rgkz3bef4iwd;clitestxf4lf7kbfvaskdl6z","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestxf4lf7kbfvaskdl6z","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgkz3bef4iwd/providers/Microsoft.Storage/storageAccounts/clitestxf4lf7kbfvaskdl6z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgmsknosueb2;clitest24kmnigzpnbijdibr","name":"StorageContainer;Storage;clitest.rgmsknosueb2;clitest24kmnigzpnbijdibr","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest24kmnigzpnbijdibr","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmsknosueb2/providers/Microsoft.Storage/storageAccounts/clitest24kmnigzpnbijdibr"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;shswain-rg-donotuse;shswainrgdonotusedisks","name":"StorageContainer;Storage;shswain-rg-donotuse;shswainrgdonotusedisks","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"shswainrgdonotusedisks","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shswain-rg-donotuse/providers/Microsoft.Storage/storageAccounts/shswainrgdonotusedisks"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;abhinitRG;k0pseacan01otds1","name":"StorageContainer;Storage;abhinitRG;k0pseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"k0pseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinitRG/providers/Microsoft.Storage/storageAccounts/k0pseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;abhinitRGeus;8zhseacan01otds1","name":"StorageContainer;Storage;abhinitRGeus;8zhseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"8zhseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhinitRGeus/providers/Microsoft.Storage/storageAccounts/8zhseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;anubhsnapshot;sojseacan01otds1","name":"StorageContainer;Storage;anubhsnapshot;sojseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"sojseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/anubhsnapshot/providers/Microsoft.Storage/storageAccounts/sojseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;capraz-rg;9ocseacan01otds1","name":"StorageContainer;Storage;capraz-rg;9ocseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"9ocseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/capraz-rg/providers/Microsoft.Storage/storageAccounts/9ocseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgjyoe73iqjb;clitestiesk4t4ie5lw77adk","name":"StorageContainer;Storage;clitest.rgjyoe73iqjb;clitestiesk4t4ie5lw77adk","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestiesk4t4ie5lw77adk","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjyoe73iqjb/providers/Microsoft.Storage/storageAccounts/clitestiesk4t4ie5lw77adk"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg000001;clitest000003","name":"StorageContainer;Storage;clitest.rg000001;clitest000003","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest000003","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgzlbysl52ttql37vqo4m2mnpf3zovhas7assy5qn7ptxzxpvplegxgehenufpbe7wu;clitestn24npze2xdgmbp7u6","name":"StorageContainer;Storage;clitest.rgzlbysl52ttql37vqo4m2mnpf3zovhas7assy5qn7ptxzxpvplegxgehenufpbe7wu;clitestn24npze2xdgmbp7u6","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestn24npze2xdgmbp7u6","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzlbysl52ttql37vqo4m2mnpf3zovhas7assy5qn7ptxzxpvplegxgehenufpbe7wu/providers/Microsoft.Storage/storageAccounts/clitestn24npze2xdgmbp7u6"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000c5357b2c","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000c5357b2c","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs110032000c5357b2c","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000c5357b2c"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;contosorg2;contosorg2diag","name":"StorageContainer;Storage;contosorg2;contosorg2diag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"contosorg2diag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/contosorg2/providers/Microsoft.Storage/storageAccounts/contosorg2diag"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;diskbackup_seacan_otds;1s8seacan01otds1","name":"StorageContainer;Storage;diskbackup_seacan_otds;1s8seacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"1s8seacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/diskbackup_seacan_otds/providers/Microsoft.Storage/storageAccounts/1s8seacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;diskbackup_seacan_otds;nhiseacan01otds1","name":"StorageContainer;Storage;diskbackup_seacan_otds;nhiseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"nhiseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/diskbackup_seacan_otds/providers/Microsoft.Storage/storageAccounts/nhiseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;mayaggarOTDSRG;raaseacan01otds1","name":"StorageContainer;Storage;mayaggarOTDSRG;raaseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"raaseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mayaggarOTDSRG/providers/Microsoft.Storage/storageAccounts/raaseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;Prachankdisktest;skrseacan01otds1","name":"StorageContainer;Storage;Prachankdisktest;skrseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"skrseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Prachankdisktest/providers/Microsoft.Storage/storageAccounts/skrseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pracotdsrg-diskbackup;cy6seacan01otds1","name":"StorageContainer;Storage;pracotdsrg-diskbackup;cy6seacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cy6seacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pracotdsrg-diskbackup/providers/Microsoft.Storage/storageAccounts/cy6seacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pratikbugbashrg;nlgseacan01otds1","name":"StorageContainer;Storage;pratikbugbashrg;nlgseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"nlgseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pratikbugbashrg/providers/Microsoft.Storage/storageAccounts/nlgseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;sakaarmab;sakaarmabdiag","name":"StorageContainer;Storage;sakaarmab;sakaarmabdiag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"sakaarmabdiag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sakaarmab/providers/Microsoft.Storage/storageAccounts/sakaarmabdiag"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;snapshotsrg;6w3seacan01otds1","name":"StorageContainer;Storage;snapshotsrg;6w3seacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"6w3seacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/snapshotsrg/providers/Microsoft.Storage/storageAccounts/6w3seacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;Southeast-Asia-stamp-test01-prot1;cxzvsdcvsdffdsd","name":"StorageContainer;Storage;Southeast-Asia-stamp-test01-prot1;cxzvsdcvsdffdsd","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cxzvsdcvsdffdsd","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Southeast-Asia-stamp-test01-prot1/providers/Microsoft.Storage/storageAccounts/cxzvsdcvsdffdsd"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;srbansrg;7k3seacan01otds1","name":"StorageContainer;Storage;srbansrg;7k3seacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"7k3seacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/srbansrg/providers/Microsoft.Storage/storageAccounts/7k3seacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;suana-otds-bugbash;brzseacan01otds1","name":"StorageContainer;Storage;suana-otds-bugbash;brzseacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"brzseacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/suana-otds-bugbash/providers/Microsoft.Storage/storageAccounts/brzseacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;suana-otds-bugbash;nr1seacan01otds1","name":"StorageContainer;Storage;suana-otds-bugbash;nr1seacan01otds1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"nr1seacan01otds1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/suana-otds-bugbash/providers/Microsoft.Storage/storageAccounts/nr1seacan01otds1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;vishakrg;mbstest","name":"StorageContainer;Storage;vishakrg;mbstest","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"mbstest","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishakrg/providers/Microsoft.Storage/storageAccounts/mbstest"}}]}' headers: cache-control: - no-cache content-length: - - '6381' + - '16377' content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:06 GMT + - Fri, 18 Jun 2021 06:59:27 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -990,47 +941,52 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003?api-version=2021-01-01 response: body: - string: '{}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg3m5mkejasm;clitestvxpkc5mxr64qsinm4","name":"StorageContainer;Storage;clitest.rg3m5mkejasm;clitestvxpkc5mxr64qsinm4","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestvxpkc5mxr64qsinm4","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3m5mkejasm/providers/Microsoft.Storage/storageAccounts/clitestvxpkc5mxr64qsinm4"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg523jlp2qto;clitestxwjqcdjfjsdxdfwxf","name":"StorageContainer;Storage;clitest.rg523jlp2qto;clitestxwjqcdjfjsdxdfwxf","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestxwjqcdjfjsdxdfwxf","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg523jlp2qto/providers/Microsoft.Storage/storageAccounts/clitestxwjqcdjfjsdxdfwxf"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg7k23stmumegjxjaxw2iq5u54zxv4dskooe4b4w3zg7x36rwkmidnguljpg2tuk7tz;clitestlryhxn3wguzr6a6g4","name":"StorageContainer;Storage;clitest.rg7k23stmumegjxjaxw2iq5u54zxv4dskooe4b4w3zg7x36rwkmidnguljpg2tuk7tz;clitestlryhxn3wguzr6a6g4","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestlryhxn3wguzr6a6g4","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg7k23stmumegjxjaxw2iq5u54zxv4dskooe4b4w3zg7x36rwkmidnguljpg2tuk7tz/providers/Microsoft.Storage/storageAccounts/clitestlryhxn3wguzr6a6g4"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgfn56lpdrcu;clitest4bj3esn6b6jledr3q","name":"StorageContainer;Storage;clitest.rgfn56lpdrcu;clitest4bj3esn6b6jledr3q","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest4bj3esn6b6jledr3q","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgfn56lpdrcu/providers/Microsoft.Storage/storageAccounts/clitest4bj3esn6b6jledr3q"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg000001;clitest000003","name":"StorageContainer;Storage;clitest.rg000001;clitest000003","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest000003","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgkz3bef4iwd;clitestxf4lf7kbfvaskdl6z","name":"StorageContainer;Storage;clitest.rgkz3bef4iwd;clitestxf4lf7kbfvaskdl6z","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestxf4lf7kbfvaskdl6z","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgkz3bef4iwd/providers/Microsoft.Storage/storageAccounts/clitestxf4lf7kbfvaskdl6z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgmsknosueb2;clitest24kmnigzpnbijdibr","name":"StorageContainer;Storage;clitest.rgmsknosueb2;clitest24kmnigzpnbijdibr","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest24kmnigzpnbijdibr","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmsknosueb2/providers/Microsoft.Storage/storageAccounts/clitest24kmnigzpnbijdibr"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;shswain-rg-donotuse;shswainrgdonotusedisks","name":"StorageContainer;Storage;shswain-rg-donotuse;shswainrgdonotusedisks","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"shswainrgdonotusedisks","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shswain-rg-donotuse/providers/Microsoft.Storage/storageAccounts/shswainrgdonotusedisks"}}]}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '6381' content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:06 GMT + - Fri, 18 Jun 2021 06:59:29 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: - body: null + body: '{"properties": {"backupManagementType": "AzureStorage", "containerType": + "StorageContainer", "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003"}}' headers: Accept: - application/json @@ -1040,21 +996,25 @@ interactions: - backup protection enable-for-azurefileshare Connection: - keep-alive + Content-Length: + - '273' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1062,11 +1022,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:07 GMT + - Fri, 18 Jun 2021 06:59:29 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 pragma: - no-cache server: @@ -1096,18 +1056,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1115,11 +1075,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:08 GMT + - Fri, 18 Jun 2021 06:59:30 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 pragma: - no-cache server: @@ -1149,18 +1109,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1168,11 +1128,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:10 GMT + - Fri, 18 Jun 2021 06:59:32 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 pragma: - no-cache server: @@ -1202,18 +1162,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1221,11 +1181,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:11 GMT + - Fri, 18 Jun 2021 06:59:33 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 pragma: - no-cache server: @@ -1255,18 +1215,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1274,11 +1234,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:12 GMT + - Fri, 18 Jun 2021 06:59:34 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 pragma: - no-cache server: @@ -1308,18 +1268,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1327,11 +1287,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:13 GMT + - Fri, 18 Jun 2021 06:59:35 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 pragma: - no-cache server: @@ -1361,18 +1321,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1380,11 +1340,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:15 GMT + - Fri, 18 Jun 2021 06:59:37 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 pragma: - no-cache server: @@ -1414,18 +1374,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1433,11 +1393,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:16 GMT + - Fri, 18 Jun 2021 06:59:38 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 pragma: - no-cache server: @@ -1467,18 +1427,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1486,11 +1446,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:17 GMT + - Fri, 18 Jun 2021 06:59:39 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 pragma: - no-cache server: @@ -1520,18 +1480,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1539,11 +1499,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:19 GMT + - Fri, 18 Jun 2021 06:59:41 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 pragma: - no-cache server: @@ -1573,18 +1533,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1592,11 +1552,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:20 GMT + - Fri, 18 Jun 2021 06:59:42 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 pragma: - no-cache server: @@ -1626,18 +1586,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1645,11 +1605,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:21 GMT + - Fri, 18 Jun 2021 06:59:43 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 pragma: - no-cache server: @@ -1679,18 +1639,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1698,11 +1658,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:22 GMT + - Fri, 18 Jun 2021 06:59:44 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 pragma: - no-cache server: @@ -1732,18 +1692,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1751,11 +1711,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:24 GMT + - Fri, 18 Jun 2021 06:59:46 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 pragma: - no-cache server: @@ -1785,18 +1745,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1804,11 +1764,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:25 GMT + - Fri, 18 Jun 2021 06:59:47 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 pragma: - no-cache server: @@ -1838,18 +1798,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1857,11 +1817,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:26 GMT + - Fri, 18 Jun 2021 06:59:48 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 pragma: - no-cache server: @@ -1891,18 +1851,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1910,11 +1870,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:27 GMT + - Fri, 18 Jun 2021 06:59:50 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 pragma: - no-cache server: @@ -1944,18 +1904,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1963,11 +1923,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:29 GMT + - Fri, 18 Jun 2021 06:59:51 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 pragma: - no-cache server: @@ -1997,18 +1957,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2016,11 +1976,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:30 GMT + - Fri, 18 Jun 2021 06:59:52 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 pragma: - no-cache server: @@ -2050,18 +2010,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2069,11 +2029,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:31 GMT + - Fri, 18 Jun 2021 06:59:53 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 pragma: - no-cache server: @@ -2103,18 +2063,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2122,11 +2082,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:32 GMT + - Fri, 18 Jun 2021 06:59:55 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 pragma: - no-cache server: @@ -2156,18 +2116,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2175,11 +2135,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:33 GMT + - Fri, 18 Jun 2021 06:59:56 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 pragma: - no-cache server: @@ -2209,18 +2169,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2228,11 +2188,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:35 GMT + - Fri, 18 Jun 2021 06:59:57 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 pragma: - no-cache server: @@ -2262,18 +2222,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2281,11 +2241,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:36 GMT + - Fri, 18 Jun 2021 06:59:58 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 pragma: - no-cache server: @@ -2315,18 +2275,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2334,11 +2294,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:37 GMT + - Fri, 18 Jun 2021 06:59:59 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 pragma: - no-cache server: @@ -2368,18 +2328,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2387,11 +2347,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:39 GMT + - Fri, 18 Jun 2021 07:00:01 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 pragma: - no-cache server: @@ -2415,24 +2375,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v --storage-account --azure-file-share -p + - -g -v -c -i --backup-management-type --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2440,11 +2400,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:40 GMT + - Fri, 18 Jun 2021 07:00:02 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 pragma: - no-cache server: @@ -2474,18 +2434,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2493,11 +2453,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:41 GMT + - Fri, 18 Jun 2021 07:00:04 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 pragma: - no-cache server: @@ -2527,18 +2487,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2546,11 +2506,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:42 GMT + - Fri, 18 Jun 2021 07:00:05 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 pragma: - no-cache server: @@ -2580,18 +2540,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2599,11 +2559,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:43 GMT + - Fri, 18 Jun 2021 07:00:06 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 pragma: - no-cache server: @@ -2633,18 +2593,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2652,11 +2612,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:45 GMT + - Fri, 18 Jun 2021 07:00:07 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 pragma: - no-cache server: @@ -2686,18 +2646,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2705,11 +2665,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:46 GMT + - Fri, 18 Jun 2021 07:00:09 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 pragma: - no-cache server: @@ -2739,18 +2699,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2758,11 +2718,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:47 GMT + - Fri, 18 Jun 2021 07:00:10 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 pragma: - no-cache server: @@ -2792,18 +2752,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2811,11 +2771,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:48 GMT + - Fri, 18 Jun 2021 07:00:11 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 pragma: - no-cache server: @@ -2845,18 +2805,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2864,11 +2824,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:50 GMT + - Fri, 18 Jun 2021 07:00:13 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 pragma: - no-cache server: @@ -2898,18 +2858,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2917,11 +2877,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:51 GMT + - Fri, 18 Jun 2021 07:00:14 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 pragma: - no-cache server: @@ -2951,18 +2911,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2970,11 +2930,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:52 GMT + - Fri, 18 Jun 2021 07:00:15 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 pragma: - no-cache server: @@ -3004,18 +2964,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3023,11 +2983,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:53 GMT + - Fri, 18 Jun 2021 07:00:16 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 pragma: - no-cache server: @@ -3057,18 +3017,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3076,11 +3036,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:55 GMT + - Fri, 18 Jun 2021 07:00:18 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 pragma: - no-cache server: @@ -3110,18 +3070,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3129,11 +3089,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:56 GMT + - Fri, 18 Jun 2021 07:00:19 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 pragma: - no-cache server: @@ -3163,18 +3123,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3182,11 +3142,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:57 GMT + - Fri, 18 Jun 2021 07:00:20 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 pragma: - no-cache server: @@ -3216,18 +3176,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3235,11 +3195,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:18:58 GMT + - Fri, 18 Jun 2021 07:00:22 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 pragma: - no-cache server: @@ -3269,18 +3229,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3288,11 +3248,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:00 GMT + - Fri, 18 Jun 2021 07:00:23 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 pragma: - no-cache server: @@ -3322,18 +3282,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3341,11 +3301,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:01 GMT + - Fri, 18 Jun 2021 07:00:24 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 pragma: - no-cache server: @@ -3375,18 +3335,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3394,11 +3354,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:02 GMT + - Fri, 18 Jun 2021 07:00:26 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 pragma: - no-cache server: @@ -3428,18 +3388,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3447,11 +3407,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:03 GMT + - Fri, 18 Jun 2021 07:00:27 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 pragma: - no-cache server: @@ -3481,18 +3441,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3500,11 +3460,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:04 GMT + - Fri, 18 Jun 2021 07:00:28 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 pragma: - no-cache server: @@ -3534,18 +3494,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3553,11 +3513,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:06 GMT + - Fri, 18 Jun 2021 07:00:29 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 pragma: - no-cache server: @@ -3587,18 +3547,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3606,11 +3566,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:07 GMT + - Fri, 18 Jun 2021 07:00:31 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 pragma: - no-cache server: @@ -3640,18 +3600,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3659,11 +3619,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:08 GMT + - Fri, 18 Jun 2021 07:00:32 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 pragma: - no-cache server: @@ -3693,18 +3653,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3712,11 +3672,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:09 GMT + - Fri, 18 Jun 2021 07:00:33 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 pragma: - no-cache server: @@ -3746,18 +3706,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3765,11 +3725,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:11 GMT + - Fri, 18 Jun 2021 07:00:34 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 pragma: - no-cache server: @@ -3799,18 +3759,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3818,11 +3778,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:12 GMT + - Fri, 18 Jun 2021 07:00:36 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 pragma: - no-cache server: @@ -3852,330 +3812,12 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2021-01-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 12:19:13 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2021-01-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '96' - x-powered-by: - - ASP.NET - 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 -p - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2021-01-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 12:19:14 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2021-01-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '95' - x-powered-by: - - ASP.NET - 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 -p - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2021-01-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 12:19:16 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2021-01-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '94' - x-powered-by: - - ASP.NET - 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 -p - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2021-01-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 12:19:17 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2021-01-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '93' - x-powered-by: - - ASP.NET - 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 -p - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2021-01-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 12:19:19 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2021-01-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '92' - x-powered-by: - - ASP.NET - 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 -p - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2021-01-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 12:19:20 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2021-01-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '91' - x-powered-by: - - ASP.NET - 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 -p - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/74400db3-7b38-42a0-b95c-6d8e81483e65?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ae5780a9-3df0-4287-9554-a5d0242609e9?api-version=2021-01-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003","name":"StorageContainer;Storage;clitest.rg000001;clitest000003","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","protectedItemCount":0,"friendlyName":"clitest000003","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer"}}' @@ -4187,7 +3829,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:21 GMT + - Fri, 18 Jun 2021 07:00:37 GMT expires: - '-1' pragma: @@ -4203,7 +3845,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '90' + - '96' x-powered-by: - ASP.NET status: @@ -4223,8 +3865,8 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET @@ -4240,7 +3882,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:21 GMT + - Fri, 18 Jun 2021 07:00:37 GMT expires: - '-1' pragma: @@ -4278,8 +3920,8 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: POST @@ -4289,17 +3931,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/831b1e75-26f1-4960-b40c-981a7c16610a?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/afa85ae5-5b2a-4ce9-9f4c-83f6adc0b24d?api-version=2019-05-13-preview cache-control: - no-cache content-length: - '0' date: - - Mon, 21 Jun 2021 12:19:22 GMT + - Fri, 18 Jun 2021 07:00:38 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/831b1e75-26f1-4960-b40c-981a7c16610a?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/afa85ae5-5b2a-4ce9-9f4c-83f6adc0b24d?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -4307,7 +3949,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -4327,18 +3969,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/831b1e75-26f1-4960-b40c-981a7c16610a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/afa85ae5-5b2a-4ce9-9f4c-83f6adc0b24d?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/831b1e75-26f1-4960-b40c-981a7c16610a?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/afa85ae5-5b2a-4ce9-9f4c-83f6adc0b24d?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4346,11 +3988,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:22 GMT + - Fri, 18 Jun 2021 07:00:39 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/831b1e75-26f1-4960-b40c-981a7c16610a?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/afa85ae5-5b2a-4ce9-9f4c-83f6adc0b24d?api-version=2021-01-01 pragma: - no-cache server: @@ -4380,18 +4022,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/831b1e75-26f1-4960-b40c-981a7c16610a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/afa85ae5-5b2a-4ce9-9f4c-83f6adc0b24d?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/831b1e75-26f1-4960-b40c-981a7c16610a?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/afa85ae5-5b2a-4ce9-9f4c-83f6adc0b24d?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4399,11 +4041,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:23 GMT + - Fri, 18 Jun 2021 07:00:40 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/831b1e75-26f1-4960-b40c-981a7c16610a?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/afa85ae5-5b2a-4ce9-9f4c-83f6adc0b24d?api-version=2021-01-01 pragma: - no-cache server: @@ -4433,18 +4075,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/831b1e75-26f1-4960-b40c-981a7c16610a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/afa85ae5-5b2a-4ce9-9f4c-83f6adc0b24d?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/831b1e75-26f1-4960-b40c-981a7c16610a?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/afa85ae5-5b2a-4ce9-9f4c-83f6adc0b24d?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4452,11 +4094,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:25 GMT + - Fri, 18 Jun 2021 07:00:41 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/831b1e75-26f1-4960-b40c-981a7c16610a?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/afa85ae5-5b2a-4ce9-9f4c-83f6adc0b24d?api-version=2021-01-01 pragma: - no-cache server: @@ -4486,18 +4128,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/831b1e75-26f1-4960-b40c-981a7c16610a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/afa85ae5-5b2a-4ce9-9f4c-83f6adc0b24d?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/831b1e75-26f1-4960-b40c-981a7c16610a?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/afa85ae5-5b2a-4ce9-9f4c-83f6adc0b24d?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4505,11 +4147,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:26 GMT + - Fri, 18 Jun 2021 07:00:43 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/831b1e75-26f1-4960-b40c-981a7c16610a?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/afa85ae5-5b2a-4ce9-9f4c-83f6adc0b24d?api-version=2021-01-01 pragma: - no-cache server: @@ -4539,65 +4181,12 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/831b1e75-26f1-4960-b40c-981a7c16610a?api-version=2021-01-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/831b1e75-26f1-4960-b40c-981a7c16610a?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 12:19:27 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/831b1e75-26f1-4960-b40c-981a7c16610a?api-version=2021-01-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' - x-powered-by: - - ASP.NET - 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 -p - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/831b1e75-26f1-4960-b40c-981a7c16610a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/afa85ae5-5b2a-4ce9-9f4c-83f6adc0b24d?api-version=2021-01-01 response: body: string: '' @@ -4607,7 +4196,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 12:19:28 GMT + - Fri, 18 Jun 2021 07:00:44 GMT expires: - '-1' pragma: @@ -4617,7 +4206,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '145' x-powered-by: - ASP.NET status: @@ -4637,15 +4226,15 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2021-01-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/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/storagecontainer;storage;clitest.rg000001;clitest000003/protectableItems/azurefileshare;9874092027c258edc4c51d48fdbcd925da74913822b5c6a18622635426c9a051","name":"azurefileshare;9874092027c258edc4c51d48fdbcd925da74913822b5c6a18622635426c9a051","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentContainerFabricId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","parentContainerFriendlyName":"clitest000003","azureFileShareType":"XSMB","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","protectableItemType":"AzureFileShare","friendlyName":"clitest-item000004","protectionState":"NotProtected"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/storagecontainer;storage;clitest.rg000001;clitest000003/protectableItems/azurefileshare;aabe15aebb950414fb95ebc1ee0ae88c70dd4682f1eb2494cf9c0611b93075da","name":"azurefileshare;aabe15aebb950414fb95ebc1ee0ae88c70dd4682f1eb2494cf9c0611b93075da","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentContainerFabricId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","parentContainerFriendlyName":"clitest000003","azureFileShareType":"XSMB","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","protectableItemType":"AzureFileShare","friendlyName":"clitest-item000004","protectionState":"NotProtected"}}]}' headers: cache-control: - no-cache @@ -4654,7 +4243,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:29 GMT + - Fri, 18 Jun 2021 07:00:44 GMT expires: - '-1' pragma: @@ -4690,15 +4279,15 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","name":"clitest-item000005","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureStorage","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-06-21T22:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-06-21T22:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","name":"clitest-item000005","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureStorage","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-06-18T16:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-06-18T16:30:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}' headers: cache-control: - no-cache @@ -4707,7 +4296,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:29 GMT + - Fri, 18 Jun 2021 07:00:45 GMT expires: - '-1' pragma: @@ -4749,147 +4338,41 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/storagecontainer%3Bstorage%3Bclitest.rg000001%3Bclitest000003/protectedItems/azurefileshare%3B9874092027c258edc4c51d48fdbcd925da74913822b5c6a18622635426c9a051?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/storagecontainer%3Bstorage%3Bclitest.rg000001%3Bclitest000003/protectedItems/azurefileshare%3Baabe15aebb950414fb95ebc1ee0ae88c70dd4682f1eb2494cf9c0611b93075da?api-version=2021-01-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/storagecontainer;storage;clitest.rg000001;clitest000003/protectedItems/azurefileshare;9874092027c258edc4c51d48fdbcd925da74913822b5c6a18622635426c9a051/operationsStatus/cd0c0bac-8ee1-43b0-b52f-fa3d2828bdac?api-version=2021-01-01 - cache-control: - - no-cache - content-length: - - '0' - date: - - Mon, 21 Jun 2021 12:19:30 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/storagecontainer;storage;clitest.rg000001;clitest000003/protectedItems/azurefileshare;9874092027c258edc4c51d48fdbcd925da74913822b5c6a18622635426c9a051/operationResults/cd0c0bac-8ee1-43b0-b52f-fa3d2828bdac?api-version=2021-01-01 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1196' - x-powered-by: - - ASP.NET - 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 -p - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cd0c0bac-8ee1-43b0-b52f-fa3d2828bdac?api-version=2021-01-01 - response: - body: - string: '{"id":"cd0c0bac-8ee1-43b0-b52f-fa3d2828bdac","name":"cd0c0bac-8ee1-43b0-b52f-fa3d2828bdac","status":"InProgress","startTime":"2021-06-21T12:19:31.0489246Z","endTime":"0001-01-01T00:00:00"}' - headers: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/storagecontainer;storage;clitest.rg000001;clitest000003/protectedItems/azurefileshare;aabe15aebb950414fb95ebc1ee0ae88c70dd4682f1eb2494cf9c0611b93075da/operationsStatus/66aaceb4-42e4-4744-9c67-8feddda3f1b4?api-version=2021-01-01 cache-control: - no-cache content-length: - - '188' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 12:19:31 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' - x-powered-by: - - ASP.NET - 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 -p - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cd0c0bac-8ee1-43b0-b52f-fa3d2828bdac?api-version=2021-01-01 - response: - body: - string: '{"id":"cd0c0bac-8ee1-43b0-b52f-fa3d2828bdac","name":"cd0c0bac-8ee1-43b0-b52f-fa3d2828bdac","status":"InProgress","startTime":"2021-06-21T12:19:31.0489246Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json + - '0' date: - - Mon, 21 Jun 2021 12:19:32 GMT + - Fri, 18 Jun 2021 07:00:45 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/storagecontainer;storage;clitest.rg000001;clitest000003/protectedItems/azurefileshare;aabe15aebb950414fb95ebc1ee0ae88c70dd4682f1eb2494cf9c0611b93075da/operationResults/66aaceb4-42e4-4744-9c67-8feddda3f1b4?api-version=2021-01-01 pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + x-ms-ratelimit-remaining-subscription-writes: + - '1199' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -4904,15 +4387,15 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cd0c0bac-8ee1-43b0-b52f-fa3d2828bdac?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/66aaceb4-42e4-4744-9c67-8feddda3f1b4?api-version=2021-01-01 response: body: - string: '{"id":"cd0c0bac-8ee1-43b0-b52f-fa3d2828bdac","name":"cd0c0bac-8ee1-43b0-b52f-fa3d2828bdac","status":"InProgress","startTime":"2021-06-21T12:19:31.0489246Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","name":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","status":"InProgress","startTime":"2021-06-18T07:00:46.3898341Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4921,7 +4404,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:34 GMT + - Fri, 18 Jun 2021 07:00:46 GMT expires: - '-1' pragma: @@ -4937,7 +4420,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '149' x-powered-by: - ASP.NET status: @@ -4957,15 +4440,15 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cd0c0bac-8ee1-43b0-b52f-fa3d2828bdac?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/66aaceb4-42e4-4744-9c67-8feddda3f1b4?api-version=2021-01-01 response: body: - string: '{"id":"cd0c0bac-8ee1-43b0-b52f-fa3d2828bdac","name":"cd0c0bac-8ee1-43b0-b52f-fa3d2828bdac","status":"InProgress","startTime":"2021-06-21T12:19:31.0489246Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","name":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","status":"InProgress","startTime":"2021-06-18T07:00:46.3898341Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4974,7 +4457,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:35 GMT + - Fri, 18 Jun 2021 07:00:47 GMT expires: - '-1' pragma: @@ -4990,7 +4473,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '148' x-powered-by: - ASP.NET status: @@ -5010,15 +4493,15 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cd0c0bac-8ee1-43b0-b52f-fa3d2828bdac?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/66aaceb4-42e4-4744-9c67-8feddda3f1b4?api-version=2021-01-01 response: body: - string: '{"id":"cd0c0bac-8ee1-43b0-b52f-fa3d2828bdac","name":"cd0c0bac-8ee1-43b0-b52f-fa3d2828bdac","status":"InProgress","startTime":"2021-06-21T12:19:31.0489246Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","name":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","status":"InProgress","startTime":"2021-06-18T07:00:46.3898341Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5027,7 +4510,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:36 GMT + - Fri, 18 Jun 2021 07:00:49 GMT expires: - '-1' pragma: @@ -5043,7 +4526,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '147' x-powered-by: - ASP.NET status: @@ -5063,15 +4546,15 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cd0c0bac-8ee1-43b0-b52f-fa3d2828bdac?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/66aaceb4-42e4-4744-9c67-8feddda3f1b4?api-version=2021-01-01 response: body: - string: '{"id":"cd0c0bac-8ee1-43b0-b52f-fa3d2828bdac","name":"cd0c0bac-8ee1-43b0-b52f-fa3d2828bdac","status":"InProgress","startTime":"2021-06-21T12:19:31.0489246Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","name":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","status":"InProgress","startTime":"2021-06-18T07:00:46.3898341Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5080,7 +4563,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:37 GMT + - Fri, 18 Jun 2021 07:00:51 GMT expires: - '-1' pragma: @@ -5096,7 +4579,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '146' x-powered-by: - ASP.NET status: @@ -5116,15 +4599,15 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cd0c0bac-8ee1-43b0-b52f-fa3d2828bdac?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/66aaceb4-42e4-4744-9c67-8feddda3f1b4?api-version=2021-01-01 response: body: - string: '{"id":"cd0c0bac-8ee1-43b0-b52f-fa3d2828bdac","name":"cd0c0bac-8ee1-43b0-b52f-fa3d2828bdac","status":"InProgress","startTime":"2021-06-21T12:19:31.0489246Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","name":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","status":"InProgress","startTime":"2021-06-18T07:00:46.3898341Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5133,7 +4616,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:39 GMT + - Fri, 18 Jun 2021 07:00:52 GMT expires: - '-1' pragma: @@ -5149,7 +4632,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '145' x-powered-by: - ASP.NET status: @@ -5169,15 +4652,15 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cd0c0bac-8ee1-43b0-b52f-fa3d2828bdac?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/66aaceb4-42e4-4744-9c67-8feddda3f1b4?api-version=2021-01-01 response: body: - string: '{"id":"cd0c0bac-8ee1-43b0-b52f-fa3d2828bdac","name":"cd0c0bac-8ee1-43b0-b52f-fa3d2828bdac","status":"InProgress","startTime":"2021-06-21T12:19:31.0489246Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","name":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","status":"InProgress","startTime":"2021-06-18T07:00:46.3898341Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5186,7 +4669,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:40 GMT + - Fri, 18 Jun 2021 07:00:53 GMT expires: - '-1' pragma: @@ -5202,7 +4685,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' + - '144' x-powered-by: - ASP.NET status: @@ -5222,15 +4705,15 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cd0c0bac-8ee1-43b0-b52f-fa3d2828bdac?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/66aaceb4-42e4-4744-9c67-8feddda3f1b4?api-version=2021-01-01 response: body: - string: '{"id":"cd0c0bac-8ee1-43b0-b52f-fa3d2828bdac","name":"cd0c0bac-8ee1-43b0-b52f-fa3d2828bdac","status":"InProgress","startTime":"2021-06-21T12:19:31.0489246Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","name":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","status":"InProgress","startTime":"2021-06-18T07:00:46.3898341Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5239,7 +4722,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:41 GMT + - Fri, 18 Jun 2021 07:00:54 GMT expires: - '-1' pragma: @@ -5255,7 +4738,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '141' + - '143' x-powered-by: - ASP.NET status: @@ -5275,15 +4758,15 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cd0c0bac-8ee1-43b0-b52f-fa3d2828bdac?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/66aaceb4-42e4-4744-9c67-8feddda3f1b4?api-version=2021-01-01 response: body: - string: '{"id":"cd0c0bac-8ee1-43b0-b52f-fa3d2828bdac","name":"cd0c0bac-8ee1-43b0-b52f-fa3d2828bdac","status":"InProgress","startTime":"2021-06-21T12:19:31.0489246Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","name":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","status":"InProgress","startTime":"2021-06-18T07:00:46.3898341Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5292,7 +4775,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:42 GMT + - Fri, 18 Jun 2021 07:00:56 GMT expires: - '-1' pragma: @@ -5308,7 +4791,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '140' + - '142' x-powered-by: - ASP.NET status: @@ -5328,15 +4811,15 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cd0c0bac-8ee1-43b0-b52f-fa3d2828bdac?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/66aaceb4-42e4-4744-9c67-8feddda3f1b4?api-version=2021-01-01 response: body: - string: '{"id":"cd0c0bac-8ee1-43b0-b52f-fa3d2828bdac","name":"cd0c0bac-8ee1-43b0-b52f-fa3d2828bdac","status":"InProgress","startTime":"2021-06-21T12:19:31.0489246Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","name":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","status":"InProgress","startTime":"2021-06-18T07:00:46.3898341Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5345,7 +4828,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:43 GMT + - Fri, 18 Jun 2021 07:00:57 GMT expires: - '-1' pragma: @@ -5361,7 +4844,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '139' + - '141' x-powered-by: - ASP.NET status: @@ -5381,15 +4864,15 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cd0c0bac-8ee1-43b0-b52f-fa3d2828bdac?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/66aaceb4-42e4-4744-9c67-8feddda3f1b4?api-version=2021-01-01 response: body: - string: '{"id":"cd0c0bac-8ee1-43b0-b52f-fa3d2828bdac","name":"cd0c0bac-8ee1-43b0-b52f-fa3d2828bdac","status":"InProgress","startTime":"2021-06-21T12:19:31.0489246Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","name":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","status":"InProgress","startTime":"2021-06-18T07:00:46.3898341Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5398,7 +4881,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:45 GMT + - Fri, 18 Jun 2021 07:00:58 GMT expires: - '-1' pragma: @@ -5414,7 +4897,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '138' + - '140' x-powered-by: - ASP.NET status: @@ -5434,15 +4917,15 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cd0c0bac-8ee1-43b0-b52f-fa3d2828bdac?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/66aaceb4-42e4-4744-9c67-8feddda3f1b4?api-version=2021-01-01 response: body: - string: '{"id":"cd0c0bac-8ee1-43b0-b52f-fa3d2828bdac","name":"cd0c0bac-8ee1-43b0-b52f-fa3d2828bdac","status":"InProgress","startTime":"2021-06-21T12:19:31.0489246Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","name":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","status":"InProgress","startTime":"2021-06-18T07:00:46.3898341Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5451,7 +4934,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:46 GMT + - Fri, 18 Jun 2021 07:01:00 GMT expires: - '-1' pragma: @@ -5467,7 +4950,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '137' + - '139' x-powered-by: - ASP.NET status: @@ -5487,15 +4970,15 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cd0c0bac-8ee1-43b0-b52f-fa3d2828bdac?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/66aaceb4-42e4-4744-9c67-8feddda3f1b4?api-version=2021-01-01 response: body: - string: '{"id":"cd0c0bac-8ee1-43b0-b52f-fa3d2828bdac","name":"cd0c0bac-8ee1-43b0-b52f-fa3d2828bdac","status":"InProgress","startTime":"2021-06-21T12:19:31.0489246Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","name":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","status":"InProgress","startTime":"2021-06-18T07:00:46.3898341Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5504,7 +4987,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:47 GMT + - Fri, 18 Jun 2021 07:01:01 GMT expires: - '-1' pragma: @@ -5520,7 +5003,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '136' + - '138' x-powered-by: - ASP.NET status: @@ -5540,15 +5023,15 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cd0c0bac-8ee1-43b0-b52f-fa3d2828bdac?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/66aaceb4-42e4-4744-9c67-8feddda3f1b4?api-version=2021-01-01 response: body: - string: '{"id":"cd0c0bac-8ee1-43b0-b52f-fa3d2828bdac","name":"cd0c0bac-8ee1-43b0-b52f-fa3d2828bdac","status":"InProgress","startTime":"2021-06-21T12:19:31.0489246Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","name":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","status":"InProgress","startTime":"2021-06-18T07:00:46.3898341Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5557,7 +5040,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:49 GMT + - Fri, 18 Jun 2021 07:01:02 GMT expires: - '-1' pragma: @@ -5573,7 +5056,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '135' + - '137' x-powered-by: - ASP.NET status: @@ -5593,15 +5076,15 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cd0c0bac-8ee1-43b0-b52f-fa3d2828bdac?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/66aaceb4-42e4-4744-9c67-8feddda3f1b4?api-version=2021-01-01 response: body: - string: '{"id":"cd0c0bac-8ee1-43b0-b52f-fa3d2828bdac","name":"cd0c0bac-8ee1-43b0-b52f-fa3d2828bdac","status":"InProgress","startTime":"2021-06-21T12:19:31.0489246Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","name":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","status":"InProgress","startTime":"2021-06-18T07:00:46.3898341Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5610,7 +5093,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:50 GMT + - Fri, 18 Jun 2021 07:01:04 GMT expires: - '-1' pragma: @@ -5626,7 +5109,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '134' + - '136' x-powered-by: - ASP.NET status: @@ -5646,15 +5129,15 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cd0c0bac-8ee1-43b0-b52f-fa3d2828bdac?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/66aaceb4-42e4-4744-9c67-8feddda3f1b4?api-version=2021-01-01 response: body: - string: '{"id":"cd0c0bac-8ee1-43b0-b52f-fa3d2828bdac","name":"cd0c0bac-8ee1-43b0-b52f-fa3d2828bdac","status":"InProgress","startTime":"2021-06-21T12:19:31.0489246Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","name":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","status":"InProgress","startTime":"2021-06-18T07:00:46.3898341Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5663,7 +5146,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:51 GMT + - Fri, 18 Jun 2021 07:01:05 GMT expires: - '-1' pragma: @@ -5679,7 +5162,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '133' + - '135' x-powered-by: - ASP.NET status: @@ -5699,15 +5182,15 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cd0c0bac-8ee1-43b0-b52f-fa3d2828bdac?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/66aaceb4-42e4-4744-9c67-8feddda3f1b4?api-version=2021-01-01 response: body: - string: '{"id":"cd0c0bac-8ee1-43b0-b52f-fa3d2828bdac","name":"cd0c0bac-8ee1-43b0-b52f-fa3d2828bdac","status":"InProgress","startTime":"2021-06-21T12:19:31.0489246Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","name":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","status":"InProgress","startTime":"2021-06-18T07:00:46.3898341Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5716,7 +5199,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:52 GMT + - Fri, 18 Jun 2021 07:01:06 GMT expires: - '-1' pragma: @@ -5732,7 +5215,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '132' + - '134' x-powered-by: - ASP.NET status: @@ -5752,15 +5235,15 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cd0c0bac-8ee1-43b0-b52f-fa3d2828bdac?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/66aaceb4-42e4-4744-9c67-8feddda3f1b4?api-version=2021-01-01 response: body: - string: '{"id":"cd0c0bac-8ee1-43b0-b52f-fa3d2828bdac","name":"cd0c0bac-8ee1-43b0-b52f-fa3d2828bdac","status":"InProgress","startTime":"2021-06-21T12:19:31.0489246Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","name":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","status":"InProgress","startTime":"2021-06-18T07:00:46.3898341Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5769,7 +5252,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:54 GMT + - Fri, 18 Jun 2021 07:01:08 GMT expires: - '-1' pragma: @@ -5785,7 +5268,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '131' + - '133' x-powered-by: - ASP.NET status: @@ -5805,15 +5288,15 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cd0c0bac-8ee1-43b0-b52f-fa3d2828bdac?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/66aaceb4-42e4-4744-9c67-8feddda3f1b4?api-version=2021-01-01 response: body: - string: '{"id":"cd0c0bac-8ee1-43b0-b52f-fa3d2828bdac","name":"cd0c0bac-8ee1-43b0-b52f-fa3d2828bdac","status":"InProgress","startTime":"2021-06-21T12:19:31.0489246Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","name":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","status":"InProgress","startTime":"2021-06-18T07:00:46.3898341Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5822,7 +5305,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:55 GMT + - Fri, 18 Jun 2021 07:01:09 GMT expires: - '-1' pragma: @@ -5838,7 +5321,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '130' + - '132' x-powered-by: - ASP.NET status: @@ -5858,15 +5341,15 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cd0c0bac-8ee1-43b0-b52f-fa3d2828bdac?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/66aaceb4-42e4-4744-9c67-8feddda3f1b4?api-version=2021-01-01 response: body: - string: '{"id":"cd0c0bac-8ee1-43b0-b52f-fa3d2828bdac","name":"cd0c0bac-8ee1-43b0-b52f-fa3d2828bdac","status":"InProgress","startTime":"2021-06-21T12:19:31.0489246Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","name":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","status":"InProgress","startTime":"2021-06-18T07:00:46.3898341Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5875,7 +5358,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:56 GMT + - Fri, 18 Jun 2021 07:01:10 GMT expires: - '-1' pragma: @@ -5891,7 +5374,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '129' + - '131' x-powered-by: - ASP.NET status: @@ -5911,15 +5394,15 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cd0c0bac-8ee1-43b0-b52f-fa3d2828bdac?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/66aaceb4-42e4-4744-9c67-8feddda3f1b4?api-version=2021-01-01 response: body: - string: '{"id":"cd0c0bac-8ee1-43b0-b52f-fa3d2828bdac","name":"cd0c0bac-8ee1-43b0-b52f-fa3d2828bdac","status":"InProgress","startTime":"2021-06-21T12:19:31.0489246Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","name":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","status":"InProgress","startTime":"2021-06-18T07:00:46.3898341Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5928,7 +5411,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:57 GMT + - Fri, 18 Jun 2021 07:01:11 GMT expires: - '-1' pragma: @@ -5944,7 +5427,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '128' + - '130' x-powered-by: - ASP.NET status: @@ -5964,15 +5447,15 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cd0c0bac-8ee1-43b0-b52f-fa3d2828bdac?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/66aaceb4-42e4-4744-9c67-8feddda3f1b4?api-version=2021-01-01 response: body: - string: '{"id":"cd0c0bac-8ee1-43b0-b52f-fa3d2828bdac","name":"cd0c0bac-8ee1-43b0-b52f-fa3d2828bdac","status":"InProgress","startTime":"2021-06-21T12:19:31.0489246Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","name":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","status":"InProgress","startTime":"2021-06-18T07:00:46.3898341Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5981,7 +5464,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:19:59 GMT + - Fri, 18 Jun 2021 07:01:13 GMT expires: - '-1' pragma: @@ -5997,7 +5480,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '127' + - '129' x-powered-by: - ASP.NET status: @@ -6017,15 +5500,15 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cd0c0bac-8ee1-43b0-b52f-fa3d2828bdac?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/66aaceb4-42e4-4744-9c67-8feddda3f1b4?api-version=2021-01-01 response: body: - string: '{"id":"cd0c0bac-8ee1-43b0-b52f-fa3d2828bdac","name":"cd0c0bac-8ee1-43b0-b52f-fa3d2828bdac","status":"InProgress","startTime":"2021-06-21T12:19:31.0489246Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","name":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","status":"InProgress","startTime":"2021-06-18T07:00:46.3898341Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6034,7 +5517,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:00 GMT + - Fri, 18 Jun 2021 07:01:14 GMT expires: - '-1' pragma: @@ -6050,7 +5533,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '126' + - '128' x-powered-by: - ASP.NET status: @@ -6070,15 +5553,15 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cd0c0bac-8ee1-43b0-b52f-fa3d2828bdac?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/66aaceb4-42e4-4744-9c67-8feddda3f1b4?api-version=2021-01-01 response: body: - string: '{"id":"cd0c0bac-8ee1-43b0-b52f-fa3d2828bdac","name":"cd0c0bac-8ee1-43b0-b52f-fa3d2828bdac","status":"InProgress","startTime":"2021-06-21T12:19:31.0489246Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","name":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","status":"InProgress","startTime":"2021-06-18T07:00:46.3898341Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6087,7 +5570,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:01 GMT + - Fri, 18 Jun 2021 07:01:15 GMT expires: - '-1' pragma: @@ -6103,7 +5586,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '125' + - '127' x-powered-by: - ASP.NET status: @@ -6123,15 +5606,15 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cd0c0bac-8ee1-43b0-b52f-fa3d2828bdac?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/66aaceb4-42e4-4744-9c67-8feddda3f1b4?api-version=2021-01-01 response: body: - string: '{"id":"cd0c0bac-8ee1-43b0-b52f-fa3d2828bdac","name":"cd0c0bac-8ee1-43b0-b52f-fa3d2828bdac","status":"InProgress","startTime":"2021-06-21T12:19:31.0489246Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","name":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","status":"InProgress","startTime":"2021-06-18T07:00:46.3898341Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6140,7 +5623,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:02 GMT + - Fri, 18 Jun 2021 07:01:17 GMT expires: - '-1' pragma: @@ -6156,7 +5639,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '124' + - '126' x-powered-by: - ASP.NET status: @@ -6176,15 +5659,15 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cd0c0bac-8ee1-43b0-b52f-fa3d2828bdac?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/66aaceb4-42e4-4744-9c67-8feddda3f1b4?api-version=2021-01-01 response: body: - string: '{"id":"cd0c0bac-8ee1-43b0-b52f-fa3d2828bdac","name":"cd0c0bac-8ee1-43b0-b52f-fa3d2828bdac","status":"InProgress","startTime":"2021-06-21T12:19:31.0489246Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","name":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","status":"InProgress","startTime":"2021-06-18T07:00:46.3898341Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6193,7 +5676,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:03 GMT + - Fri, 18 Jun 2021 07:01:18 GMT expires: - '-1' pragma: @@ -6209,7 +5692,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '123' + - '125' x-powered-by: - ASP.NET status: @@ -6229,15 +5712,15 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cd0c0bac-8ee1-43b0-b52f-fa3d2828bdac?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/66aaceb4-42e4-4744-9c67-8feddda3f1b4?api-version=2021-01-01 response: body: - string: '{"id":"cd0c0bac-8ee1-43b0-b52f-fa3d2828bdac","name":"cd0c0bac-8ee1-43b0-b52f-fa3d2828bdac","status":"InProgress","startTime":"2021-06-21T12:19:31.0489246Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","name":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","status":"InProgress","startTime":"2021-06-18T07:00:46.3898341Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6246,7 +5729,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:05 GMT + - Fri, 18 Jun 2021 07:01:19 GMT expires: - '-1' pragma: @@ -6262,7 +5745,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '122' + - '124' x-powered-by: - ASP.NET status: @@ -6282,15 +5765,15 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cd0c0bac-8ee1-43b0-b52f-fa3d2828bdac?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/66aaceb4-42e4-4744-9c67-8feddda3f1b4?api-version=2021-01-01 response: body: - string: '{"id":"cd0c0bac-8ee1-43b0-b52f-fa3d2828bdac","name":"cd0c0bac-8ee1-43b0-b52f-fa3d2828bdac","status":"InProgress","startTime":"2021-06-21T12:19:31.0489246Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","name":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","status":"InProgress","startTime":"2021-06-18T07:00:46.3898341Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6299,7 +5782,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:06 GMT + - Fri, 18 Jun 2021 07:01:21 GMT expires: - '-1' pragma: @@ -6315,7 +5798,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '121' + - '123' x-powered-by: - ASP.NET status: @@ -6335,15 +5818,15 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cd0c0bac-8ee1-43b0-b52f-fa3d2828bdac?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/66aaceb4-42e4-4744-9c67-8feddda3f1b4?api-version=2021-01-01 response: body: - string: '{"id":"cd0c0bac-8ee1-43b0-b52f-fa3d2828bdac","name":"cd0c0bac-8ee1-43b0-b52f-fa3d2828bdac","status":"InProgress","startTime":"2021-06-21T12:19:31.0489246Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","name":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","status":"InProgress","startTime":"2021-06-18T07:00:46.3898341Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6352,7 +5835,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:07 GMT + - Fri, 18 Jun 2021 07:01:22 GMT expires: - '-1' pragma: @@ -6368,7 +5851,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '120' + - '122' x-powered-by: - ASP.NET status: @@ -6388,15 +5871,15 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cd0c0bac-8ee1-43b0-b52f-fa3d2828bdac?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/66aaceb4-42e4-4744-9c67-8feddda3f1b4?api-version=2021-01-01 response: body: - string: '{"id":"cd0c0bac-8ee1-43b0-b52f-fa3d2828bdac","name":"cd0c0bac-8ee1-43b0-b52f-fa3d2828bdac","status":"InProgress","startTime":"2021-06-21T12:19:31.0489246Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","name":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","status":"InProgress","startTime":"2021-06-18T07:00:46.3898341Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6405,7 +5888,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:08 GMT + - Fri, 18 Jun 2021 07:01:23 GMT expires: - '-1' pragma: @@ -6421,7 +5904,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '119' + - '121' x-powered-by: - ASP.NET status: @@ -6441,15 +5924,15 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cd0c0bac-8ee1-43b0-b52f-fa3d2828bdac?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/66aaceb4-42e4-4744-9c67-8feddda3f1b4?api-version=2021-01-01 response: body: - string: '{"id":"cd0c0bac-8ee1-43b0-b52f-fa3d2828bdac","name":"cd0c0bac-8ee1-43b0-b52f-fa3d2828bdac","status":"InProgress","startTime":"2021-06-21T12:19:31.0489246Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","name":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","status":"InProgress","startTime":"2021-06-18T07:00:46.3898341Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6458,7 +5941,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:10 GMT + - Fri, 18 Jun 2021 07:01:24 GMT expires: - '-1' pragma: @@ -6474,7 +5957,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '118' + - '120' x-powered-by: - ASP.NET status: @@ -6494,15 +5977,15 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cd0c0bac-8ee1-43b0-b52f-fa3d2828bdac?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/66aaceb4-42e4-4744-9c67-8feddda3f1b4?api-version=2021-01-01 response: body: - string: '{"id":"cd0c0bac-8ee1-43b0-b52f-fa3d2828bdac","name":"cd0c0bac-8ee1-43b0-b52f-fa3d2828bdac","status":"InProgress","startTime":"2021-06-21T12:19:31.0489246Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","name":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","status":"InProgress","startTime":"2021-06-18T07:00:46.3898341Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6511,7 +5994,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:11 GMT + - Fri, 18 Jun 2021 07:01:26 GMT expires: - '-1' pragma: @@ -6527,7 +6010,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '117' + - '119' x-powered-by: - ASP.NET status: @@ -6547,15 +6030,15 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cd0c0bac-8ee1-43b0-b52f-fa3d2828bdac?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/66aaceb4-42e4-4744-9c67-8feddda3f1b4?api-version=2021-01-01 response: body: - string: '{"id":"cd0c0bac-8ee1-43b0-b52f-fa3d2828bdac","name":"cd0c0bac-8ee1-43b0-b52f-fa3d2828bdac","status":"InProgress","startTime":"2021-06-21T12:19:31.0489246Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","name":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","status":"InProgress","startTime":"2021-06-18T07:00:46.3898341Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6564,7 +6047,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:12 GMT + - Fri, 18 Jun 2021 07:01:27 GMT expires: - '-1' pragma: @@ -6580,7 +6063,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '116' + - '118' x-powered-by: - ASP.NET status: @@ -6600,15 +6083,15 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/cd0c0bac-8ee1-43b0-b52f-fa3d2828bdac?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/66aaceb4-42e4-4744-9c67-8feddda3f1b4?api-version=2021-01-01 response: body: - string: '{"id":"cd0c0bac-8ee1-43b0-b52f-fa3d2828bdac","name":"cd0c0bac-8ee1-43b0-b52f-fa3d2828bdac","status":"Succeeded","startTime":"2021-06-21T12:19:31.0489246Z","endTime":"2021-06-21T12:19:31.0489246Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"a4b260a6-0db1-49cf-91c6-a725165617c7"}}' + string: '{"id":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","name":"66aaceb4-42e4-4744-9c67-8feddda3f1b4","status":"Succeeded","startTime":"2021-06-18T07:00:46.3898341Z","endTime":"2021-06-18T07:00:46.3898341Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"37dac22e-45ba-4014-b4f3-fca9ec7d7be3"}}' headers: cache-control: - no-cache @@ -6617,7 +6100,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:13 GMT + - Fri, 18 Jun 2021 07:01:28 GMT expires: - '-1' pragma: @@ -6633,7 +6116,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '115' + - '117' x-powered-by: - ASP.NET status: @@ -6653,26 +6136,26 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a4b260a6-0db1-49cf-91c6-a725165617c7?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/37dac22e-45ba-4014-b4f3-fca9ec7d7be3?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a4b260a6-0db1-49cf-91c6-a725165617c7","name":"a4b260a6-0db1-49cf-91c6-a725165617c7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT42.5047394S","storageAccountName":"clitest000003","storageAccountVersion":"Storage","extendedInfo":{"tasksList":[],"propertyBag":{"File + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/37dac22e-45ba-4014-b4f3-fca9ec7d7be3","name":"37dac22e-45ba-4014-b4f3-fca9ec7d7be3","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT41.9548331S","storageAccountName":"clitest000003","storageAccountVersion":"Storage","extendedInfo":{"tasksList":[],"propertyBag":{"File Share Name":"clitest-item000004","Storage Account Name":"clitest000003","Policy - Name":"clitest-item000005"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"ConfigureBackup","status":"Completed","startTime":"2021-06-21T12:19:31.0489246Z","endTime":"2021-06-21T12:20:13.553664Z","activityId":"b36ba37a-d28a-11eb-ab78-c8f750f92764"}}' + Name":"clitest-item000005"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"ConfigureBackup","status":"Completed","startTime":"2021-06-18T07:00:46.3898341Z","endTime":"2021-06-18T07:01:28.3446672Z","activityId":"b0e970ac-d002-11eb-b2d0-00155d657312"}}' headers: cache-control: - no-cache content-length: - - '945' + - '946' content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:14 GMT + - Fri, 18 Jun 2021 07:01:28 GMT expires: - '-1' pragma: @@ -6689,7 +6172,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '148' x-powered-by: - ASP.NET status: @@ -6709,15 +6192,15 @@ interactions: ParameterSetName: - -g -v -c --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;9874092027c258edc4c51d48fdbcd925da74913822b5c6a18622635426c9a051","name":"AzureFileShare;9874092027c258edc4c51d48fdbcd925da74913822b5c6a18622635426c9a051","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-item000004","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","isArchiveEnabled":false}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;aabe15aebb950414fb95ebc1ee0ae88c70dd4682f1eb2494cf9c0611b93075da","name":"AzureFileShare;aabe15aebb950414fb95ebc1ee0ae88c70dd4682f1eb2494cf9c0611b93075da","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-item000004","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache @@ -6726,7 +6209,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:14 GMT + - Fri, 18 Jun 2021 07:01:28 GMT expires: - '-1' pragma: @@ -6742,7 +6225,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '148' x-powered-by: - ASP.NET status: @@ -6762,15 +6245,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;9874092027c258edc4c51d48fdbcd925da74913822b5c6a18622635426c9a051","name":"AzureFileShare;9874092027c258edc4c51d48fdbcd925da74913822b5c6a18622635426c9a051","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-item000004","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","isArchiveEnabled":false}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;aabe15aebb950414fb95ebc1ee0ae88c70dd4682f1eb2494cf9c0611b93075da","name":"AzureFileShare;aabe15aebb950414fb95ebc1ee0ae88c70dd4682f1eb2494cf9c0611b93075da","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-item000004","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache @@ -6779,7 +6262,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:15 GMT + - Fri, 18 Jun 2021 07:01:29 GMT expires: - '-1' pragma: @@ -6821,28 +6304,28 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bclitest.rg000001%3Bclitest000003/protectedItems/AzureFileShare%3B9874092027c258edc4c51d48fdbcd925da74913822b5c6a18622635426c9a051?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bclitest.rg000001%3Bclitest000003/protectedItems/AzureFileShare%3Baabe15aebb950414fb95ebc1ee0ae88c70dd4682f1eb2494cf9c0611b93075da?api-version=2021-01-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;9874092027c258edc4c51d48fdbcd925da74913822b5c6a18622635426c9a051/operationsStatus/e2cac3a9-c044-4892-b3c8-82d01927f2ca?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;aabe15aebb950414fb95ebc1ee0ae88c70dd4682f1eb2494cf9c0611b93075da/operationsStatus/822681bf-8a4b-4df9-b9af-2921cafba8f7?api-version=2021-01-01 cache-control: - no-cache content-length: - '0' date: - - Mon, 21 Jun 2021 12:20:15 GMT + - Fri, 18 Jun 2021 07:01:30 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;9874092027c258edc4c51d48fdbcd925da74913822b5c6a18622635426c9a051/operationResults/e2cac3a9-c044-4892-b3c8-82d01927f2ca?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;aabe15aebb950414fb95ebc1ee0ae88c70dd4682f1eb2494cf9c0611b93075da/operationResults/822681bf-8a4b-4df9-b9af-2921cafba8f7?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -6870,15 +6353,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e2cac3a9-c044-4892-b3c8-82d01927f2ca?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/822681bf-8a4b-4df9-b9af-2921cafba8f7?api-version=2021-01-01 response: body: - string: '{"id":"e2cac3a9-c044-4892-b3c8-82d01927f2ca","name":"e2cac3a9-c044-4892-b3c8-82d01927f2ca","status":"InProgress","startTime":"2021-06-21T12:20:16.1067217Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"822681bf-8a4b-4df9-b9af-2921cafba8f7","name":"822681bf-8a4b-4df9-b9af-2921cafba8f7","status":"InProgress","startTime":"2021-06-18T07:01:30.5071074Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6887,7 +6370,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:15 GMT + - Fri, 18 Jun 2021 07:01:30 GMT expires: - '-1' pragma: @@ -6923,15 +6406,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e2cac3a9-c044-4892-b3c8-82d01927f2ca?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/822681bf-8a4b-4df9-b9af-2921cafba8f7?api-version=2021-01-01 response: body: - string: '{"id":"e2cac3a9-c044-4892-b3c8-82d01927f2ca","name":"e2cac3a9-c044-4892-b3c8-82d01927f2ca","status":"InProgress","startTime":"2021-06-21T12:20:16.1067217Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"822681bf-8a4b-4df9-b9af-2921cafba8f7","name":"822681bf-8a4b-4df9-b9af-2921cafba8f7","status":"InProgress","startTime":"2021-06-18T07:01:30.5071074Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6940,7 +6423,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:17 GMT + - Fri, 18 Jun 2021 07:01:31 GMT expires: - '-1' pragma: @@ -6976,15 +6459,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e2cac3a9-c044-4892-b3c8-82d01927f2ca?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/822681bf-8a4b-4df9-b9af-2921cafba8f7?api-version=2021-01-01 response: body: - string: '{"id":"e2cac3a9-c044-4892-b3c8-82d01927f2ca","name":"e2cac3a9-c044-4892-b3c8-82d01927f2ca","status":"InProgress","startTime":"2021-06-21T12:20:16.1067217Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"822681bf-8a4b-4df9-b9af-2921cafba8f7","name":"822681bf-8a4b-4df9-b9af-2921cafba8f7","status":"InProgress","startTime":"2021-06-18T07:01:30.5071074Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6993,7 +6476,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:18 GMT + - Fri, 18 Jun 2021 07:01:34 GMT expires: - '-1' pragma: @@ -7029,15 +6512,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e2cac3a9-c044-4892-b3c8-82d01927f2ca?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/822681bf-8a4b-4df9-b9af-2921cafba8f7?api-version=2021-01-01 response: body: - string: '{"id":"e2cac3a9-c044-4892-b3c8-82d01927f2ca","name":"e2cac3a9-c044-4892-b3c8-82d01927f2ca","status":"InProgress","startTime":"2021-06-21T12:20:16.1067217Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"822681bf-8a4b-4df9-b9af-2921cafba8f7","name":"822681bf-8a4b-4df9-b9af-2921cafba8f7","status":"InProgress","startTime":"2021-06-18T07:01:30.5071074Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7046,7 +6529,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:19 GMT + - Fri, 18 Jun 2021 07:01:35 GMT expires: - '-1' pragma: @@ -7082,15 +6565,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e2cac3a9-c044-4892-b3c8-82d01927f2ca?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/822681bf-8a4b-4df9-b9af-2921cafba8f7?api-version=2021-01-01 response: body: - string: '{"id":"e2cac3a9-c044-4892-b3c8-82d01927f2ca","name":"e2cac3a9-c044-4892-b3c8-82d01927f2ca","status":"InProgress","startTime":"2021-06-21T12:20:16.1067217Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"822681bf-8a4b-4df9-b9af-2921cafba8f7","name":"822681bf-8a4b-4df9-b9af-2921cafba8f7","status":"InProgress","startTime":"2021-06-18T07:01:30.5071074Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7099,7 +6582,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:20 GMT + - Fri, 18 Jun 2021 07:01:37 GMT expires: - '-1' pragma: @@ -7135,15 +6618,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e2cac3a9-c044-4892-b3c8-82d01927f2ca?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/822681bf-8a4b-4df9-b9af-2921cafba8f7?api-version=2021-01-01 response: body: - string: '{"id":"e2cac3a9-c044-4892-b3c8-82d01927f2ca","name":"e2cac3a9-c044-4892-b3c8-82d01927f2ca","status":"InProgress","startTime":"2021-06-21T12:20:16.1067217Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"822681bf-8a4b-4df9-b9af-2921cafba8f7","name":"822681bf-8a4b-4df9-b9af-2921cafba8f7","status":"InProgress","startTime":"2021-06-18T07:01:30.5071074Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7152,7 +6635,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:22 GMT + - Fri, 18 Jun 2021 07:01:38 GMT expires: - '-1' pragma: @@ -7188,15 +6671,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e2cac3a9-c044-4892-b3c8-82d01927f2ca?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/822681bf-8a4b-4df9-b9af-2921cafba8f7?api-version=2021-01-01 response: body: - string: '{"id":"e2cac3a9-c044-4892-b3c8-82d01927f2ca","name":"e2cac3a9-c044-4892-b3c8-82d01927f2ca","status":"InProgress","startTime":"2021-06-21T12:20:16.1067217Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"822681bf-8a4b-4df9-b9af-2921cafba8f7","name":"822681bf-8a4b-4df9-b9af-2921cafba8f7","status":"InProgress","startTime":"2021-06-18T07:01:30.5071074Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7205,7 +6688,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:23 GMT + - Fri, 18 Jun 2021 07:01:39 GMT expires: - '-1' pragma: @@ -7241,15 +6724,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e2cac3a9-c044-4892-b3c8-82d01927f2ca?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/822681bf-8a4b-4df9-b9af-2921cafba8f7?api-version=2021-01-01 response: body: - string: '{"id":"e2cac3a9-c044-4892-b3c8-82d01927f2ca","name":"e2cac3a9-c044-4892-b3c8-82d01927f2ca","status":"InProgress","startTime":"2021-06-21T12:20:16.1067217Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"822681bf-8a4b-4df9-b9af-2921cafba8f7","name":"822681bf-8a4b-4df9-b9af-2921cafba8f7","status":"InProgress","startTime":"2021-06-18T07:01:30.5071074Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7258,7 +6741,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:24 GMT + - Fri, 18 Jun 2021 07:01:40 GMT expires: - '-1' pragma: @@ -7294,15 +6777,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e2cac3a9-c044-4892-b3c8-82d01927f2ca?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/822681bf-8a4b-4df9-b9af-2921cafba8f7?api-version=2021-01-01 response: body: - string: '{"id":"e2cac3a9-c044-4892-b3c8-82d01927f2ca","name":"e2cac3a9-c044-4892-b3c8-82d01927f2ca","status":"InProgress","startTime":"2021-06-21T12:20:16.1067217Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"822681bf-8a4b-4df9-b9af-2921cafba8f7","name":"822681bf-8a4b-4df9-b9af-2921cafba8f7","status":"InProgress","startTime":"2021-06-18T07:01:30.5071074Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7311,7 +6794,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:25 GMT + - Fri, 18 Jun 2021 07:01:41 GMT expires: - '-1' pragma: @@ -7347,15 +6830,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e2cac3a9-c044-4892-b3c8-82d01927f2ca?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/822681bf-8a4b-4df9-b9af-2921cafba8f7?api-version=2021-01-01 response: body: - string: '{"id":"e2cac3a9-c044-4892-b3c8-82d01927f2ca","name":"e2cac3a9-c044-4892-b3c8-82d01927f2ca","status":"InProgress","startTime":"2021-06-21T12:20:16.1067217Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"822681bf-8a4b-4df9-b9af-2921cafba8f7","name":"822681bf-8a4b-4df9-b9af-2921cafba8f7","status":"InProgress","startTime":"2021-06-18T07:01:30.5071074Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7364,7 +6847,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:27 GMT + - Fri, 18 Jun 2021 07:01:43 GMT expires: - '-1' pragma: @@ -7400,15 +6883,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e2cac3a9-c044-4892-b3c8-82d01927f2ca?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/822681bf-8a4b-4df9-b9af-2921cafba8f7?api-version=2021-01-01 response: body: - string: '{"id":"e2cac3a9-c044-4892-b3c8-82d01927f2ca","name":"e2cac3a9-c044-4892-b3c8-82d01927f2ca","status":"InProgress","startTime":"2021-06-21T12:20:16.1067217Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"822681bf-8a4b-4df9-b9af-2921cafba8f7","name":"822681bf-8a4b-4df9-b9af-2921cafba8f7","status":"InProgress","startTime":"2021-06-18T07:01:30.5071074Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7417,7 +6900,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:28 GMT + - Fri, 18 Jun 2021 07:01:44 GMT expires: - '-1' pragma: @@ -7453,15 +6936,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e2cac3a9-c044-4892-b3c8-82d01927f2ca?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/822681bf-8a4b-4df9-b9af-2921cafba8f7?api-version=2021-01-01 response: body: - string: '{"id":"e2cac3a9-c044-4892-b3c8-82d01927f2ca","name":"e2cac3a9-c044-4892-b3c8-82d01927f2ca","status":"InProgress","startTime":"2021-06-21T12:20:16.1067217Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"822681bf-8a4b-4df9-b9af-2921cafba8f7","name":"822681bf-8a4b-4df9-b9af-2921cafba8f7","status":"InProgress","startTime":"2021-06-18T07:01:30.5071074Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7470,7 +6953,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:29 GMT + - Fri, 18 Jun 2021 07:01:45 GMT expires: - '-1' pragma: @@ -7506,15 +6989,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e2cac3a9-c044-4892-b3c8-82d01927f2ca?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/822681bf-8a4b-4df9-b9af-2921cafba8f7?api-version=2021-01-01 response: body: - string: '{"id":"e2cac3a9-c044-4892-b3c8-82d01927f2ca","name":"e2cac3a9-c044-4892-b3c8-82d01927f2ca","status":"InProgress","startTime":"2021-06-21T12:20:16.1067217Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"822681bf-8a4b-4df9-b9af-2921cafba8f7","name":"822681bf-8a4b-4df9-b9af-2921cafba8f7","status":"InProgress","startTime":"2021-06-18T07:01:30.5071074Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7523,7 +7006,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:30 GMT + - Fri, 18 Jun 2021 07:01:46 GMT expires: - '-1' pragma: @@ -7559,15 +7042,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e2cac3a9-c044-4892-b3c8-82d01927f2ca?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/822681bf-8a4b-4df9-b9af-2921cafba8f7?api-version=2021-01-01 response: body: - string: '{"id":"e2cac3a9-c044-4892-b3c8-82d01927f2ca","name":"e2cac3a9-c044-4892-b3c8-82d01927f2ca","status":"InProgress","startTime":"2021-06-21T12:20:16.1067217Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"822681bf-8a4b-4df9-b9af-2921cafba8f7","name":"822681bf-8a4b-4df9-b9af-2921cafba8f7","status":"InProgress","startTime":"2021-06-18T07:01:30.5071074Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7576,7 +7059,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:32 GMT + - Fri, 18 Jun 2021 07:01:48 GMT expires: - '-1' pragma: @@ -7612,15 +7095,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e2cac3a9-c044-4892-b3c8-82d01927f2ca?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/822681bf-8a4b-4df9-b9af-2921cafba8f7?api-version=2021-01-01 response: body: - string: '{"id":"e2cac3a9-c044-4892-b3c8-82d01927f2ca","name":"e2cac3a9-c044-4892-b3c8-82d01927f2ca","status":"InProgress","startTime":"2021-06-21T12:20:16.1067217Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"822681bf-8a4b-4df9-b9af-2921cafba8f7","name":"822681bf-8a4b-4df9-b9af-2921cafba8f7","status":"InProgress","startTime":"2021-06-18T07:01:30.5071074Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7629,7 +7112,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:33 GMT + - Fri, 18 Jun 2021 07:01:49 GMT expires: - '-1' pragma: @@ -7665,15 +7148,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e2cac3a9-c044-4892-b3c8-82d01927f2ca?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/822681bf-8a4b-4df9-b9af-2921cafba8f7?api-version=2021-01-01 response: body: - string: '{"id":"e2cac3a9-c044-4892-b3c8-82d01927f2ca","name":"e2cac3a9-c044-4892-b3c8-82d01927f2ca","status":"InProgress","startTime":"2021-06-21T12:20:16.1067217Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"822681bf-8a4b-4df9-b9af-2921cafba8f7","name":"822681bf-8a4b-4df9-b9af-2921cafba8f7","status":"InProgress","startTime":"2021-06-18T07:01:30.5071074Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7682,7 +7165,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:34 GMT + - Fri, 18 Jun 2021 07:01:50 GMT expires: - '-1' pragma: @@ -7718,68 +7201,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e2cac3a9-c044-4892-b3c8-82d01927f2ca?api-version=2021-01-01 - response: - body: - string: '{"id":"e2cac3a9-c044-4892-b3c8-82d01927f2ca","name":"e2cac3a9-c044-4892-b3c8-82d01927f2ca","status":"InProgress","startTime":"2021-06-21T12:20:16.1067217Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 12:20:35 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '133' - x-powered-by: - - ASP.NET - 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 --yes - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e2cac3a9-c044-4892-b3c8-82d01927f2ca?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/822681bf-8a4b-4df9-b9af-2921cafba8f7?api-version=2021-01-01 response: body: - string: '{"id":"e2cac3a9-c044-4892-b3c8-82d01927f2ca","name":"e2cac3a9-c044-4892-b3c8-82d01927f2ca","status":"Succeeded","startTime":"2021-06-21T12:20:16.1067217Z","endTime":"2021-06-21T12:20:16.1067217Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"80ba248c-4e4d-4e60-8ff9-184b7677a022"}}' + string: '{"id":"822681bf-8a4b-4df9-b9af-2921cafba8f7","name":"822681bf-8a4b-4df9-b9af-2921cafba8f7","status":"Succeeded","startTime":"2021-06-18T07:01:30.5071074Z","endTime":"2021-06-18T07:01:30.5071074Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"05da261f-4542-455e-90ff-081c30bc7df0"}}' headers: cache-control: - no-cache @@ -7788,7 +7218,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:38 GMT + - Fri, 18 Jun 2021 07:01:51 GMT expires: - '-1' pragma: @@ -7804,7 +7234,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '132' + - '133' x-powered-by: - ASP.NET status: @@ -7824,16 +7254,16 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80ba248c-4e4d-4e60-8ff9-184b7677a022?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/05da261f-4542-455e-90ff-081c30bc7df0?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80ba248c-4e4d-4e60-8ff9-184b7677a022","name":"80ba248c-4e4d-4e60-8ff9-184b7677a022","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT21.1565885S","storageAccountName":"clitest000003","storageAccountVersion":"Storage","extendedInfo":{"tasksList":[],"propertyBag":{"File - Share Name":"clitest-item000004","Storage Account Name":"clitest000003"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"DisableBackup","status":"Completed","startTime":"2021-06-21T12:20:16.1067217Z","endTime":"2021-06-21T12:20:37.2633102Z","activityId":"0894d90e-d28b-11eb-b44d-c8f750f92764"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/05da261f-4542-455e-90ff-081c30bc7df0","name":"05da261f-4542-455e-90ff-081c30bc7df0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT21.0616568S","storageAccountName":"clitest000003","storageAccountVersion":"Storage","extendedInfo":{"tasksList":[],"propertyBag":{"File + Share Name":"clitest-item000004","Storage Account Name":"clitest000003"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"DisableBackup","status":"Completed","startTime":"2021-06-18T07:01:30.5071074Z","endTime":"2021-06-18T07:01:51.5687642Z","activityId":"01526068-d003-11eb-a1b0-00155d657312"}}' headers: cache-control: - no-cache @@ -7842,7 +7272,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:38 GMT + - Fri, 18 Jun 2021 07:01:51 GMT expires: - '-1' pragma: @@ -7859,7 +7289,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '149' x-powered-by: - ASP.NET status: @@ -7879,15 +7309,15 @@ interactions: ParameterSetName: - -g -v -c -n --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;9874092027c258edc4c51d48fdbcd925da74913822b5c6a18622635426c9a051","name":"AzureFileShare;9874092027c258edc4c51d48fdbcd925da74913822b5c6a18622635426c9a051","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-item000004","protectionStatus":"Healthy","protectionState":"ProtectionStopped","lastBackupStatus":"IRPending","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","isArchiveEnabled":false}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;aabe15aebb950414fb95ebc1ee0ae88c70dd4682f1eb2494cf9c0611b93075da","name":"AzureFileShare;aabe15aebb950414fb95ebc1ee0ae88c70dd4682f1eb2494cf9c0611b93075da","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-item000004","protectionStatus":"Healthy","protectionState":"ProtectionStopped","lastBackupStatus":"IRPending","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache @@ -7896,7 +7326,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:38 GMT + - Fri, 18 Jun 2021 07:01:53 GMT expires: - '-1' pragma: @@ -7912,7 +7342,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '149' x-powered-by: - ASP.NET status: @@ -7932,15 +7362,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;9874092027c258edc4c51d48fdbcd925da74913822b5c6a18622635426c9a051","name":"AzureFileShare;9874092027c258edc4c51d48fdbcd925da74913822b5c6a18622635426c9a051","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-item000004","protectionStatus":"Healthy","protectionState":"ProtectionStopped","lastBackupStatus":"IRPending","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","isArchiveEnabled":false}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;aabe15aebb950414fb95ebc1ee0ae88c70dd4682f1eb2494cf9c0611b93075da","name":"AzureFileShare;aabe15aebb950414fb95ebc1ee0ae88c70dd4682f1eb2494cf9c0611b93075da","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-item000004","protectionStatus":"Healthy","protectionState":"ProtectionStopped","lastBackupStatus":"IRPending","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache @@ -7949,13 +7379,14 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:38 GMT + - Fri, 18 Jun 2021 07:01:53 GMT expires: - '-1' pragma: - no-cache server: - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -7979,7 +7410,7 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup item show Connection: - keep-alive Content-Length: @@ -7987,28 +7418,28 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bclitest.rg000001%3Bclitest000003/protectedItems/AzureFileShare%3B9874092027c258edc4c51d48fdbcd925da74913822b5c6a18622635426c9a051?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bclitest.rg000001%3Bclitest000003/protectedItems/AzureFileShare%3Baabe15aebb950414fb95ebc1ee0ae88c70dd4682f1eb2494cf9c0611b93075da?api-version=2021-01-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/42ea2099-dedf-48a0-9ba4-73c012501a1b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d96aef12-4bf0-4d8a-9355-02362ad61019?api-version=2021-01-01 cache-control: - no-cache content-length: - '0' date: - - Mon, 21 Jun 2021 12:20:39 GMT + - Fri, 18 Jun 2021 07:01:54 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/42ea2099-dedf-48a0-9ba4-73c012501a1b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/d96aef12-4bf0-4d8a-9355-02362ad61019?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -8036,24 +7467,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/42ea2099-dedf-48a0-9ba4-73c012501a1b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d96aef12-4bf0-4d8a-9355-02362ad61019?api-version=2021-01-01 response: body: - string: '{"id":"42ea2099-dedf-48a0-9ba4-73c012501a1b","name":"42ea2099-dedf-48a0-9ba4-73c012501a1b","status":"InProgress","startTime":"2021-06-21T12:20:39.9557191Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d96aef12-4bf0-4d8a-9355-02362ad61019","name":"d96aef12-4bf0-4d8a-9355-02362ad61019","status":"InProgress","startTime":"2021-06-18T07:01:54.7653305Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '1150' content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:40 GMT + - Fri, 18 Jun 2021 07:01:55 GMT expires: - '-1' pragma: @@ -8089,24 +7520,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/42ea2099-dedf-48a0-9ba4-73c012501a1b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d96aef12-4bf0-4d8a-9355-02362ad61019?api-version=2021-01-01 response: body: - string: '{"id":"42ea2099-dedf-48a0-9ba4-73c012501a1b","name":"42ea2099-dedf-48a0-9ba4-73c012501a1b","status":"InProgress","startTime":"2021-06-21T12:20:39.9557191Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d96aef12-4bf0-4d8a-9355-02362ad61019","name":"d96aef12-4bf0-4d8a-9355-02362ad61019","status":"InProgress","startTime":"2021-06-18T07:01:54.7653305Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '1150' content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:41 GMT + - Fri, 18 Jun 2021 07:01:56 GMT expires: - '-1' pragma: @@ -8139,18 +7570,20 @@ interactions: - backup protection disable Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/42ea2099-dedf-48a0-9ba4-73c012501a1b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d96aef12-4bf0-4d8a-9355-02362ad61019?api-version=2021-01-01 response: body: - string: '{"id":"42ea2099-dedf-48a0-9ba4-73c012501a1b","name":"42ea2099-dedf-48a0-9ba4-73c012501a1b","status":"InProgress","startTime":"2021-06-21T12:20:39.9557191Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d96aef12-4bf0-4d8a-9355-02362ad61019","name":"d96aef12-4bf0-4d8a-9355-02362ad61019","status":"InProgress","startTime":"2021-06-18T07:01:54.7653305Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8159,7 +7592,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:43 GMT + - Fri, 18 Jun 2021 07:01:57 GMT expires: - '-1' pragma: @@ -8195,15 +7628,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/42ea2099-dedf-48a0-9ba4-73c012501a1b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d96aef12-4bf0-4d8a-9355-02362ad61019?api-version=2021-01-01 response: body: - string: '{"id":"42ea2099-dedf-48a0-9ba4-73c012501a1b","name":"42ea2099-dedf-48a0-9ba4-73c012501a1b","status":"InProgress","startTime":"2021-06-21T12:20:39.9557191Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d96aef12-4bf0-4d8a-9355-02362ad61019","name":"d96aef12-4bf0-4d8a-9355-02362ad61019","status":"InProgress","startTime":"2021-06-18T07:01:54.7653305Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8212,7 +7645,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:44 GMT + - Fri, 18 Jun 2021 07:01:58 GMT expires: - '-1' pragma: @@ -8248,15 +7681,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/42ea2099-dedf-48a0-9ba4-73c012501a1b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d96aef12-4bf0-4d8a-9355-02362ad61019?api-version=2021-01-01 response: body: - string: '{"id":"42ea2099-dedf-48a0-9ba4-73c012501a1b","name":"42ea2099-dedf-48a0-9ba4-73c012501a1b","status":"InProgress","startTime":"2021-06-21T12:20:39.9557191Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d96aef12-4bf0-4d8a-9355-02362ad61019","name":"d96aef12-4bf0-4d8a-9355-02362ad61019","status":"InProgress","startTime":"2021-06-18T07:01:54.7653305Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8265,7 +7698,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:45 GMT + - Fri, 18 Jun 2021 07:02:00 GMT expires: - '-1' pragma: @@ -8301,15 +7734,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/42ea2099-dedf-48a0-9ba4-73c012501a1b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d96aef12-4bf0-4d8a-9355-02362ad61019?api-version=2021-01-01 response: body: - string: '{"id":"42ea2099-dedf-48a0-9ba4-73c012501a1b","name":"42ea2099-dedf-48a0-9ba4-73c012501a1b","status":"InProgress","startTime":"2021-06-21T12:20:39.9557191Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d96aef12-4bf0-4d8a-9355-02362ad61019","name":"d96aef12-4bf0-4d8a-9355-02362ad61019","status":"InProgress","startTime":"2021-06-18T07:01:54.7653305Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8318,7 +7751,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:46 GMT + - Fri, 18 Jun 2021 07:02:01 GMT expires: - '-1' pragma: @@ -8354,15 +7787,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/42ea2099-dedf-48a0-9ba4-73c012501a1b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d96aef12-4bf0-4d8a-9355-02362ad61019?api-version=2021-01-01 response: body: - string: '{"id":"42ea2099-dedf-48a0-9ba4-73c012501a1b","name":"42ea2099-dedf-48a0-9ba4-73c012501a1b","status":"InProgress","startTime":"2021-06-21T12:20:39.9557191Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d96aef12-4bf0-4d8a-9355-02362ad61019","name":"d96aef12-4bf0-4d8a-9355-02362ad61019","status":"InProgress","startTime":"2021-06-18T07:01:54.7653305Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8371,7 +7804,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:48 GMT + - Fri, 18 Jun 2021 07:02:02 GMT expires: - '-1' pragma: @@ -8407,15 +7840,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/42ea2099-dedf-48a0-9ba4-73c012501a1b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d96aef12-4bf0-4d8a-9355-02362ad61019?api-version=2021-01-01 response: body: - string: '{"id":"42ea2099-dedf-48a0-9ba4-73c012501a1b","name":"42ea2099-dedf-48a0-9ba4-73c012501a1b","status":"InProgress","startTime":"2021-06-21T12:20:39.9557191Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d96aef12-4bf0-4d8a-9355-02362ad61019","name":"d96aef12-4bf0-4d8a-9355-02362ad61019","status":"InProgress","startTime":"2021-06-18T07:01:54.7653305Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8424,7 +7857,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:49 GMT + - Fri, 18 Jun 2021 07:02:04 GMT expires: - '-1' pragma: @@ -8460,15 +7893,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/42ea2099-dedf-48a0-9ba4-73c012501a1b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d96aef12-4bf0-4d8a-9355-02362ad61019?api-version=2021-01-01 response: body: - string: '{"id":"42ea2099-dedf-48a0-9ba4-73c012501a1b","name":"42ea2099-dedf-48a0-9ba4-73c012501a1b","status":"InProgress","startTime":"2021-06-21T12:20:39.9557191Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d96aef12-4bf0-4d8a-9355-02362ad61019","name":"d96aef12-4bf0-4d8a-9355-02362ad61019","status":"InProgress","startTime":"2021-06-18T07:01:54.7653305Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8477,7 +7910,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:50 GMT + - Fri, 18 Jun 2021 07:02:05 GMT expires: - '-1' pragma: @@ -8513,15 +7946,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/42ea2099-dedf-48a0-9ba4-73c012501a1b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d96aef12-4bf0-4d8a-9355-02362ad61019?api-version=2021-01-01 response: body: - string: '{"id":"42ea2099-dedf-48a0-9ba4-73c012501a1b","name":"42ea2099-dedf-48a0-9ba4-73c012501a1b","status":"InProgress","startTime":"2021-06-21T12:20:39.9557191Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d96aef12-4bf0-4d8a-9355-02362ad61019","name":"d96aef12-4bf0-4d8a-9355-02362ad61019","status":"InProgress","startTime":"2021-06-18T07:01:54.7653305Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8530,7 +7963,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:52 GMT + - Fri, 18 Jun 2021 07:02:06 GMT expires: - '-1' pragma: @@ -8566,15 +7999,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/42ea2099-dedf-48a0-9ba4-73c012501a1b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d96aef12-4bf0-4d8a-9355-02362ad61019?api-version=2021-01-01 response: body: - string: '{"id":"42ea2099-dedf-48a0-9ba4-73c012501a1b","name":"42ea2099-dedf-48a0-9ba4-73c012501a1b","status":"InProgress","startTime":"2021-06-21T12:20:39.9557191Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d96aef12-4bf0-4d8a-9355-02362ad61019","name":"d96aef12-4bf0-4d8a-9355-02362ad61019","status":"InProgress","startTime":"2021-06-18T07:01:54.7653305Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8583,7 +8016,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:53 GMT + - Fri, 18 Jun 2021 07:02:07 GMT expires: - '-1' pragma: @@ -8619,15 +8052,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/42ea2099-dedf-48a0-9ba4-73c012501a1b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d96aef12-4bf0-4d8a-9355-02362ad61019?api-version=2021-01-01 response: body: - string: '{"id":"42ea2099-dedf-48a0-9ba4-73c012501a1b","name":"42ea2099-dedf-48a0-9ba4-73c012501a1b","status":"InProgress","startTime":"2021-06-21T12:20:39.9557191Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d96aef12-4bf0-4d8a-9355-02362ad61019","name":"d96aef12-4bf0-4d8a-9355-02362ad61019","status":"InProgress","startTime":"2021-06-18T07:01:54.7653305Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8636,7 +8069,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:55 GMT + - Fri, 18 Jun 2021 07:02:09 GMT expires: - '-1' pragma: @@ -8672,15 +8105,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/42ea2099-dedf-48a0-9ba4-73c012501a1b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d96aef12-4bf0-4d8a-9355-02362ad61019?api-version=2021-01-01 response: body: - string: '{"id":"42ea2099-dedf-48a0-9ba4-73c012501a1b","name":"42ea2099-dedf-48a0-9ba4-73c012501a1b","status":"InProgress","startTime":"2021-06-21T12:20:39.9557191Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d96aef12-4bf0-4d8a-9355-02362ad61019","name":"d96aef12-4bf0-4d8a-9355-02362ad61019","status":"InProgress","startTime":"2021-06-18T07:01:54.7653305Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8689,7 +8122,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:56 GMT + - Fri, 18 Jun 2021 07:02:10 GMT expires: - '-1' pragma: @@ -8725,15 +8158,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/42ea2099-dedf-48a0-9ba4-73c012501a1b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d96aef12-4bf0-4d8a-9355-02362ad61019?api-version=2021-01-01 response: body: - string: '{"id":"42ea2099-dedf-48a0-9ba4-73c012501a1b","name":"42ea2099-dedf-48a0-9ba4-73c012501a1b","status":"InProgress","startTime":"2021-06-21T12:20:39.9557191Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d96aef12-4bf0-4d8a-9355-02362ad61019","name":"d96aef12-4bf0-4d8a-9355-02362ad61019","status":"InProgress","startTime":"2021-06-18T07:01:54.7653305Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8742,7 +8175,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:57 GMT + - Fri, 18 Jun 2021 07:02:11 GMT expires: - '-1' pragma: @@ -8778,15 +8211,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/42ea2099-dedf-48a0-9ba4-73c012501a1b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d96aef12-4bf0-4d8a-9355-02362ad61019?api-version=2021-01-01 response: body: - string: '{"id":"42ea2099-dedf-48a0-9ba4-73c012501a1b","name":"42ea2099-dedf-48a0-9ba4-73c012501a1b","status":"InProgress","startTime":"2021-06-21T12:20:39.9557191Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d96aef12-4bf0-4d8a-9355-02362ad61019","name":"d96aef12-4bf0-4d8a-9355-02362ad61019","status":"InProgress","startTime":"2021-06-18T07:01:54.7653305Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8795,7 +8228,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:20:59 GMT + - Fri, 18 Jun 2021 07:02:12 GMT expires: - '-1' pragma: @@ -8831,15 +8264,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/42ea2099-dedf-48a0-9ba4-73c012501a1b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d96aef12-4bf0-4d8a-9355-02362ad61019?api-version=2021-01-01 response: body: - string: '{"id":"42ea2099-dedf-48a0-9ba4-73c012501a1b","name":"42ea2099-dedf-48a0-9ba4-73c012501a1b","status":"InProgress","startTime":"2021-06-21T12:20:39.9557191Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d96aef12-4bf0-4d8a-9355-02362ad61019","name":"d96aef12-4bf0-4d8a-9355-02362ad61019","status":"InProgress","startTime":"2021-06-18T07:01:54.7653305Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8848,7 +8281,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:00 GMT + - Fri, 18 Jun 2021 07:02:14 GMT expires: - '-1' pragma: @@ -8884,24 +8317,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/42ea2099-dedf-48a0-9ba4-73c012501a1b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d96aef12-4bf0-4d8a-9355-02362ad61019?api-version=2021-01-01 response: body: - string: '{"id":"42ea2099-dedf-48a0-9ba4-73c012501a1b","name":"42ea2099-dedf-48a0-9ba4-73c012501a1b","status":"Succeeded","startTime":"2021-06-21T12:20:39.9557191Z","endTime":"2021-06-21T12:20:39.9557191Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"7d6b3eb2-408e-46bb-a808-cefd32e4fc9d"}}' + string: '{"id":"d96aef12-4bf0-4d8a-9355-02362ad61019","name":"d96aef12-4bf0-4d8a-9355-02362ad61019","status":"InProgress","startTime":"2021-06-18T07:01:54.7653305Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '304' + - '188' content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:01 GMT + - Fri, 18 Jun 2021 07:02:15 GMT expires: - '-1' pragma: @@ -8937,16 +8370,69 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d96aef12-4bf0-4d8a-9355-02362ad61019?api-version=2021-01-01 + response: + body: + string: '{"id":"d96aef12-4bf0-4d8a-9355-02362ad61019","name":"d96aef12-4bf0-4d8a-9355-02362ad61019","status":"Succeeded","startTime":"2021-06-18T07:01:54.7653305Z","endTime":"2021-06-18T07:01:54.7653305Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"8df63744-3304-4847-94c9-a58f940cd6d5"}}' + headers: + cache-control: + - no-cache + content-length: + - '304' + content-type: + - application/json + date: + - Fri, 18 Jun 2021 07:02:16 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '132' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7d6b3eb2-408e-46bb-a808-cefd32e4fc9d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/8df63744-3304-4847-94c9-a58f940cd6d5?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7d6b3eb2-408e-46bb-a808-cefd32e4fc9d","name":"7d6b3eb2-408e-46bb-a808-cefd32e4fc9d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT21.2647888S","storageAccountName":"clitest000003","storageAccountVersion":"Storage","extendedInfo":{"tasksList":[],"propertyBag":{"File - Share Name":"clitest-item000004","Storage Account Name":"clitest000003"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"DeleteBackupData","status":"Completed","startTime":"2021-06-21T12:20:39.9557191Z","endTime":"2021-06-21T12:21:01.2205079Z","activityId":"16a7afbd-d28b-11eb-a66f-c8f750f92764"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/8df63744-3304-4847-94c9-a58f940cd6d5","name":"8df63744-3304-4847-94c9-a58f940cd6d5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT21.0116361S","storageAccountName":"clitest000003","storageAccountVersion":"Storage","extendedInfo":{"tasksList":[],"propertyBag":{"File + Share Name":"clitest-item000004","Storage Account Name":"clitest000003"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"DeleteBackupData","status":"Completed","startTime":"2021-06-18T07:01:54.7653305Z","endTime":"2021-06-18T07:02:15.7769666Z","activityId":"0f800914-d003-11eb-b6b4-00155d657312"}}' headers: cache-control: - no-cache @@ -8955,7 +8441,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:01 GMT + - Fri, 18 Jun 2021 07:02:17 GMT expires: - '-1' pragma: @@ -8992,8 +8478,8 @@ interactions: ParameterSetName: - -g -v -c --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET @@ -9009,13 +8495,14 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:02 GMT + - Fri, 18 Jun 2021 07:02:18 GMT expires: - '-1' pragma: - no-cache server: - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -9045,8 +8532,8 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET @@ -9062,7 +8549,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:02 GMT + - Fri, 18 Jun 2021 07:02:18 GMT expires: - '-1' pragma: @@ -9078,7 +8565,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '149' x-powered-by: - ASP.NET status: @@ -9100,8 +8587,8 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: DELETE @@ -9111,17 +8598,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationsStatus/fa16829f-804b-4ead-8f98-1c0522097888?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationsStatus/2aa1b1aa-3c0d-453b-8e7e-a309233922c5?api-version=2019-05-13-preview cache-control: - no-cache content-length: - '0' date: - - Mon, 21 Jun 2021 12:21:02 GMT + - Fri, 18 Jun 2021 07:02:19 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/fa16829f-804b-4ead-8f98-1c0522097888?fabricName=Azure?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/2aa1b1aa-3c0d-453b-8e7e-a309233922c5?fabricName=Azure?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -9129,7 +8616,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14999' x-powered-by: - ASP.NET status: @@ -9146,21 +8633,23 @@ interactions: - backup container unregister Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/fa16829f-804b-4ead-8f98-1c0522097888?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/2aa1b1aa-3c0d-453b-8e7e-a309233922c5?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/fa16829f-804b-4ead-8f98-1c0522097888?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/2aa1b1aa-3c0d-453b-8e7e-a309233922c5?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9168,15 +8657,13 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:03 GMT + - Fri, 18 Jun 2021 07:02:19 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/fa16829f-804b-4ead-8f98-1c0522097888?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/2aa1b1aa-3c0d-453b-8e7e-a309233922c5?api-version=2021-01-01 pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: @@ -9202,18 +8689,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/fa16829f-804b-4ead-8f98-1c0522097888?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/2aa1b1aa-3c0d-453b-8e7e-a309233922c5?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/fa16829f-804b-4ead-8f98-1c0522097888?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/2aa1b1aa-3c0d-453b-8e7e-a309233922c5?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9221,11 +8708,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:04 GMT + - Fri, 18 Jun 2021 07:02:20 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/fa16829f-804b-4ead-8f98-1c0522097888?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/2aa1b1aa-3c0d-453b-8e7e-a309233922c5?api-version=2021-01-01 pragma: - no-cache server: @@ -9255,18 +8742,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/fa16829f-804b-4ead-8f98-1c0522097888?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/2aa1b1aa-3c0d-453b-8e7e-a309233922c5?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/fa16829f-804b-4ead-8f98-1c0522097888?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/2aa1b1aa-3c0d-453b-8e7e-a309233922c5?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9274,11 +8761,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:06 GMT + - Fri, 18 Jun 2021 07:02:22 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/fa16829f-804b-4ead-8f98-1c0522097888?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/2aa1b1aa-3c0d-453b-8e7e-a309233922c5?api-version=2021-01-01 pragma: - no-cache server: @@ -9308,18 +8795,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/fa16829f-804b-4ead-8f98-1c0522097888?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/2aa1b1aa-3c0d-453b-8e7e-a309233922c5?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/fa16829f-804b-4ead-8f98-1c0522097888?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/2aa1b1aa-3c0d-453b-8e7e-a309233922c5?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9327,11 +8814,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:07 GMT + - Fri, 18 Jun 2021 07:02:23 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/fa16829f-804b-4ead-8f98-1c0522097888?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/2aa1b1aa-3c0d-453b-8e7e-a309233922c5?api-version=2021-01-01 pragma: - no-cache server: @@ -9361,18 +8848,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/fa16829f-804b-4ead-8f98-1c0522097888?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/2aa1b1aa-3c0d-453b-8e7e-a309233922c5?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/fa16829f-804b-4ead-8f98-1c0522097888?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/2aa1b1aa-3c0d-453b-8e7e-a309233922c5?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9380,11 +8867,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:08 GMT + - Fri, 18 Jun 2021 07:02:24 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/fa16829f-804b-4ead-8f98-1c0522097888?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/2aa1b1aa-3c0d-453b-8e7e-a309233922c5?api-version=2021-01-01 pragma: - no-cache server: @@ -9414,18 +8901,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/fa16829f-804b-4ead-8f98-1c0522097888?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/2aa1b1aa-3c0d-453b-8e7e-a309233922c5?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/fa16829f-804b-4ead-8f98-1c0522097888?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/2aa1b1aa-3c0d-453b-8e7e-a309233922c5?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9433,11 +8920,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:09 GMT + - Fri, 18 Jun 2021 07:02:25 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/fa16829f-804b-4ead-8f98-1c0522097888?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/2aa1b1aa-3c0d-453b-8e7e-a309233922c5?api-version=2021-01-01 pragma: - no-cache server: @@ -9467,18 +8954,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/fa16829f-804b-4ead-8f98-1c0522097888?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/2aa1b1aa-3c0d-453b-8e7e-a309233922c5?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/fa16829f-804b-4ead-8f98-1c0522097888?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/2aa1b1aa-3c0d-453b-8e7e-a309233922c5?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9486,11 +8973,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:11 GMT + - Fri, 18 Jun 2021 07:02:26 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/fa16829f-804b-4ead-8f98-1c0522097888?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/2aa1b1aa-3c0d-453b-8e7e-a309233922c5?api-version=2021-01-01 pragma: - no-cache server: @@ -9520,18 +9007,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/fa16829f-804b-4ead-8f98-1c0522097888?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/2aa1b1aa-3c0d-453b-8e7e-a309233922c5?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/fa16829f-804b-4ead-8f98-1c0522097888?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/2aa1b1aa-3c0d-453b-8e7e-a309233922c5?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9539,11 +9026,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:12 GMT + - Fri, 18 Jun 2021 07:02:28 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/fa16829f-804b-4ead-8f98-1c0522097888?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/2aa1b1aa-3c0d-453b-8e7e-a309233922c5?api-version=2021-01-01 pragma: - no-cache server: @@ -9573,18 +9060,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/fa16829f-804b-4ead-8f98-1c0522097888?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/2aa1b1aa-3c0d-453b-8e7e-a309233922c5?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/fa16829f-804b-4ead-8f98-1c0522097888?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/2aa1b1aa-3c0d-453b-8e7e-a309233922c5?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9592,11 +9079,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:13 GMT + - Fri, 18 Jun 2021 07:02:29 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/fa16829f-804b-4ead-8f98-1c0522097888?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/2aa1b1aa-3c0d-453b-8e7e-a309233922c5?api-version=2021-01-01 pragma: - no-cache server: @@ -9626,18 +9113,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/fa16829f-804b-4ead-8f98-1c0522097888?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/2aa1b1aa-3c0d-453b-8e7e-a309233922c5?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/fa16829f-804b-4ead-8f98-1c0522097888?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/2aa1b1aa-3c0d-453b-8e7e-a309233922c5?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9645,11 +9132,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:15 GMT + - Fri, 18 Jun 2021 07:02:30 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/fa16829f-804b-4ead-8f98-1c0522097888?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/2aa1b1aa-3c0d-453b-8e7e-a309233922c5?api-version=2021-01-01 pragma: - no-cache server: @@ -9679,18 +9166,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/fa16829f-804b-4ead-8f98-1c0522097888?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/2aa1b1aa-3c0d-453b-8e7e-a309233922c5?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/fa16829f-804b-4ead-8f98-1c0522097888?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/2aa1b1aa-3c0d-453b-8e7e-a309233922c5?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9698,11 +9185,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:16 GMT + - Fri, 18 Jun 2021 07:02:31 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/fa16829f-804b-4ead-8f98-1c0522097888?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/2aa1b1aa-3c0d-453b-8e7e-a309233922c5?api-version=2021-01-01 pragma: - no-cache server: @@ -9732,18 +9219,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/fa16829f-804b-4ead-8f98-1c0522097888?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/2aa1b1aa-3c0d-453b-8e7e-a309233922c5?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/fa16829f-804b-4ead-8f98-1c0522097888?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/2aa1b1aa-3c0d-453b-8e7e-a309233922c5?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9751,11 +9238,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:17 GMT + - Fri, 18 Jun 2021 07:02:33 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/fa16829f-804b-4ead-8f98-1c0522097888?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/2aa1b1aa-3c0d-453b-8e7e-a309233922c5?api-version=2021-01-01 pragma: - no-cache server: @@ -9785,18 +9272,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/fa16829f-804b-4ead-8f98-1c0522097888?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/2aa1b1aa-3c0d-453b-8e7e-a309233922c5?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/fa16829f-804b-4ead-8f98-1c0522097888?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/2aa1b1aa-3c0d-453b-8e7e-a309233922c5?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9804,11 +9291,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:18 GMT + - Fri, 18 Jun 2021 07:02:34 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/fa16829f-804b-4ead-8f98-1c0522097888?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/2aa1b1aa-3c0d-453b-8e7e-a309233922c5?api-version=2021-01-01 pragma: - no-cache server: @@ -9838,18 +9325,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/fa16829f-804b-4ead-8f98-1c0522097888?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/2aa1b1aa-3c0d-453b-8e7e-a309233922c5?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/fa16829f-804b-4ead-8f98-1c0522097888?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/2aa1b1aa-3c0d-453b-8e7e-a309233922c5?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9857,11 +9344,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:19 GMT + - Fri, 18 Jun 2021 07:02:35 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/fa16829f-804b-4ead-8f98-1c0522097888?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/2aa1b1aa-3c0d-453b-8e7e-a309233922c5?api-version=2021-01-01 pragma: - no-cache server: @@ -9891,18 +9378,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/fa16829f-804b-4ead-8f98-1c0522097888?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/2aa1b1aa-3c0d-453b-8e7e-a309233922c5?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/fa16829f-804b-4ead-8f98-1c0522097888?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/2aa1b1aa-3c0d-453b-8e7e-a309233922c5?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9910,11 +9397,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:21 GMT + - Fri, 18 Jun 2021 07:02:36 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/fa16829f-804b-4ead-8f98-1c0522097888?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/2aa1b1aa-3c0d-453b-8e7e-a309233922c5?api-version=2021-01-01 pragma: - no-cache server: @@ -9944,18 +9431,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/fa16829f-804b-4ead-8f98-1c0522097888?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/2aa1b1aa-3c0d-453b-8e7e-a309233922c5?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/fa16829f-804b-4ead-8f98-1c0522097888?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/2aa1b1aa-3c0d-453b-8e7e-a309233922c5?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9963,11 +9450,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:22 GMT + - Fri, 18 Jun 2021 07:02:37 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/fa16829f-804b-4ead-8f98-1c0522097888?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/2aa1b1aa-3c0d-453b-8e7e-a309233922c5?api-version=2021-01-01 pragma: - no-cache server: @@ -9997,18 +9484,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/fa16829f-804b-4ead-8f98-1c0522097888?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/2aa1b1aa-3c0d-453b-8e7e-a309233922c5?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/fa16829f-804b-4ead-8f98-1c0522097888?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/2aa1b1aa-3c0d-453b-8e7e-a309233922c5?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -10016,11 +9503,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:23 GMT + - Fri, 18 Jun 2021 07:02:39 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/fa16829f-804b-4ead-8f98-1c0522097888?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/2aa1b1aa-3c0d-453b-8e7e-a309233922c5?api-version=2021-01-01 pragma: - no-cache server: @@ -10050,18 +9537,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/fa16829f-804b-4ead-8f98-1c0522097888?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/2aa1b1aa-3c0d-453b-8e7e-a309233922c5?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/fa16829f-804b-4ead-8f98-1c0522097888?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/2aa1b1aa-3c0d-453b-8e7e-a309233922c5?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -10069,11 +9556,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:21:24 GMT + - Fri, 18 Jun 2021 07:02:40 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/fa16829f-804b-4ead-8f98-1c0522097888?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/2aa1b1aa-3c0d-453b-8e7e-a309233922c5?api-version=2021-01-01 pragma: - no-cache server: @@ -10103,12 +9590,65 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/2aa1b1aa-3c0d-453b-8e7e-a309233922c5?api-version=2021-01-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/2aa1b1aa-3c0d-453b-8e7e-a309233922c5?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Fri, 18 Jun 2021 07:02:41 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/2aa1b1aa-3c0d-453b-8e7e-a309233922c5?api-version=2021-01-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '131' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -g -v -c --yes --backup-management-type + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/fa16829f-804b-4ead-8f98-1c0522097888?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/2aa1b1aa-3c0d-453b-8e7e-a309233922c5?api-version=2021-01-01 response: body: string: '' @@ -10118,7 +9658,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 12:21:25 GMT + - Fri, 18 Jun 2021 07:02:42 GMT expires: - '-1' pragma: @@ -10128,7 +9668,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '131' + - '130' x-powered-by: - ASP.NET status: @@ -10148,8 +9688,8 @@ interactions: ParameterSetName: - --backup-management-type -v -g --query User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET @@ -10165,7 +9705,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 12:23:06 GMT + - Fri, 18 Jun 2021 07:04:24 GMT expires: - '-1' pragma: @@ -10203,7 +9743,7 @@ interactions: ParameterSetName: - -n -g --yes User-Agent: - - AZURECLI/2.25.0 azsdk-python-mgmt-recoveryservices/1.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.24.0 azsdk-python-mgmt-recoveryservices/1.0.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2016-06-01 response: @@ -10215,7 +9755,7 @@ interactions: content-length: - '0' date: - - Mon, 21 Jun 2021 12:23:09 GMT + - Fri, 18 Jun 2021 07:04:28 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_afs_backup_restore.yaml b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_afs_backup_restore.yaml index 089a61d083a..c595fb07244 100644 --- a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_afs_backup_restore.yaml +++ b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_afs_backup_restore.yaml @@ -12570,4 +12570,4 @@ interactions: status: code: 200 message: OK -version: 1 +version: 1 \ No newline at end of file diff --git a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_afs_backup_rp.yaml b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_afs_backup_rp.yaml index 3e5962f0fd1..82b85abcd19 100644 --- a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_afs_backup_rp.yaml +++ b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_afs_backup_rp.yaml @@ -9939,4 +9939,4 @@ interactions: status: code: 200 message: OK -version: 1 +version: 1 \ No newline at end of file diff --git a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_afs_backup_scenario.yaml b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_afs_backup_scenario.yaml index 1d8ba470658..63557bb1a21 100644 --- a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_afs_backup_scenario.yaml +++ b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_afs_backup_scenario.yaml @@ -10036,4 +10036,4 @@ interactions: status: code: 200 message: OK -version: 1 +version: 1 \ No newline at end of file diff --git a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_afs_unregister_container.yaml b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_afs_unregister_container.yaml index 61247e08fcd..90a959da6f1 100644 --- a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_afs_unregister_container.yaml +++ b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_afs_unregister_container.yaml @@ -9147,4 +9147,4 @@ interactions: status: code: 200 message: OK -version: 1 +version: 1 \ No newline at end of file diff --git a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_archive.yaml b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_archive.yaml new file mode 100644 index 00000000000..a8cd3a4c49a --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_archive.yaml @@ -0,0 +1,16260 @@ +interactions: +- request: + body: '{"location": "southeastasia", "properties": {}, "sku": {"name": "Standard"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup vault create + Connection: + - keep-alive + Content-Length: + - '76' + Content-Type: + - application/json + ParameterSetName: + - -n -g --location + User-Agent: + - AZURECLI/2.24.0 azsdk-python-mgmt-recoveryservices/1.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2016-06-01 + response: + body: + string: '{"location":"southeastasia","name":"clitest-vault000002","etag":"W/\"datetime''2021-06-23T11%3A57%3A13.2329271Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' + headers: + cache-control: + - no-cache + content-length: + - '539' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 11:57:13 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '209' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup vault backup-properties set + Connection: + - keep-alive + ParameterSetName: + - -n -g --soft-delete-feature-state + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupconfig/vaultconfig?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupconfig/vaultconfig","name":"vaultconfig","type":"Microsoft.RecoveryServices/vaults/backupconfig","properties":{"enhancedSecurityState":"Enabled","softDeleteFeatureState":"Enabled","isSoftDeleteFeatureStateEditable":true}}' + headers: + cache-control: + - no-cache + content-length: + - '446' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 11:57:13 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"properties": {"enhancedSecurityState": "Enabled", "softDeleteFeatureState": + "Disabled"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup vault backup-properties set + Connection: + - keep-alive + Content-Length: + - '90' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n -g --soft-delete-feature-state + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupconfig/vaultconfig?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupconfig/vaultconfig","name":"vaultconfig","type":"Microsoft.RecoveryServices/vaults/backupconfig","properties":{"enhancedSecurityState":"Enabled","softDeleteFeatureState":"Disabled","isSoftDeleteFeatureStateEditable":true}}' + headers: + cache-control: + - no-cache + content-length: + - '447' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 11:57:14 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - -n -g --image --admin-username --admin-password --tags --nsg-rule + User-Agent: + - AZURECLI/2.24.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"southeastasia","tags":{"product":"azurecli","cause":"automation","date":"2021-06-23T11:57:05Z"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '435' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 23 Jun 2021 11:57:15 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.25.1 + method: GET + uri: https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/arm-compute/quickstart-templates/aliases.json + response: + body: + string: "{\n \"$schema\": \"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json\",\n + \ \"contentVersion\": \"1.0.0.0\",\n \"parameters\": {},\n \"variables\": + {},\n \"resources\": [],\n \"outputs\": {\n \"aliases\": {\n \"type\": + \"object\",\n \"value\": {\n \"Linux\": {\n \"CentOS\": + {\n \"publisher\": \"OpenLogic\",\n \"offer\": \"CentOS\",\n + \ \"sku\": \"7.5\",\n \"version\": \"latest\"\n },\n + \ \"CoreOS\": {\n \"publisher\": \"CoreOS\",\n \"offer\": + \"CoreOS\",\n \"sku\": \"Stable\",\n \"version\": \"latest\"\n + \ },\n \"Debian\": {\n \"publisher\": \"Debian\",\n + \ \"offer\": \"debian-10\",\n \"sku\": \"10\",\n \"version\": + \"latest\"\n },\n \"openSUSE-Leap\": {\n \"publisher\": + \"SUSE\",\n \"offer\": \"openSUSE-Leap\",\n \"sku\": + \"42.3\",\n \"version\": \"latest\"\n },\n \"RHEL\": + {\n \"publisher\": \"RedHat\",\n \"offer\": \"RHEL\",\n + \ \"sku\": \"7-LVM\",\n \"version\": \"latest\"\n },\n + \ \"SLES\": {\n \"publisher\": \"SUSE\",\n \"offer\": + \"SLES\",\n \"sku\": \"15\",\n \"version\": \"latest\"\n + \ },\n \"UbuntuLTS\": {\n \"publisher\": \"Canonical\",\n + \ \"offer\": \"UbuntuServer\",\n \"sku\": \"18.04-LTS\",\n + \ \"version\": \"latest\"\n }\n },\n \"Windows\": + {\n \"Win2019Datacenter\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n + \ \"offer\": \"WindowsServer\",\n \"sku\": \"2019-Datacenter\",\n + \ \"version\": \"latest\"\n },\n \"Win2016Datacenter\": + {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\": + \"WindowsServer\",\n \"sku\": \"2016-Datacenter\",\n \"version\": + \"latest\"\n },\n \"Win2012R2Datacenter\": {\n \"publisher\": + \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": + \"2012-R2-Datacenter\",\n \"version\": \"latest\"\n },\n + \ \"Win2012Datacenter\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n + \ \"offer\": \"WindowsServer\",\n \"sku\": \"2012-Datacenter\",\n + \ \"version\": \"latest\"\n },\n \"Win2008R2SP1\": + {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\": + \"WindowsServer\",\n \"sku\": \"2008-R2-SP1\",\n \"version\": + \"latest\"\n }\n }\n }\n }\n }\n}\n" + headers: + accept-ranges: + - bytes + access-control-allow-origin: + - '*' + cache-control: + - max-age=300 + connection: + - keep-alive + content-length: + - '2501' + content-security-policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 23 Jun 2021 11:57:16 GMT + etag: + - W/"540044b4084c3c314537f1baa1770f248628b2bc9ba0328f1004c33862e049da" + expires: + - Wed, 23 Jun 2021 12:02:16 GMT + source-age: + - '70' + strict-transport-security: + - max-age=31536000 + vary: + - Authorization,Accept-Encoding + via: + - 1.1 varnish + x-cache: + - HIT + x-cache-hits: + - '1' + x-content-type-options: + - nosniff + x-fastly-request-id: + - 60af8bba926694964999b982103e1aa8cbf7662d + x-frame-options: + - deny + x-github-request-id: + - AF40:0CFC:5D485:6F69E:60D23687 + x-served-by: + - cache-qpg1236-QPG + x-timer: + - S1624449437.513646,VS0,VE1 + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json, text/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - -n -g --image --admin-username --admin-password --tags --nsg-rule + User-Agent: + - AZURECLI/2.24.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks?api-version=2018-01-01 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 23 Jun 2021 11:57:16 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", "parameters": {"adminPassword": {"type": "securestring", + "metadata": {"description": "Secure adminPassword"}}}, "variables": {}, "resources": + [{"name": "clitest-vm000003VNET", "type": "Microsoft.Network/virtualNetworks", + "location": "southeastasia", "apiVersion": "2015-06-15", "dependsOn": [], "tags": + {"MabUsed": "Yes", "Owner": "sisi", "Purpose": "CLITest", "DeleteBy": "12-2099", + "AutoShutdown": "No"}, "properties": {"addressSpace": {"addressPrefixes": ["10.0.0.0/16"]}, + "subnets": [{"name": "clitest-vm000003Subnet", "properties": {"addressPrefix": + "10.0.0.0/24"}}]}}, {"type": "Microsoft.Network/networkSecurityGroups", "name": + "clitest-vm000003NSG", "apiVersion": "2015-06-15", "location": "southeastasia", + "tags": {"MabUsed": "Yes", "Owner": "sisi", "Purpose": "CLITest", "DeleteBy": + "12-2099", "AutoShutdown": "No"}, "dependsOn": []}, {"apiVersion": "2018-01-01", + "type": "Microsoft.Network/publicIPAddresses", "name": "clitest-vm000003PublicIP", + "location": "southeastasia", "tags": {"MabUsed": "Yes", "Owner": "sisi", "Purpose": + "CLITest", "DeleteBy": "12-2099", "AutoShutdown": "No"}, "dependsOn": [], "properties": + {"publicIPAllocationMethod": null}}, {"apiVersion": "2015-06-15", "type": "Microsoft.Network/networkInterfaces", + "name": "clitest-vm000003VMNic", "location": "southeastasia", "tags": {"MabUsed": + "Yes", "Owner": "sisi", "Purpose": "CLITest", "DeleteBy": "12-2099", "AutoShutdown": + "No"}, "dependsOn": ["Microsoft.Network/virtualNetworks/clitest-vm000003VNET", + "Microsoft.Network/networkSecurityGroups/clitest-vm000003NSG", "Microsoft.Network/publicIpAddresses/clitest-vm000003PublicIP"], + "properties": {"ipConfigurations": [{"name": "ipconfigclitest-vm000003", "properties": + {"privateIPAllocationMethod": "Dynamic", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/clitest-vm000003VNET/subnets/clitest-vm000003Subnet"}, + "publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/clitest-vm000003PublicIP"}}}], + "networkSecurityGroup": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/clitest-vm000003NSG"}}}, + {"apiVersion": "2021-03-01", "type": "Microsoft.Compute/virtualMachines", "name": + "clitest-vm000003", "location": "southeastasia", "tags": {"MabUsed": "Yes", + "Owner": "sisi", "Purpose": "CLITest", "DeleteBy": "12-2099", "AutoShutdown": + "No"}, "dependsOn": ["Microsoft.Network/networkInterfaces/clitest-vm000003VMNic"], + "properties": {"hardwareProfile": {"vmSize": "Standard_DS1_v2"}, "networkProfile": + {"networkInterfaces": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/clitest-vm000003VMNic", + "properties": {"deleteOption": null}}]}, "storageProfile": {"osDisk": {"createOption": + "fromImage", "name": null, "caching": "ReadWrite", "managedDisk": {"storageAccountType": + null}}, "imageReference": {"publisher": "MicrosoftWindowsServer", "offer": "WindowsServer", + "sku": "2012-R2-Datacenter", "version": "latest"}}, "osProfile": {"computerName": + "clitest-vm000003", "adminUsername": "clitest-vm000003", "adminPassword": "[parameters(''adminPassword'')]"}}}], + "outputs": {}}, "parameters": {"adminPassword": {"value": "%j^VYw9Q3Z@Cu$*h"}}, + "mode": "incremental"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + Content-Length: + - '3845' + Content-Type: + - application/json + ParameterSetName: + - -n -g --image --admin-username --admin-password --tags --nsg-rule + User-Agent: + - AZURECLI/2.24.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_WBpzpGekWnMheIDzgrsA44H0mBUZjE0b","name":"vm_deploy_WBpzpGekWnMheIDzgrsA44H0mBUZjE0b","type":"Microsoft.Resources/deployments","properties":{"templateHash":"6942364091035901552","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-06-23T11:57:18.7956081Z","duration":"PT1.2742644S","correlationId":"62643115-4c49-476e-be14-590d526b0a3e","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["southeastasia"]},{"resourceType":"networkSecurityGroups","locations":["southeastasia"]},{"resourceType":"publicIPAddresses","locations":["southeastasia"]},{"resourceType":"networkInterfaces","locations":["southeastasia"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["southeastasia"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/clitest-vm000003VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"clitest-vm000003VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/clitest-vm000003NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"clitest-vm000003NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/clitest-vm000003PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"clitest-vm000003PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/clitest-vm000003VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"clitest-vm000003VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/clitest-vm000003VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"clitest-vm000003VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"clitest-vm000003"}]}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_WBpzpGekWnMheIDzgrsA44H0mBUZjE0b/operationStatuses/08585771574479562948?api-version=2020-10-01 + cache-control: + - no-cache + content-length: + - '2960' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 23 Jun 2021 11:57:18 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - -n -g --image --admin-username --admin-password --tags --nsg-rule + User-Agent: + - AZURECLI/2.24.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585771574479562948?api-version=2020-10-01 + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 23 Jun 2021 11:57:48 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - -n -g --image --admin-username --admin-password --tags --nsg-rule + User-Agent: + - AZURECLI/2.24.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585771574479562948?api-version=2020-10-01 + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 23 Jun 2021 11:58:19 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - -n -g --image --admin-username --admin-password --tags --nsg-rule + User-Agent: + - AZURECLI/2.24.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585771574479562948?api-version=2020-10-01 + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-cache + content-length: + - '22' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 23 Jun 2021 11:58:48 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - -n -g --image --admin-username --admin-password --tags --nsg-rule + User-Agent: + - AZURECLI/2.24.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_WBpzpGekWnMheIDzgrsA44H0mBUZjE0b","name":"vm_deploy_WBpzpGekWnMheIDzgrsA44H0mBUZjE0b","type":"Microsoft.Resources/deployments","properties":{"templateHash":"6942364091035901552","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-06-23T11:58:37.5192723Z","duration":"PT1M19.9979286S","correlationId":"62643115-4c49-476e-be14-590d526b0a3e","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["southeastasia"]},{"resourceType":"networkSecurityGroups","locations":["southeastasia"]},{"resourceType":"publicIPAddresses","locations":["southeastasia"]},{"resourceType":"networkInterfaces","locations":["southeastasia"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["southeastasia"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/clitest-vm000003VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"clitest-vm000003VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/clitest-vm000003NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"clitest-vm000003NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/clitest-vm000003PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"clitest-vm000003PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/clitest-vm000003VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"clitest-vm000003VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/clitest-vm000003VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"clitest-vm000003VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"clitest-vm000003"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/clitest-vm000003VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/clitest-vm000003NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/clitest-vm000003PublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/clitest-vm000003VNET"}]}}' + headers: + cache-control: + - no-cache + content-length: + - '4087' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 23 Jun 2021 11:58:49 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - -n -g --image --admin-username --admin-password --tags --nsg-rule + User-Agent: + - AZURECLI/2.24.0 azsdk-python-azure-mgmt-compute/21.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003?$expand=instanceView&api-version=2021-03-01 + response: + body: + string: "{\r\n \"name\": \"clitest-vm000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003\",\r\n + \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n + \ \"tags\": {\r\n \"MabUsed\": \"Yes\",\r\n \"Owner\": \"sisi\",\r\n + \ \"Purpose\": \"CLITest\",\r\n \"DeleteBy\": \"12-2099\",\r\n \"AutoShutdown\": + \"No\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"01bc7508-e31c-47ca-94f1-a0f6dcf6eeb0\",\r\n + \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n + \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": + \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": + \"2012-R2-Datacenter\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": + \"9600.20045.2106071005\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Windows\",\r\n \"name\": \"clitest-vm000003_OsDisk_1_d6f236ea9e2b4a939e0937b139c9dfa2\",\r\n + \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n + \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/clitest-vm000003_OsDisk_1_d6f236ea9e2b4a939e0937b139c9dfa2\"\r\n + \ },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": + []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"clitest-vm000003\",\r\n + \ \"adminUsername\": \"clitest-vm000003\",\r\n \"windowsConfiguration\": + {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": + true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\",\r\n + \ \"assessmentMode\": \"ImageDefault\"\r\n }\r\n },\r\n + \ \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": + true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/clitest-vm000003VMNic\"}]},\r\n + \ \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"vmAgent\": + {\r\n \"vmAgentVersion\": \"Unknown\",\r\n \"statuses\": [\r\n + \ {\r\n \"code\": \"ProvisioningState/Unavailable\",\r\n + \ \"level\": \"Warning\",\r\n \"displayStatus\": \"Not + Ready\",\r\n \"message\": \"VM status blob is found but not yet + populated.\",\r\n \"time\": \"2021-06-23T11:58:50+00:00\"\r\n }\r\n + \ ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": + \"clitest-vm000003_OsDisk_1_d6f236ea9e2b4a939e0937b139c9dfa2\",\r\n \"statuses\": + [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n + \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning + succeeded\",\r\n \"time\": \"2021-06-23T11:57:31.5641355+00:00\"\r\n + \ }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": + \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n + \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning + succeeded\",\r\n \"time\": \"2021-06-23T11:58:36.5960792+00:00\"\r\n + \ },\r\n {\r\n \"code\": \"PowerState/running\",\r\n + \ \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n + \ }\r\n ]\r\n }\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3473' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 23 Jun 2021 11:58:50 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/LowCostGet3Min;3997,Microsoft.Compute/LowCostGet30Min;31969 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json, text/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - -n -g --image --admin-username --admin-password --tags --nsg-rule + User-Agent: + - AZURECLI/2.24.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/clitest-vm000003VMNic?api-version=2018-01-01 + response: + body: + string: "{\r\n \"name\": \"clitest-vm000003VMNic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/clitest-vm000003VMNic\",\r\n + \ \"etag\": \"W/\\\"1b7f279f-ea1d-466e-97e6-c96841683283\\\"\",\r\n \"location\": + \"southeastasia\",\r\n \"tags\": {\r\n \"MabUsed\": \"Yes\",\r\n \"Owner\": + \"sisi\",\r\n \"Purpose\": \"CLITest\",\r\n \"DeleteBy\": \"12-2099\",\r\n + \ \"AutoShutdown\": \"No\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"resourceGuid\": \"099b0cb3-19c0-4a8b-ae48-9c80a86654c1\",\r\n + \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfigclitest-vm000003\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/clitest-vm000003VMNic/ipConfigurations/ipconfigclitest-vm000003\",\r\n + \ \"etag\": \"W/\\\"1b7f279f-ea1d-466e-97e6-c96841683283\\\"\",\r\n + \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": + \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/clitest-vm000003PublicIP\"\r\n + \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/clitest-vm000003VNET/subnets/clitest-vm000003Subnet\"\r\n + \ },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": + \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": + [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": + \"xjwa1ptwdryufk3pkftoxpgora.ix.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": + \"00-0D-3A-C8-7A-F8\",\r\n \"enableAcceleratedNetworking\": false,\r\n + \ \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/clitest-vm000003NSG\"\r\n + \ },\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003\"\r\n + \ }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2825' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 23 Jun 2021 11:58:50 GMT + etag: + - W/"1b7f279f-ea1d-466e-97e6-c96841683283" + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 1b65b654-05a0-4b0e-8739-2c5a2391073d + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json, text/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - -n -g --image --admin-username --admin-password --tags --nsg-rule + User-Agent: + - AZURECLI/2.24.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/clitest-vm000003PublicIP?api-version=2018-01-01 + response: + body: + string: "{\r\n \"name\": \"clitest-vm000003PublicIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/clitest-vm000003PublicIP\",\r\n + \ \"etag\": \"W/\\\"d8edaa93-899a-423c-a8af-383b2fc16955\\\"\",\r\n \"location\": + \"southeastasia\",\r\n \"tags\": {\r\n \"MabUsed\": \"Yes\",\r\n \"Owner\": + \"sisi\",\r\n \"Purpose\": \"CLITest\",\r\n \"DeleteBy\": \"12-2099\",\r\n + \ \"AutoShutdown\": \"No\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"resourceGuid\": \"b82e666b-89f5-46b0-94fe-1aa9bc7da197\",\r\n + \ \"ipAddress\": \"137.116.145.40\",\r\n \"publicIPAddressVersion\": + \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": + 4,\r\n \"ipTags\": [],\r\n \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/clitest-vm000003VMNic/ipConfigurations/ipconfigclitest-vm000003\"\r\n + \ }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n + \ \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1183' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 23 Jun 2021 11:58:50 GMT + etag: + - W/"d8edaa93-899a-423c-a8af-383b2fc16955" + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 78ec567f-9af5-492c-85d8-0c89afa56838 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-vm + Connection: + - keep-alive + ParameterSetName: + - -g -v --vm -p + User-Agent: + - AZURECLI/2.24.0 azsdk-python-azure-mgmt-compute/21.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003?api-version=2021-03-01 + response: + body: + string: "{\r\n \"name\": \"clitest-vm000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003\",\r\n + \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n + \ \"tags\": {\r\n \"MabUsed\": \"Yes\",\r\n \"Owner\": \"sisi\",\r\n + \ \"Purpose\": \"CLITest\",\r\n \"DeleteBy\": \"12-2099\",\r\n \"AutoShutdown\": + \"No\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"01bc7508-e31c-47ca-94f1-a0f6dcf6eeb0\",\r\n + \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n + \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": + \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": + \"2012-R2-Datacenter\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": + \"9600.20045.2106071005\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Windows\",\r\n \"name\": \"clitest-vm000003_OsDisk_1_d6f236ea9e2b4a939e0937b139c9dfa2\",\r\n + \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n + \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/clitest-vm000003_OsDisk_1_d6f236ea9e2b4a939e0937b139c9dfa2\"\r\n + \ },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": + []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"clitest-vm000003\",\r\n + \ \"adminUsername\": \"clitest-vm000003\",\r\n \"windowsConfiguration\": + {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": + true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\",\r\n + \ \"assessmentMode\": \"ImageDefault\"\r\n }\r\n },\r\n + \ \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": + true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/clitest-vm000003VMNic\"}]},\r\n + \ \"provisioningState\": \"Succeeded\"\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2255' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 23 Jun 2021 11:58:50 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/LowCostGet3Min;3996,Microsoft.Compute/LowCostGet30Min;31968 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-vm + Connection: + - keep-alive + ParameterSetName: + - -g -v --vm -p + User-Agent: + - AZURECLI/2.24.0 azsdk-python-mgmt-recoveryservices/1.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2016-06-01 + response: + body: + string: '{"location":"southeastasia","name":"clitest-vault000002","etag":"W/\"datetime''2021-06-23T11%3A57%3A13.2329271Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' + headers: + cache-control: + - no-cache + content-length: + - '539' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 11:58:51 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-vm + Connection: + - keep-alive + ParameterSetName: + - -g -v --vm -p + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","name":"DefaultPolicy","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureIaasVM","instantRPDetails":{},"schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-06-23T21:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-06-23T21:30:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":0}}' + headers: + cache-control: + - no-cache + content-length: + - '828' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 11:58:52 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-vm + Connection: + - keep-alive + ParameterSetName: + - -g -v --vm -p + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;akneema;akneema-hana-vm/protectableItems/vm;iaasvmcontainerv2;akneema;akneema-hana-vm","name":"iaasvmcontainerv2;akneema;akneema-hana-vm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.Compute/virtualMachines/akneema-hana-vm","virtualMachineVersion":"Compute","resourceGroup":"akneema","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"akneema-hana-vm","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;containerautoprotection;shrja-2014/protectableItems/vm;iaasvmcontainerv2;containerautoprotection;shrja-2014","name":"iaasvmcontainerv2;containerautoprotection;shrja-2014","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ContainerAutoProtection/providers/Microsoft.Compute/virtualMachines/shrja-2014","virtualMachineVersion":"Compute","resourceGroup":"ContainerAutoProtection","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"shrja-2014","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;containerautoprotection;shrja-2019/protectableItems/vm;iaasvmcontainerv2;containerautoprotection;shrja-2019","name":"iaasvmcontainerv2;containerautoprotection;shrja-2019","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ContainerAutoProtection/providers/Microsoft.Compute/virtualMachines/shrja-2019","virtualMachineVersion":"Compute","resourceGroup":"ContainerAutoProtection","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"shrja-2019","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;containerautoprotection;shrja2012r2/protectableItems/vm;iaasvmcontainerv2;containerautoprotection;shrja2012r2","name":"iaasvmcontainerv2;containerautoprotection;shrja2012r2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ContainerAutoProtection/providers/Microsoft.Compute/virtualMachines/shrja2012R2","virtualMachineVersion":"Compute","resourceGroup":"ContainerAutoProtection","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"shrja2012R2","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestwlrg1bca8;pstestwlvm1bca8/protectableItems/vm;iaasvmcontainerv2;pstestwlrg1bca8;pstestwlvm1bca8","name":"iaasvmcontainerv2;pstestwlrg1bca8;pstestwlvm1bca8","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestwlvm1bca8","virtualMachineVersion":"Compute","resourceGroup":"pstestwlRG1bca8","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"pstestwlvm1bca8","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;shrja2008_group;shrja2008/protectableItems/vm;iaasvmcontainerv2;shrja2008_group;shrja2008","name":"iaasvmcontainerv2;shrja2008_group;shrja2008","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shrja2008_group/providers/Microsoft.Compute/virtualMachines/shrja2008","virtualMachineVersion":"Compute","resourceGroup":"shrja2008_group","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"shrja2008","protectionState":"NotProtected"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '5751' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 11:58:53 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-vm + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -v --vm -p + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/refreshContainers?api-version=2021-01-01 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationsStatus/7f01d74e-14e7-47c8-940d-2ff9ea9f77c3?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '0' + date: + - Wed, 23 Jun 2021 11:58:53 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/7f01d74e-14e7-47c8-940d-2ff9ea9f77c3?api-version=2021-01-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-vm + Connection: + - keep-alive + ParameterSetName: + - -g -v --vm -p + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/7f01d74e-14e7-47c8-940d-2ff9ea9f77c3?api-version=2021-01-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Wed, 23 Jun 2021 11:58:54 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/7f01d74e-14e7-47c8-940d-2ff9ea9f77c3?api-version=2021-01-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-vm + Connection: + - keep-alive + ParameterSetName: + - -g -v --vm -p + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/7f01d74e-14e7-47c8-940d-2ff9ea9f77c3?api-version=2021-01-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Wed, 23 Jun 2021 11:58:55 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/7f01d74e-14e7-47c8-940d-2ff9ea9f77c3?api-version=2021-01-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '148' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-vm + Connection: + - keep-alive + ParameterSetName: + - -g -v --vm -p + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/7f01d74e-14e7-47c8-940d-2ff9ea9f77c3?api-version=2021-01-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Wed, 23 Jun 2021 11:58:57 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/7f01d74e-14e7-47c8-940d-2ff9ea9f77c3?api-version=2021-01-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '147' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-vm + Connection: + - keep-alive + ParameterSetName: + - -g -v --vm -p + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/7f01d74e-14e7-47c8-940d-2ff9ea9f77c3?api-version=2021-01-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Wed, 23 Jun 2021 11:58:58 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/7f01d74e-14e7-47c8-940d-2ff9ea9f77c3?api-version=2021-01-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '146' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-vm + Connection: + - keep-alive + ParameterSetName: + - -g -v --vm -p + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/7f01d74e-14e7-47c8-940d-2ff9ea9f77c3?api-version=2021-01-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Wed, 23 Jun 2021 11:58:59 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/7f01d74e-14e7-47c8-940d-2ff9ea9f77c3?api-version=2021-01-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '145' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-vm + Connection: + - keep-alive + ParameterSetName: + - -g -v --vm -p + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/7f01d74e-14e7-47c8-940d-2ff9ea9f77c3?api-version=2021-01-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Wed, 23 Jun 2021 11:59:00 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/7f01d74e-14e7-47c8-940d-2ff9ea9f77c3?api-version=2021-01-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '144' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-vm + Connection: + - keep-alive + ParameterSetName: + - -g -v --vm -p + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/7f01d74e-14e7-47c8-940d-2ff9ea9f77c3?api-version=2021-01-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Wed, 23 Jun 2021 11:59:01 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/7f01d74e-14e7-47c8-940d-2ff9ea9f77c3?api-version=2021-01-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '143' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-vm + Connection: + - keep-alive + ParameterSetName: + - -g -v --vm -p + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/7f01d74e-14e7-47c8-940d-2ff9ea9f77c3?api-version=2021-01-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Wed, 23 Jun 2021 11:59:03 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/7f01d74e-14e7-47c8-940d-2ff9ea9f77c3?api-version=2021-01-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '142' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-vm + Connection: + - keep-alive + ParameterSetName: + - -g -v --vm -p + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/7f01d74e-14e7-47c8-940d-2ff9ea9f77c3?api-version=2021-01-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Wed, 23 Jun 2021 11:59:04 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/7f01d74e-14e7-47c8-940d-2ff9ea9f77c3?api-version=2021-01-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '141' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-vm + Connection: + - keep-alive + ParameterSetName: + - -g -v --vm -p + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/7f01d74e-14e7-47c8-940d-2ff9ea9f77c3?api-version=2021-01-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + date: + - Wed, 23 Jun 2021 11:59:05 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '140' + x-powered-by: + - ASP.NET + status: + code: 204 + message: No Content +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-vm + Connection: + - keep-alive + ParameterSetName: + - -g -v --vm -p + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;akneema;akneema-hana-vm/protectableItems/vm;iaasvmcontainerv2;akneema;akneema-hana-vm","name":"iaasvmcontainerv2;akneema;akneema-hana-vm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.Compute/virtualMachines/akneema-hana-vm","virtualMachineVersion":"Compute","resourceGroup":"akneema","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"akneema-hana-vm","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectableItems/vm;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","name":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","virtualMachineVersion":"Compute","resourceGroup":"clitest.rg000001","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vm000003","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;containerautoprotection;shrja-2014/protectableItems/vm;iaasvmcontainerv2;containerautoprotection;shrja-2014","name":"iaasvmcontainerv2;containerautoprotection;shrja-2014","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ContainerAutoProtection/providers/Microsoft.Compute/virtualMachines/shrja-2014","virtualMachineVersion":"Compute","resourceGroup":"ContainerAutoProtection","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"shrja-2014","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;containerautoprotection;shrja-2019/protectableItems/vm;iaasvmcontainerv2;containerautoprotection;shrja-2019","name":"iaasvmcontainerv2;containerautoprotection;shrja-2019","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ContainerAutoProtection/providers/Microsoft.Compute/virtualMachines/shrja-2019","virtualMachineVersion":"Compute","resourceGroup":"ContainerAutoProtection","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"shrja-2019","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;containerautoprotection;shrja2012r2/protectableItems/vm;iaasvmcontainerv2;containerautoprotection;shrja2012r2","name":"iaasvmcontainerv2;containerautoprotection;shrja2012r2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ContainerAutoProtection/providers/Microsoft.Compute/virtualMachines/shrja2012R2","virtualMachineVersion":"Compute","resourceGroup":"ContainerAutoProtection","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"shrja2012R2","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestwlrg1bca8;pstestwlvm1bca8/protectableItems/vm;iaasvmcontainerv2;pstestwlrg1bca8;pstestwlvm1bca8","name":"iaasvmcontainerv2;pstestwlrg1bca8;pstestwlvm1bca8","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestwlvm1bca8","virtualMachineVersion":"Compute","resourceGroup":"pstestwlRG1bca8","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"pstestwlvm1bca8","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;shrja2008_group;shrja2008/protectableItems/vm;iaasvmcontainerv2;shrja2008_group;shrja2008","name":"iaasvmcontainerv2;shrja2008_group;shrja2008","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shrja2008_group/providers/Microsoft.Compute/virtualMachines/shrja2008","virtualMachineVersion":"Compute","resourceGroup":"shrja2008_group","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"shrja2008","protectionState":"NotProtected"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '7011' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 11:59:07 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"properties": {"sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003", + "policyId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy", + "protectedItemType": "Microsoft.Compute/virtualMachines"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-vm + Connection: + - keep-alive + Content-Length: + - '556' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -v --vm -p + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000003/protectedItems/vm%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000003?api-version=2021-01-01 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/vm;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/operationsStatus/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Wed, 23 Jun 2021 11:59:09 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/vm;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/operationResults/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-vm + Connection: + - keep-alive + ParameterSetName: + - -g -v --vm -p + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + response: + body: + string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 11:59:11 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-vm + Connection: + - keep-alive + ParameterSetName: + - -g -v --vm -p + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + response: + body: + string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 11:59:12 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '148' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-vm + Connection: + - keep-alive + ParameterSetName: + - -g -v --vm -p + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + response: + body: + string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 11:59:13 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '147' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-vm + Connection: + - keep-alive + ParameterSetName: + - -g -v --vm -p + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + response: + body: + string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 11:59:14 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '146' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-vm + Connection: + - keep-alive + ParameterSetName: + - -g -v --vm -p + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + response: + body: + string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 11:59:16 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '145' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-vm + Connection: + - keep-alive + ParameterSetName: + - -g -v --vm -p + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + response: + body: + string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 11:59:17 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '144' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-vm + Connection: + - keep-alive + ParameterSetName: + - -g -v --vm -p + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + response: + body: + string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 11:59:18 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '143' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-vm + Connection: + - keep-alive + ParameterSetName: + - -g -v --vm -p + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + response: + body: + string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 11:59:19 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '142' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-vm + Connection: + - keep-alive + ParameterSetName: + - -g -v --vm -p + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + response: + body: + string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 11:59:20 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '141' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-vm + Connection: + - keep-alive + ParameterSetName: + - -g -v --vm -p + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + response: + body: + string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 11:59:22 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '140' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-vm + Connection: + - keep-alive + ParameterSetName: + - -g -v --vm -p + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + response: + body: + string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 11:59:23 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '139' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-vm + Connection: + - keep-alive + ParameterSetName: + - -g -v --vm -p + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + response: + body: + string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 11:59:24 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '138' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-vm + Connection: + - keep-alive + ParameterSetName: + - -g -v --vm -p + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + response: + body: + string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 11:59:25 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '137' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-vm + Connection: + - keep-alive + ParameterSetName: + - -g -v --vm -p + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + response: + body: + string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 11:59:27 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '136' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-vm + Connection: + - keep-alive + ParameterSetName: + - -g -v --vm -p + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + response: + body: + string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 11:59:28 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '135' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-vm + Connection: + - keep-alive + ParameterSetName: + - -g -v --vm -p + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + response: + body: + string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 11:59:30 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '134' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-vm + Connection: + - keep-alive + ParameterSetName: + - -g -v --vm -p + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + response: + body: + string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 11:59:32 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '133' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-vm + Connection: + - keep-alive + ParameterSetName: + - -g -v --vm -p + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + response: + body: + string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 11:59:34 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '132' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-vm + Connection: + - keep-alive + ParameterSetName: + - -g -v --vm -p + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + response: + body: + string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 11:59:35 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '131' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-vm + Connection: + - keep-alive + ParameterSetName: + - -g -v --vm -p + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + response: + body: + string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 11:59:36 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '130' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-vm + Connection: + - keep-alive + ParameterSetName: + - -g -v --vm -p + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + response: + body: + string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 11:59:37 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '129' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-vm + Connection: + - keep-alive + ParameterSetName: + - -g -v --vm -p + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + response: + body: + string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 11:59:38 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '128' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-vm + Connection: + - keep-alive + ParameterSetName: + - -g -v --vm -p + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + response: + body: + string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 11:59:40 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '127' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-vm + Connection: + - keep-alive + ParameterSetName: + - -g -v --vm -p + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + response: + body: + string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 11:59:41 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '126' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-vm + Connection: + - keep-alive + ParameterSetName: + - -g -v --vm -p + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + response: + body: + string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 11:59:42 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '125' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-vm + Connection: + - keep-alive + ParameterSetName: + - -g -v --vm -p + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + response: + body: + string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 11:59:43 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '124' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-vm + Connection: + - keep-alive + ParameterSetName: + - -g -v --vm -p + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + response: + body: + string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 11:59:44 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '123' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-vm + Connection: + - keep-alive + ParameterSetName: + - -g -v --vm -p + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + response: + body: + string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 11:59:46 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '122' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-vm + Connection: + - keep-alive + ParameterSetName: + - -g -v --vm -p + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + response: + body: + string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 11:59:47 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '121' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-vm + Connection: + - keep-alive + ParameterSetName: + - -g -v --vm -p + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + response: + body: + string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 11:59:48 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '120' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-vm + Connection: + - keep-alive + ParameterSetName: + - -g -v --vm -p + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + response: + body: + string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 11:59:49 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '119' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-vm + Connection: + - keep-alive + ParameterSetName: + - -g -v --vm -p + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + response: + body: + string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 11:59:52 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '118' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-vm + Connection: + - keep-alive + ParameterSetName: + - -g -v --vm -p + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + response: + body: + string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 11:59:53 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '117' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-vm + Connection: + - keep-alive + ParameterSetName: + - -g -v --vm -p + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + response: + body: + string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 11:59:54 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '116' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-vm + Connection: + - keep-alive + ParameterSetName: + - -g -v --vm -p + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + response: + body: + string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 11:59:55 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '115' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-vm + Connection: + - keep-alive + ParameterSetName: + - -g -v --vm -p + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + response: + body: + string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 11:59:56 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '114' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-vm + Connection: + - keep-alive + ParameterSetName: + - -g -v --vm -p + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + response: + body: + string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 11:59:58 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '113' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-vm + Connection: + - keep-alive + ParameterSetName: + - -g -v --vm -p + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + response: + body: + string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 11:59:59 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '112' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-vm + Connection: + - keep-alive + ParameterSetName: + - -g -v --vm -p + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + response: + body: + string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:00:00 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '111' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-vm + Connection: + - keep-alive + ParameterSetName: + - -g -v --vm -p + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + response: + body: + string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:00:01 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '110' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-vm + Connection: + - keep-alive + ParameterSetName: + - -g -v --vm -p + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + response: + body: + string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:00:02 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '109' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-vm + Connection: + - keep-alive + ParameterSetName: + - -g -v --vm -p + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + response: + body: + string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:00:04 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '108' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-vm + Connection: + - keep-alive + ParameterSetName: + - -g -v --vm -p + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + response: + body: + string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:00:05 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '107' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-vm + Connection: + - keep-alive + ParameterSetName: + - -g -v --vm -p + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + response: + body: + string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:00:06 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '106' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-vm + Connection: + - keep-alive + ParameterSetName: + - -g -v --vm -p + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + response: + body: + string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:00:07 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '105' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-vm + Connection: + - keep-alive + ParameterSetName: + - -g -v --vm -p + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + response: + body: + string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:00:09 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '104' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-vm + Connection: + - keep-alive + ParameterSetName: + - -g -v --vm -p + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + response: + body: + string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:00:10 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '103' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-vm + Connection: + - keep-alive + ParameterSetName: + - -g -v --vm -p + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + response: + body: + string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:00:12 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '102' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-vm + Connection: + - keep-alive + ParameterSetName: + - -g -v --vm -p + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + response: + body: + string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:00:13 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '101' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-vm + Connection: + - keep-alive + ParameterSetName: + - -g -v --vm -p + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + response: + body: + string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:00:15 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '100' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-vm + Connection: + - keep-alive + ParameterSetName: + - -g -v --vm -p + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + response: + body: + string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:00:16 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '99' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-vm + Connection: + - keep-alive + ParameterSetName: + - -g -v --vm -p + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + response: + body: + string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:00:17 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '98' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-vm + Connection: + - keep-alive + ParameterSetName: + - -g -v --vm -p + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + response: + body: + string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:00:18 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '97' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-vm + Connection: + - keep-alive + ParameterSetName: + - -g -v --vm -p + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + response: + body: + string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:00:19 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '96' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-vm + Connection: + - keep-alive + ParameterSetName: + - -g -v --vm -p + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + response: + body: + string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:00:21 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '95' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-vm + Connection: + - keep-alive + ParameterSetName: + - -g -v --vm -p + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + response: + body: + string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:00:22 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '94' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-vm + Connection: + - keep-alive + ParameterSetName: + - -g -v --vm -p + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + response: + body: + string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:00:23 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '93' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-vm + Connection: + - keep-alive + ParameterSetName: + - -g -v --vm -p + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + response: + body: + string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:00:24 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '92' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-vm + Connection: + - keep-alive + ParameterSetName: + - -g -v --vm -p + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + response: + body: + string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:00:26 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '91' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-vm + Connection: + - keep-alive + ParameterSetName: + - -g -v --vm -p + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + response: + body: + string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:00:27 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '90' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-vm + Connection: + - keep-alive + ParameterSetName: + - -g -v --vm -p + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + response: + body: + string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:00:28 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '89' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-vm + Connection: + - keep-alive + ParameterSetName: + - -g -v --vm -p + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + response: + body: + string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:00:29 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '88' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-vm + Connection: + - keep-alive + ParameterSetName: + - -g -v --vm -p + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + response: + body: + string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:00:31 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '87' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-vm + Connection: + - keep-alive + ParameterSetName: + - -g -v --vm -p + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + response: + body: + string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:00:32 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '86' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-vm + Connection: + - keep-alive + ParameterSetName: + - -g -v --vm -p + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + response: + body: + string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:00:33 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '85' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-vm + Connection: + - keep-alive + ParameterSetName: + - -g -v --vm -p + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + response: + body: + string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:00:34 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '84' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-vm + Connection: + - keep-alive + ParameterSetName: + - -g -v --vm -p + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + response: + body: + string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:00:35 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '83' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-vm + Connection: + - keep-alive + ParameterSetName: + - -g -v --vm -p + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + response: + body: + string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:00:37 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '82' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-vm + Connection: + - keep-alive + ParameterSetName: + - -g -v --vm -p + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + response: + body: + string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:00:38 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '81' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-vm + Connection: + - keep-alive + ParameterSetName: + - -g -v --vm -p + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + response: + body: + string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:00:39 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '80' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-vm + Connection: + - keep-alive + ParameterSetName: + - -g -v --vm -p + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + response: + body: + string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"InProgress","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:00:41 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '79' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-vm + Connection: + - keep-alive + ParameterSetName: + - -g -v --vm -p + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ee481aef-7c70-49fb-a4af-0913274a1854?api-version=2021-01-01 + response: + body: + string: '{"id":"ee481aef-7c70-49fb-a4af-0913274a1854","name":"ee481aef-7c70-49fb-a4af-0913274a1854","status":"Succeeded","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"2021-06-23T11:59:09.8170132Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"e2ef177f-e4a8-48fe-b75b-b961094ff09c"}}' + headers: + cache-control: + - no-cache + content-length: + - '304' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:00:42 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '78' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-vm + Connection: + - keep-alive + ParameterSetName: + - -g -v --vm -p + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e2ef177f-e4a8-48fe-b75b-b961094ff09c?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e2ef177f-e4a8-48fe-b75b-b961094ff09c","name":"e2ef177f-e4a8-48fe-b75b-b961094ff09c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1M32.0611384S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[],"propertyBag":{"VM + Name":"clitest-vm000003","Policy Name":"DefaultPolicy"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"ConfigureBackup","status":"Completed","startTime":"2021-06-23T11:59:09.8170132Z","endTime":"2021-06-23T12:00:41.8781516Z","activityId":"602b309a-d41a-11eb-9796-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '970' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:00:43 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' + x-powered-by: + - ASP.NET + 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: + - --backup-management-type --workload-type -g -v -c -i --retain-until --query + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","name":"VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-vm000003","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","protectionStatus":"Healthy","protectionState":"IRPending","healthStatus":"Passed","lastBackupStatus":"","lastBackupTime":"2001-01-01T00:00:00Z","protectedItemDataId":"35185184867588","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","isArchiveEnabled":false}}]}' + headers: + cache-control: + - no-cache + content-length: + - '1988' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:00:44 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"properties": {"objectType": "IaasVMBackupRequest", "recoveryPointExpiryTimeInUTC": + "2021-07-23T00:00:00.000Z"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection backup-now + Connection: + - keep-alive + Content-Length: + - '113' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --retain-until --query + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000003/protectedItems/VM%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000003/backup?api-version=2021-01-01 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/operationsStatus/8b2ae124-9a2f-4b58-8625-d878df3f26ba?api-version=2021-01-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Wed, 23 Jun 2021 12:00:44 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/operationResults/8b2ae124-9a2f-4b58-8625-d878df3f26ba?api-version=2021-01-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection backup-now + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --retain-until --query + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/8b2ae124-9a2f-4b58-8625-d878df3f26ba?api-version=2021-01-01 + response: + body: + string: '{"id":"8b2ae124-9a2f-4b58-8625-d878df3f26ba","name":"8b2ae124-9a2f-4b58-8625-d878df3f26ba","status":"Succeeded","startTime":"2021-06-23T12:00:45.0060453Z","endTime":"2021-06-23T12:00:45.0060453Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"c8d6af63-1ec4-485d-945a-83791e69b951"}}' + headers: + cache-control: + - no-cache + content-length: + - '304' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:00:44 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' + x-powered-by: + - ASP.NET + 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: + - --backup-management-type --workload-type -g -v -c -i --retain-until --query + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT0.8840046S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1156' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:00:46 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' + x-powered-by: + - ASP.NET + 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: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1.3759536S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1156' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:00:46 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '148' + x-powered-by: + - ASP.NET + 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: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1.7224516S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1156' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:00:46 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '147' + x-powered-by: + - ASP.NET + 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: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT32.2234788S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1157' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:01:16 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '146' + x-powered-by: + - ASP.NET + 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: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1M2.7408017S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1158' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:01:47 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '145' + x-powered-by: + - ASP.NET + 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: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1M33.1664695S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1159' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:02:18 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '144' + x-powered-by: + - ASP.NET + 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: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT2M3.5568349S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1158' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:02:48 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '143' + x-powered-by: + - ASP.NET + 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: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT2M33.9689608S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1159' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:03:19 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '142' + x-powered-by: + - ASP.NET + 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: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT3M4.4396781S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1158' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:03:49 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '141' + x-powered-by: + - ASP.NET + 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: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT3M34.7681526S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1159' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:04:19 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '140' + x-powered-by: + - ASP.NET + 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: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT4M5.1337678S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1158' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:04:50 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '139' + x-powered-by: + - ASP.NET + 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: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT4M35.6110378S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1159' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:05:20 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '138' + x-powered-by: + - ASP.NET + 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: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT5M6.0872161S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1158' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:05:51 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '137' + x-powered-by: + - ASP.NET + 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: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT5M36.6095168S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1159' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:06:21 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '136' + x-powered-by: + - ASP.NET + 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: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT6M7.0121755S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1158' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:06:52 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '135' + x-powered-by: + - ASP.NET + 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: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT6M37.733384S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1158' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:07:22 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '134' + x-powered-by: + - ASP.NET + 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: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT7M8.1939312S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1158' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:07:53 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '133' + x-powered-by: + - ASP.NET + 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: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT7M38.6278514S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1158' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:08:23 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '132' + x-powered-by: + - ASP.NET + 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: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT8M9.0582708S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1157' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:08:53 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '131' + x-powered-by: + - ASP.NET + 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: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT8M39.4863809S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1158' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:09:24 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '130' + x-powered-by: + - ASP.NET + 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: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT9M9.9332932S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1157' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:09:54 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '129' + x-powered-by: + - ASP.NET + 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: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT9M40.3005858S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1158' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:10:25 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '128' + x-powered-by: + - ASP.NET + 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: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT10M10.7271244S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1159' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:10:55 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '127' + x-powered-by: + - ASP.NET + 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: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT10M41.1116584S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1159' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:11:25 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '126' + x-powered-by: + - ASP.NET + 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: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT11M11.483577S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1158' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:11:56 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '125' + x-powered-by: + - ASP.NET + 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: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT11M42.0576953S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1159' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:12:26 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '124' + x-powered-by: + - ASP.NET + 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: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT12M12.4299012S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1159' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:12:56 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '123' + x-powered-by: + - ASP.NET + 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: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT12M42.8120082S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1159' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:13:28 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '122' + x-powered-by: + - ASP.NET + 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: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT13M13.5896017S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1159' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:13:58 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '121' + x-powered-by: + - ASP.NET + 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: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT13M44.0008897S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1159' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:14:28 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '120' + x-powered-by: + - ASP.NET + 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: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT14M14.5789344S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1159' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:14:59 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '119' + x-powered-by: + - ASP.NET + 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: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT14M45.0590833S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1159' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:15:29 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '118' + x-powered-by: + - ASP.NET + 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: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT15M15.5707771S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1159' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:16:00 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '117' + x-powered-by: + - ASP.NET + 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: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT15M46.0536054S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1159' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:16:30 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '116' + x-powered-by: + - ASP.NET + 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: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT16M16.4108227S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1159' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:17:01 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '115' + x-powered-by: + - ASP.NET + 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: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT16M46.7498204S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1159' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:17:32 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '114' + x-powered-by: + - ASP.NET + 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: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT17M17.1460282S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1159' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:18:02 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '113' + x-powered-by: + - ASP.NET + 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: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT17M47.6164951S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1159' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:18:32 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '112' + x-powered-by: + - ASP.NET + 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: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT18M18.2144083S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1159' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:19:03 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '111' + x-powered-by: + - ASP.NET + 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: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT18M48.5743731S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1159' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:19:33 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '110' + x-powered-by: + - ASP.NET + 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: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT19M18.9449905S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1159' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:20:03 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '109' + x-powered-by: + - ASP.NET + 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: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT19M49.4853252S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1159' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:20:34 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '108' + x-powered-by: + - ASP.NET + 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: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT20M19.9754018S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1159' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:21:04 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '107' + x-powered-by: + - ASP.NET + 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: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT20M50.3778271S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1159' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:21:35 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '106' + x-powered-by: + - ASP.NET + 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: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT21M20.8459907S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1159' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:22:05 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '105' + x-powered-by: + - ASP.NET + 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: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT21M51.5671297S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1159' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:22:36 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '104' + x-powered-by: + - ASP.NET + 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: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT22M22.3467155S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1159' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:23:06 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '103' + x-powered-by: + - ASP.NET + 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: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT22M52.892686S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1158' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:23:37 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '102' + x-powered-by: + - ASP.NET + 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: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT23M23.5876877S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1159' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:24:08 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '101' + x-powered-by: + - ASP.NET + 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: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT23M54.0881682S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1159' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:24:39 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '100' + x-powered-by: + - ASP.NET + 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: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT24M24.6030387S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1159' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:25:09 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '99' + x-powered-by: + - ASP.NET + 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: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT24M55.0638204S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1159' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:25:40 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '98' + x-powered-by: + - ASP.NET + 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: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT25M25.521108S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1158' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:26:10 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '97' + x-powered-by: + - ASP.NET + 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: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT25M56.2197836S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1159' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:26:40 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '96' + x-powered-by: + - ASP.NET + 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: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT26M26.6406425S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1159' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:27:11 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '95' + x-powered-by: + - ASP.NET + 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: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT26M57.0689606S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1159' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:27:41 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '94' + x-powered-by: + - ASP.NET + 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: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT27M27.4778399S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1159' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:28:12 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '93' + x-powered-by: + - ASP.NET + 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: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT27M58.0016097S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1159' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:28:42 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '92' + x-powered-by: + - ASP.NET + 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: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT28M28.4335899S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1159' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:29:13 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '91' + x-powered-by: + - ASP.NET + 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: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT28M58.8978196S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1159' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:29:43 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '90' + x-powered-by: + - ASP.NET + 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: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT29M29.276504S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1158' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:30:13 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '89' + x-powered-by: + - ASP.NET + 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: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT29M59.9110373S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1159' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:30:45 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '88' + x-powered-by: + - ASP.NET + 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: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT30M30.2784968S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1159' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:31:15 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '87' + x-powered-by: + - ASP.NET + 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: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT31M0.68091S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1156' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:31:45 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '86' + x-powered-by: + - ASP.NET + 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: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT31M31.1748327S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1159' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:32:16 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '85' + x-powered-by: + - ASP.NET + 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: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT32M1.5937717S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1158' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:32:46 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '84' + x-powered-by: + - ASP.NET + 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: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT32M32.1086285S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1159' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:33:16 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '83' + x-powered-by: + - ASP.NET + 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: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT33M2.6596685S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1158' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:33:47 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '82' + x-powered-by: + - ASP.NET + 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: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT33M33.1073593S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1159' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:34:18 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '81' + x-powered-by: + - ASP.NET + 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: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT34M3.529034S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1157' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:34:48 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '80' + x-powered-by: + - ASP.NET + 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: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT34M33.9714415S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1159' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:35:19 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '79' + x-powered-by: + - ASP.NET + 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: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT35M4.5646169S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1158' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:35:49 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '78' + x-powered-by: + - ASP.NET + 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: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT35M34.9854071S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1159' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:36:19 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '77' + x-powered-by: + - ASP.NET + 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: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT36M5.4781395S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1158' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:36:50 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '76' + x-powered-by: + - ASP.NET + 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: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT36M35.8556615S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1159' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:37:20 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '75' + x-powered-by: + - ASP.NET + 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: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT37M6.2541648S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1158' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:37:50 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '74' + x-powered-by: + - ASP.NET + 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: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT37M36.6998145S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1159' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:38:21 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '73' + x-powered-by: + - ASP.NET + 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: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT38M7.1506524S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1158' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:38:51 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '72' + x-powered-by: + - ASP.NET + 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: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT38M37.5573647S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1159' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:39:23 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '71' + x-powered-by: + - ASP.NET + 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: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT39M8.5228809S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1158' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:39:53 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '70' + x-powered-by: + - ASP.NET + 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: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT39M39.0121192S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1159' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:40:23 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '69' + x-powered-by: + - ASP.NET + 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: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT40M9.5102632S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1158' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:40:54 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '68' + x-powered-by: + - ASP.NET + 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: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT40M40.0162667S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1159' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:41:25 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '67' + x-powered-by: + - ASP.NET + 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: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT41M10.486953S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"7/23/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-06-23T12:00:45.0060453Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1158' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:41:55 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '66' + x-powered-by: + - ASP.NET + 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: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c8d6af63-1ec4-485d-945a-83791e69b951","name":"c8d6af63-1ec4-485d-945a-83791e69b951","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","actionsInfo":[1],"containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT41M11.1968202S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"Completed"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"7/23/2021 12:00:00 AM","Backup Size":"11438 MB"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"Completed","startTime":"2021-06-23T12:00:45.0060453Z","endTime":"2021-06-23T12:41:56.2028655Z","activityId":"a3367a04-d41a-11eb-8f22-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1223' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:42:25 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '65' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container show + Connection: + - keep-alive + ParameterSetName: + - -n -v -g --backup-management-type --query + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectionContainers?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20friendlyName%20eq%20%27clitest-vm000003%27%20and%20status%20eq%20%27Registered%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","name":"IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","virtualMachineVersion":"Compute","resourceGroup":"clitest.rg000001","friendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"Microsoft.Compute/virtualMachines","protectableObjectType":"Microsoft.Compute/virtualMachines"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '1220' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:43:21 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' + x-powered-by: + - ASP.NET + 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: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","name":"VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"clitest-vm000003","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","protectionStatus":"Healthy","protectionState":"Protected","healthStatus":"Passed","healthDetails":[{"code":400239,"title":"IaasVmHealthGreenDefault","message":"Backup + pre-check status of this virtual machine is OK.","recommendations":[]}],"lastBackupStatus":"Completed","lastBackupTime":"2021-06-23T12:00:45.0060453Z","protectedItemDataId":"35185184867588","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-06-23T12:00:48.2225748Z","isArchiveEnabled":false}}]}' + headers: + cache-control: + - no-cache + content-length: + - '2363' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:43:20 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup recoverypoint list + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","name":"VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"clitest-vm000003","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","protectionStatus":"Healthy","protectionState":"Protected","healthStatus":"Passed","healthDetails":[{"code":400239,"title":"IaasVmHealthGreenDefault","message":"Backup + pre-check status of this virtual machine is OK.","recommendations":[]}],"lastBackupStatus":"Completed","lastBackupTime":"2021-06-23T12:00:45.0060453Z","protectedItemDataId":"35185184867588","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-06-23T12:00:48.2225748Z","isArchiveEnabled":false}}]}' + headers: + cache-control: + - no-cache + content-length: + - '2363' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:43:21 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup recoverypoint list + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000003/protectedItems/VM%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000003/recoveryPoints?api-version=2021-01-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/recoveryPoints/31060579713735","name":"31060579713735","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"IaasVMRecoveryPoint","recoveryPointType":"AppConsistent","recoveryPointTime":"2021-06-23T12:00:48.2225748Z","recoveryPointAdditionalInfo":"","sourceVMStorageType":"PremiumVMOnPartialPremiumStorage","isSourceVMEncrypted":false,"isInstantIlrSessionActive":false,"recoveryPointTierDetails":[{"type":1,"status":1},{"type":2,"status":1}],"isManagedVirtualMachine":true,"virtualMachineSize":"Standard_DS1_v2","originalStorageAccountOption":false,"osType":"Windows","recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":false,"additionalInfo":"Recovery + point cannot be moved to Archive tier due to insufficient retention duration + specified in policy.. Update policy on the protected item with appropriate + retention setting and try again."}}}}]}' + headers: + cache-control: + - no-cache + content-length: + - '1463' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:43:22 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' + x-powered-by: + - ASP.NET + 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 -i -c --backup-management-type --is-ready-for-move --target-tier --query + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","name":"VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"clitest-vm000003","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","protectionStatus":"Healthy","protectionState":"Protected","healthStatus":"Passed","healthDetails":[{"code":400239,"title":"IaasVmHealthGreenDefault","message":"Backup + pre-check status of this virtual machine is OK.","recommendations":[]}],"lastBackupStatus":"Completed","lastBackupTime":"2021-06-23T12:00:45.0060453Z","protectedItemDataId":"35185184867588","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-06-23T12:00:48.2225748Z","isArchiveEnabled":false}}]}' + headers: + cache-control: + - no-cache + content-length: + - '2363' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:43:22 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' + x-powered-by: + - ASP.NET + 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 -i -c --backup-management-type --is-ready-for-move --target-tier --query + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000003/protectedItems/VM%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000003/recoveryPoints?api-version=2021-01-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/recoveryPoints/31060579713735","name":"31060579713735","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"IaasVMRecoveryPoint","recoveryPointType":"AppConsistent","recoveryPointTime":"2021-06-23T12:00:48.2225748Z","recoveryPointAdditionalInfo":"","sourceVMStorageType":"PremiumVMOnPartialPremiumStorage","isSourceVMEncrypted":false,"isInstantIlrSessionActive":false,"recoveryPointTierDetails":[{"type":1,"status":1},{"type":2,"status":1}],"isManagedVirtualMachine":true,"virtualMachineSize":"Standard_DS1_v2","originalStorageAccountOption":false,"osType":"Windows","recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":false,"additionalInfo":"Recovery + point cannot be moved to Archive tier due to insufficient retention duration + specified in policy.. Update policy on the protected item with appropriate + retention setting and try again."}}}}]}' + headers: + cache-control: + - no-cache + content-length: + - '1463' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:43:23 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '148' + x-powered-by: + - ASP.NET + 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 -i -c --backup-management-type --tier --query + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","name":"VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"clitest-vm000003","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","protectionStatus":"Healthy","protectionState":"Protected","healthStatus":"Passed","healthDetails":[{"code":400239,"title":"IaasVmHealthGreenDefault","message":"Backup + pre-check status of this virtual machine is OK.","recommendations":[]}],"lastBackupStatus":"Completed","lastBackupTime":"2021-06-23T12:00:45.0060453Z","protectedItemDataId":"35185184867588","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-06-23T12:00:48.2225748Z","isArchiveEnabled":false}}]}' + headers: + cache-control: + - no-cache + content-length: + - '2363' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:43:23 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' + x-powered-by: + - ASP.NET + 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 -i -c --backup-management-type --tier --query + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000003/protectedItems/VM%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000003/recoveryPoints?api-version=2021-01-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/recoveryPoints/31060579713735","name":"31060579713735","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"IaasVMRecoveryPoint","recoveryPointType":"AppConsistent","recoveryPointTime":"2021-06-23T12:00:48.2225748Z","recoveryPointAdditionalInfo":"","sourceVMStorageType":"PremiumVMOnPartialPremiumStorage","isSourceVMEncrypted":false,"isInstantIlrSessionActive":false,"recoveryPointTierDetails":[{"type":1,"status":1},{"type":2,"status":1}],"isManagedVirtualMachine":true,"virtualMachineSize":"Standard_DS1_v2","originalStorageAccountOption":false,"osType":"Windows","recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":false,"additionalInfo":"Recovery + point cannot be moved to Archive tier due to insufficient retention duration + specified in policy.. Update policy on the protected item with appropriate + retention setting and try again."}}}}]}' + headers: + cache-control: + - no-cache + content-length: + - '1463' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:43:24 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '148' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container list + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type -v -g --query + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectionContainers?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20status%20eq%20%27Registered%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","name":"IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","virtualMachineVersion":"Compute","resourceGroup":"clitest.rg000001","friendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"Microsoft.Compute/virtualMachines","protectableObjectType":"Microsoft.Compute/virtualMachines"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '1220' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:43:24 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item list + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c --query + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","name":"VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"clitest-vm000003","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","protectionStatus":"Healthy","protectionState":"Protected","healthStatus":"Passed","healthDetails":[{"code":400239,"title":"IaasVmHealthGreenDefault","message":"Backup + pre-check status of this virtual machine is OK.","recommendations":[]}],"lastBackupStatus":"Completed","lastBackupTime":"2021-06-23T12:00:45.0060453Z","protectedItemDataId":"35185184867588","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-06-23T12:00:48.2225748Z","isArchiveEnabled":false}}]}' + headers: + cache-control: + - no-cache + content-length: + - '2363' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:44:02 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","name":"VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"clitest-vm000003","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","protectionStatus":"Healthy","protectionState":"Protected","healthStatus":"Passed","healthDetails":[{"code":400239,"title":"IaasVmHealthGreenDefault","message":"Backup + pre-check status of this virtual machine is OK.","recommendations":[]}],"lastBackupStatus":"Completed","lastBackupTime":"2021-06-23T12:00:45.0060453Z","protectedItemDataId":"35185184867588","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-06-23T12:00:48.2225748Z","isArchiveEnabled":false}}]}' + headers: + cache-control: + - no-cache + content-length: + - '2363' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:44:02 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000003/protectedItems/VM%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000003?api-version=2021-01-01 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Wed, 23 Jun 2021 12:44:04 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + response: + body: + string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:44:04 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + response: + body: + string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:44:05 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '148' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + response: + body: + string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:44:06 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '147' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + response: + body: + string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:44:08 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '146' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + response: + body: + string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:44:09 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '145' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + response: + body: + string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:44:10 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '144' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + response: + body: + string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:44:11 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '143' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + response: + body: + string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:44:13 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '142' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + response: + body: + string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:44:14 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '141' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + response: + body: + string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:44:15 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '140' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + response: + body: + string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:44:16 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '139' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + response: + body: + string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:44:17 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '138' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + response: + body: + string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:44:19 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '137' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + response: + body: + string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:44:20 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '136' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + response: + body: + string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:44:21 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '135' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + response: + body: + string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:44:22 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '134' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + response: + body: + string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:44:23 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '133' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + response: + body: + string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:44:25 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '132' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + response: + body: + string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:44:26 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '131' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + response: + body: + string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:44:27 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '130' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + response: + body: + string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:44:28 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '129' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + response: + body: + string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:44:29 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '128' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + response: + body: + string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:44:31 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '127' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + response: + body: + string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:44:32 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '126' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + response: + body: + string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:44:33 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '125' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + response: + body: + string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:44:34 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '124' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + response: + body: + string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:44:35 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '123' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + response: + body: + string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:44:37 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '122' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + response: + body: + string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:44:38 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '121' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + response: + body: + string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:44:39 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '120' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + response: + body: + string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:44:40 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '119' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + response: + body: + string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:44:41 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '118' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + response: + body: + string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:44:43 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '117' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + response: + body: + string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:44:44 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '116' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + response: + body: + string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:44:45 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '115' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + response: + body: + string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:44:46 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '114' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + response: + body: + string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:44:48 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '113' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + response: + body: + string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:44:50 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '112' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + response: + body: + string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:44:51 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '111' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + response: + body: + string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:44:52 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '110' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + response: + body: + string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:44:53 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '109' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + response: + body: + string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:44:55 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '108' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + response: + body: + string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:44:56 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '107' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + response: + body: + string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:44:57 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '106' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + response: + body: + string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:44:58 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '105' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + response: + body: + string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:44:59 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '104' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + response: + body: + string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:45:01 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '103' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + response: + body: + string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:45:02 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '102' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + response: + body: + string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:45:03 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '101' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + response: + body: + string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:45:04 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '100' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + response: + body: + string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:45:06 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '99' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + response: + body: + string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:45:07 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '98' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + response: + body: + string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:45:08 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '97' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + response: + body: + string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:45:09 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '96' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + response: + body: + string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:45:10 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '95' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + response: + body: + string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:45:12 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '94' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + response: + body: + string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:45:13 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '93' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + response: + body: + string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:45:14 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '92' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + response: + body: + string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:45:15 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '91' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + response: + body: + string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:45:17 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '90' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + response: + body: + string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:45:18 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '89' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + response: + body: + string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:45:19 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '88' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + response: + body: + string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:45:20 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '87' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + response: + body: + string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:45:21 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '86' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + response: + body: + string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:45:23 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '85' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + response: + body: + string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:45:24 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '84' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + response: + body: + string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:45:25 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '83' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + response: + body: + string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:45:26 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '82' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + response: + body: + string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:45:27 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '81' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + response: + body: + string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:45:29 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '80' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + response: + body: + string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:45:30 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '79' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + response: + body: + string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:45:31 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '78' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + response: + body: + string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:45:32 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '77' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + response: + body: + string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:45:33 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '76' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + response: + body: + string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:45:35 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '75' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + response: + body: + string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:45:36 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '74' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + response: + body: + string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:45:37 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '73' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + response: + body: + string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:45:38 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '72' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + response: + body: + string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:45:40 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '71' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + response: + body: + string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:45:41 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '70' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + response: + body: + string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:45:42 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '69' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + response: + body: + string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:45:43 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '68' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + response: + body: + string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:45:44 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '67' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + response: + body: + string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:45:46 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '66' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + response: + body: + string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:45:47 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '65' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + response: + body: + string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:45:48 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '64' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + response: + body: + string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:45:49 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '63' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + response: + body: + string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:45:50 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '62' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + response: + body: + string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:45:52 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '61' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + response: + body: + string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:45:53 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '60' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + response: + body: + string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"InProgress","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:45:54 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '59' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10106e32-99d9-4f22-8fc5-ca66f97bdff5?api-version=2021-01-01 + response: + body: + string: '{"id":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","name":"10106e32-99d9-4f22-8fc5-ca66f97bdff5","status":"Succeeded","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"2021-06-23T12:44:04.2182724Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"fe0dcd5e-d5b7-44ed-8792-eb26e0fe2280"}}' + headers: + cache-control: + - no-cache + content-length: + - '304' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:45:55 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '58' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/fe0dcd5e-d5b7-44ed-8792-eb26e0fe2280?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/fe0dcd5e-d5b7-44ed-8792-eb26e0fe2280","name":"fe0dcd5e-d5b7-44ed-8792-eb26e0fe2280","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1M52.1098539S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[],"propertyBag":{"VM + Name":"clitest-vm000003","Number of Recovery Points":"1"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"DeleteBackupData","status":"Completed","startTime":"2021-06-23T12:44:04.2182724Z","endTime":"2021-06-23T12:45:56.3281263Z","activityId":"b08029ba-d420-11eb-ad53-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '973' + content-type: + - application/json + date: + - Wed, 23 Jun 2021 12:45:56 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '148' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - backup vault delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -n -g --yes + User-Agent: + - AZURECLI/2.24.0 azsdk-python-mgmt-recoveryservices/1.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2016-06-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Wed, 23 Jun 2021 12:46:02 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '9' + status: + code: 200 + message: OK +version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_policy.yaml b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_policy.yaml index f83fed428dd..6ae544d3241 100644 --- a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_policy.yaml +++ b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_policy.yaml @@ -17281,4 +17281,4 @@ interactions: status: code: 200 message: OK -version: 1 +version: 1 \ No newline at end of file diff --git a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_hana_archive.yaml b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_hana_archive.yaml new file mode 100644 index 00000000000..19f2a1f04ea --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_hana_archive.yaml @@ -0,0 +1,2774 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup recoverypoint list + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BArchiveResourceGroup%3BArchHanaVM1/protectedItems/SAPHanaDatabase%3Bh15%3Bsystemdb?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;archiveresourcegroup;archhanavm1/protectedItems/SAPHanaDatabase;h15;systemdb","name":"SAPHanaDatabase;h15;systemdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"PersistentDegraded","resourceHealthDetails":[{"code":520531,"title":"UserErrorHANASystemDBNotRunning","message":"SYSTEMDB + for the SAP HANA instance is not in running state.","recommendations":["Please + start the SAP HANA system by running the command ''HDB start'' as the sidadm + user and retry the operation."]}]}},"friendlyName":"systemdb","serverName":"BVTD2HSuse15","parentName":"H15","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Unhealthy","protectionState":"Protected","lastBackupStatus":"Unhealthy","lastBackupTime":"2021-06-21T12:06:22.1255061Z","lastBackupErrorDetail":{"code":"UserErrorHANASystemDBNotRunning","message":"SYSTEMDB + for the SAP HANA instance is not in running state.","recommendations":["Please + start the SAP HANA system by running the command ''HDB start'' as the sidadm + user and retry the operation."]},"protectedItemDataSourceId":"17592946582397","protectedItemHealthStatus":"Unhealthy","extendedInfo":{"oldestRecoveryPoint":"2021-01-29T12:00:14.494Z","recoveryPointCount":16,"policyState":"Consistent"},"protectedItemType":"AzureVmWorkloadSAPHanaDatabase","backupManagementType":"AzureWorkload","workloadType":"SAPHanaDatabase","containerName":"VMAppContainer;compute;archiveresourcegroup;archhanavm1","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/archiveresourcegroup/providers/Microsoft.Compute/virtualMachines/archhanavm1","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupPolicies/saphanaltr","lastRecoveryPoint":"2021-02-12T02:27:42.024Z","isArchiveEnabled":false}}' + headers: + cache-control: + - no-cache + content-length: + - '2179' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 11:54:26 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '148' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup recoverypoint list + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Barchiveresourcegroup%3Barchhanavm1/protectedItems/SAPHanaDatabase%3Bh15%3Bsystemdb/recoveryPoints?api-version=2021-01-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;archiveresourcegroup;archhanavm1/protectedItems/SAPHanaDatabase;h15;systemdb/recoveryPoints/117403551765423","name":"117403551765423","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSAPHanaRecoveryPoint","recoveryPointTimeInUTC":"2021-02-11T12:00:14.754Z","type":"Full","recoveryPointTierDetails":[{"type":2,"status":1}],"recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":false,"additionalInfo":"Recovery-Point + having active dependencies for restore is not eligible for Archive Move. "}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;archiveresourcegroup;archhanavm1/protectedItems/SAPHanaDatabase;h15;systemdb/recoveryPoints/112766743026087","name":"112766743026087","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSAPHanaRecoveryPoint","recoveryPointTimeInUTC":"2021-02-10T12:00:14.79Z","type":"Full","recoveryPointTierDetails":[{"type":3,"status":4,"extendedInfo":{"RehydratedRPExpiryTime":"2021-07-07T09:46:04.2869345Z"}}],"recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":false,"additionalInfo":"Recovery-Point + is not eligible for archive move as it has already been moved to archive tier. + "}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;archiveresourcegroup;archhanavm1/protectedItems/SAPHanaDatabase;h15;systemdb/recoveryPoints/119145683997902","name":"119145683997902","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSAPHanaRecoveryPoint","recoveryPointTimeInUTC":"2021-02-09T12:00:15.554Z","type":"Full","recoveryPointTierDetails":[{"type":3,"status":1}],"recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":false,"additionalInfo":"Recovery-Point + is not eligible for archive move as it has already been moved to archive tier. + "}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;archiveresourcegroup;archhanavm1/protectedItems/SAPHanaDatabase;h15;systemdb/recoveryPoints/116884148315522","name":"116884148315522","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSAPHanaRecoveryPoint","recoveryPointTimeInUTC":"2021-02-08T12:00:13.119Z","type":"Full","recoveryPointTierDetails":[{"type":2,"status":1}],"recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":true,"additionalInfo":""}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;archiveresourcegroup;archhanavm1/protectedItems/SAPHanaDatabase;h15;systemdb/recoveryPoints/109855477669987","name":"109855477669987","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSAPHanaRecoveryPoint","recoveryPointTimeInUTC":"2021-02-07T12:00:15.774Z","type":"Full","recoveryPointTierDetails":[{"type":2,"status":1}],"recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":true,"additionalInfo":""}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;archiveresourcegroup;archhanavm1/protectedItems/SAPHanaDatabase;h15;systemdb/recoveryPoints/122854995757371","name":"122854995757371","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSAPHanaRecoveryPoint","recoveryPointTimeInUTC":"2021-02-06T12:00:12.877Z","type":"Full","recoveryPointTierDetails":[{"type":2,"status":1}],"recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":true,"additionalInfo":""}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;archiveresourcegroup;archhanavm1/protectedItems/SAPHanaDatabase;h15;systemdb/recoveryPoints/118492316144851","name":"118492316144851","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSAPHanaRecoveryPoint","recoveryPointTimeInUTC":"2021-02-05T12:00:13.909Z","type":"Full","recoveryPointTierDetails":[{"type":2,"status":1}],"recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":true,"additionalInfo":""}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;archiveresourcegroup;archhanavm1/protectedItems/SAPHanaDatabase;h15;systemdb/recoveryPoints/110092463008623","name":"110092463008623","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSAPHanaRecoveryPoint","recoveryPointTimeInUTC":"2021-02-04T12:00:16.647Z","type":"Full","recoveryPointTierDetails":[{"type":2,"status":1}],"recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":true,"additionalInfo":""}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;archiveresourcegroup;archhanavm1/protectedItems/SAPHanaDatabase;h15;systemdb/recoveryPoints/112099468275258","name":"112099468275258","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSAPHanaRecoveryPoint","recoveryPointTimeInUTC":"2021-02-03T12:00:15.167Z","type":"Full","recoveryPointTierDetails":[{"type":2,"status":1}],"recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":true,"additionalInfo":""}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;archiveresourcegroup;archhanavm1/protectedItems/SAPHanaDatabase;h15;systemdb/recoveryPoints/120101569339838","name":"120101569339838","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSAPHanaRecoveryPoint","recoveryPointTimeInUTC":"2021-02-02T12:00:15.279Z","type":"Full","recoveryPointTierDetails":[{"type":2,"status":1}],"recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":true,"additionalInfo":""}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;archiveresourcegroup;archhanavm1/protectedItems/SAPHanaDatabase;h15;systemdb/recoveryPoints/118475863557998","name":"118475863557998","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSAPHanaRecoveryPoint","recoveryPointTimeInUTC":"2021-02-01T12:00:15.009Z","type":"Full","recoveryPointTierDetails":[{"type":2,"status":1}],"recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":true,"additionalInfo":""}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;archiveresourcegroup;archhanavm1/protectedItems/SAPHanaDatabase;h15;systemdb/recoveryPoints/122258461196009","name":"122258461196009","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSAPHanaRecoveryPoint","recoveryPointTimeInUTC":"2021-01-31T12:00:16.729Z","type":"Full","recoveryPointTierDetails":[{"type":2,"status":1}],"recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":true,"additionalInfo":""}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;archiveresourcegroup;archhanavm1/protectedItems/SAPHanaDatabase;h15;systemdb/recoveryPoints/116584018931286","name":"116584018931286","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSAPHanaRecoveryPoint","recoveryPointTimeInUTC":"2021-01-30T12:00:15.915Z","type":"Full","recoveryPointTierDetails":[{"type":2,"status":1}],"recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":true,"additionalInfo":""}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;archiveresourcegroup;archhanavm1/protectedItems/SAPHanaDatabase;h15;systemdb/recoveryPoints/119021472543402","name":"119021472543402","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSAPHanaRecoveryPoint","recoveryPointTimeInUTC":"2021-01-29T12:00:14.494Z","type":"Full","recoveryPointTierDetails":[{"type":2,"status":1}],"recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":true,"additionalInfo":""}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;archiveresourcegroup;archhanavm1/protectedItems/SAPHanaDatabase;h15;systemdb/recoveryPoints/DefaultRangeRecoveryPoint","name":"DefaultRangeRecoveryPoint","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSAPHanaPointInTimeRecoveryPoint","timeRanges":[],"type":"Log"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '11253' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 11:54:27 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' + x-powered-by: + - ASP.NET + 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 -i -c --backup-management-type --is-ready-for-move --target-tier --query + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BArchiveResourceGroup%3BArchHanaVM1/protectedItems/SAPHanaDatabase%3Bh15%3Bsystemdb?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;archiveresourcegroup;archhanavm1/protectedItems/SAPHanaDatabase;h15;systemdb","name":"SAPHanaDatabase;h15;systemdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"PersistentDegraded","resourceHealthDetails":[{"code":520531,"title":"UserErrorHANASystemDBNotRunning","message":"SYSTEMDB + for the SAP HANA instance is not in running state.","recommendations":["Please + start the SAP HANA system by running the command ''HDB start'' as the sidadm + user and retry the operation."]}]}},"friendlyName":"systemdb","serverName":"BVTD2HSuse15","parentName":"H15","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Unhealthy","protectionState":"Protected","lastBackupStatus":"Unhealthy","lastBackupTime":"2021-06-21T12:06:22.1255061Z","lastBackupErrorDetail":{"code":"UserErrorHANASystemDBNotRunning","message":"SYSTEMDB + for the SAP HANA instance is not in running state.","recommendations":["Please + start the SAP HANA system by running the command ''HDB start'' as the sidadm + user and retry the operation."]},"protectedItemDataSourceId":"17592946582397","protectedItemHealthStatus":"Unhealthy","extendedInfo":{"oldestRecoveryPoint":"2021-01-29T12:00:14.494Z","recoveryPointCount":16,"policyState":"Consistent"},"protectedItemType":"AzureVmWorkloadSAPHanaDatabase","backupManagementType":"AzureWorkload","workloadType":"SAPHanaDatabase","containerName":"VMAppContainer;compute;archiveresourcegroup;archhanavm1","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/archiveresourcegroup/providers/Microsoft.Compute/virtualMachines/archhanavm1","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupPolicies/saphanaltr","lastRecoveryPoint":"2021-02-12T02:27:42.024Z","isArchiveEnabled":false}}' + headers: + cache-control: + - no-cache + content-length: + - '2179' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 11:54:28 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '148' + x-powered-by: + - ASP.NET + 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 -i -c --backup-management-type --is-ready-for-move --target-tier --query + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Barchiveresourcegroup%3Barchhanavm1/protectedItems/SAPHanaDatabase%3Bh15%3Bsystemdb/recoveryPoints?api-version=2021-01-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;archiveresourcegroup;archhanavm1/protectedItems/SAPHanaDatabase;h15;systemdb/recoveryPoints/117403551765423","name":"117403551765423","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSAPHanaRecoveryPoint","recoveryPointTimeInUTC":"2021-02-11T12:00:14.754Z","type":"Full","recoveryPointTierDetails":[{"type":2,"status":1}],"recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":false,"additionalInfo":"Recovery-Point + having active dependencies for restore is not eligible for Archive Move. "}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;archiveresourcegroup;archhanavm1/protectedItems/SAPHanaDatabase;h15;systemdb/recoveryPoints/112766743026087","name":"112766743026087","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSAPHanaRecoveryPoint","recoveryPointTimeInUTC":"2021-02-10T12:00:14.79Z","type":"Full","recoveryPointTierDetails":[{"type":3,"status":4,"extendedInfo":{"RehydratedRPExpiryTime":"2021-07-07T09:46:04.2869345Z"}}],"recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":false,"additionalInfo":"Recovery-Point + is not eligible for archive move as it has already been moved to archive tier. + "}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;archiveresourcegroup;archhanavm1/protectedItems/SAPHanaDatabase;h15;systemdb/recoveryPoints/119145683997902","name":"119145683997902","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSAPHanaRecoveryPoint","recoveryPointTimeInUTC":"2021-02-09T12:00:15.554Z","type":"Full","recoveryPointTierDetails":[{"type":3,"status":1}],"recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":false,"additionalInfo":"Recovery-Point + is not eligible for archive move as it has already been moved to archive tier. + "}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;archiveresourcegroup;archhanavm1/protectedItems/SAPHanaDatabase;h15;systemdb/recoveryPoints/116884148315522","name":"116884148315522","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSAPHanaRecoveryPoint","recoveryPointTimeInUTC":"2021-02-08T12:00:13.119Z","type":"Full","recoveryPointTierDetails":[{"type":2,"status":1}],"recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":true,"additionalInfo":""}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;archiveresourcegroup;archhanavm1/protectedItems/SAPHanaDatabase;h15;systemdb/recoveryPoints/109855477669987","name":"109855477669987","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSAPHanaRecoveryPoint","recoveryPointTimeInUTC":"2021-02-07T12:00:15.774Z","type":"Full","recoveryPointTierDetails":[{"type":2,"status":1}],"recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":true,"additionalInfo":""}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;archiveresourcegroup;archhanavm1/protectedItems/SAPHanaDatabase;h15;systemdb/recoveryPoints/122854995757371","name":"122854995757371","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSAPHanaRecoveryPoint","recoveryPointTimeInUTC":"2021-02-06T12:00:12.877Z","type":"Full","recoveryPointTierDetails":[{"type":2,"status":1}],"recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":true,"additionalInfo":""}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;archiveresourcegroup;archhanavm1/protectedItems/SAPHanaDatabase;h15;systemdb/recoveryPoints/118492316144851","name":"118492316144851","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSAPHanaRecoveryPoint","recoveryPointTimeInUTC":"2021-02-05T12:00:13.909Z","type":"Full","recoveryPointTierDetails":[{"type":2,"status":1}],"recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":true,"additionalInfo":""}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;archiveresourcegroup;archhanavm1/protectedItems/SAPHanaDatabase;h15;systemdb/recoveryPoints/110092463008623","name":"110092463008623","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSAPHanaRecoveryPoint","recoveryPointTimeInUTC":"2021-02-04T12:00:16.647Z","type":"Full","recoveryPointTierDetails":[{"type":2,"status":1}],"recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":true,"additionalInfo":""}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;archiveresourcegroup;archhanavm1/protectedItems/SAPHanaDatabase;h15;systemdb/recoveryPoints/112099468275258","name":"112099468275258","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSAPHanaRecoveryPoint","recoveryPointTimeInUTC":"2021-02-03T12:00:15.167Z","type":"Full","recoveryPointTierDetails":[{"type":2,"status":1}],"recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":true,"additionalInfo":""}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;archiveresourcegroup;archhanavm1/protectedItems/SAPHanaDatabase;h15;systemdb/recoveryPoints/120101569339838","name":"120101569339838","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSAPHanaRecoveryPoint","recoveryPointTimeInUTC":"2021-02-02T12:00:15.279Z","type":"Full","recoveryPointTierDetails":[{"type":2,"status":1}],"recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":true,"additionalInfo":""}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;archiveresourcegroup;archhanavm1/protectedItems/SAPHanaDatabase;h15;systemdb/recoveryPoints/118475863557998","name":"118475863557998","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSAPHanaRecoveryPoint","recoveryPointTimeInUTC":"2021-02-01T12:00:15.009Z","type":"Full","recoveryPointTierDetails":[{"type":2,"status":1}],"recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":true,"additionalInfo":""}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;archiveresourcegroup;archhanavm1/protectedItems/SAPHanaDatabase;h15;systemdb/recoveryPoints/122258461196009","name":"122258461196009","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSAPHanaRecoveryPoint","recoveryPointTimeInUTC":"2021-01-31T12:00:16.729Z","type":"Full","recoveryPointTierDetails":[{"type":2,"status":1}],"recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":true,"additionalInfo":""}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;archiveresourcegroup;archhanavm1/protectedItems/SAPHanaDatabase;h15;systemdb/recoveryPoints/116584018931286","name":"116584018931286","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSAPHanaRecoveryPoint","recoveryPointTimeInUTC":"2021-01-30T12:00:15.915Z","type":"Full","recoveryPointTierDetails":[{"type":2,"status":1}],"recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":true,"additionalInfo":""}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;archiveresourcegroup;archhanavm1/protectedItems/SAPHanaDatabase;h15;systemdb/recoveryPoints/119021472543402","name":"119021472543402","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSAPHanaRecoveryPoint","recoveryPointTimeInUTC":"2021-01-29T12:00:14.494Z","type":"Full","recoveryPointTierDetails":[{"type":2,"status":1}],"recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":true,"additionalInfo":""}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;archiveresourcegroup;archhanavm1/protectedItems/SAPHanaDatabase;h15;systemdb/recoveryPoints/DefaultRangeRecoveryPoint","name":"DefaultRangeRecoveryPoint","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSAPHanaPointInTimeRecoveryPoint","timeRanges":[],"type":"Log"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '11253' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 11:54:29 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '148' + x-powered-by: + - ASP.NET + 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 -i -c --backup-management-type --tier --query + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BArchiveResourceGroup%3BArchHanaVM1/protectedItems/SAPHanaDatabase%3Bh15%3Bsystemdb?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;archiveresourcegroup;archhanavm1/protectedItems/SAPHanaDatabase;h15;systemdb","name":"SAPHanaDatabase;h15;systemdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"PersistentDegraded","resourceHealthDetails":[{"code":520531,"title":"UserErrorHANASystemDBNotRunning","message":"SYSTEMDB + for the SAP HANA instance is not in running state.","recommendations":["Please + start the SAP HANA system by running the command ''HDB start'' as the sidadm + user and retry the operation."]}]}},"friendlyName":"systemdb","serverName":"BVTD2HSuse15","parentName":"H15","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Unhealthy","protectionState":"Protected","lastBackupStatus":"Unhealthy","lastBackupTime":"2021-06-21T12:06:22.1255061Z","lastBackupErrorDetail":{"code":"UserErrorHANASystemDBNotRunning","message":"SYSTEMDB + for the SAP HANA instance is not in running state.","recommendations":["Please + start the SAP HANA system by running the command ''HDB start'' as the sidadm + user and retry the operation."]},"protectedItemDataSourceId":"17592946582397","protectedItemHealthStatus":"Unhealthy","extendedInfo":{"oldestRecoveryPoint":"2021-01-29T12:00:14.494Z","recoveryPointCount":16,"policyState":"Consistent"},"protectedItemType":"AzureVmWorkloadSAPHanaDatabase","backupManagementType":"AzureWorkload","workloadType":"SAPHanaDatabase","containerName":"VMAppContainer;compute;archiveresourcegroup;archhanavm1","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/archiveresourcegroup/providers/Microsoft.Compute/virtualMachines/archhanavm1","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupPolicies/saphanaltr","lastRecoveryPoint":"2021-02-12T02:27:42.024Z","isArchiveEnabled":false}}' + headers: + cache-control: + - no-cache + content-length: + - '2179' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 11:54:29 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' + x-powered-by: + - ASP.NET + 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 -i -c --backup-management-type --tier --query + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Barchiveresourcegroup%3Barchhanavm1/protectedItems/SAPHanaDatabase%3Bh15%3Bsystemdb/recoveryPoints?api-version=2021-01-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;archiveresourcegroup;archhanavm1/protectedItems/SAPHanaDatabase;h15;systemdb/recoveryPoints/117403551765423","name":"117403551765423","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSAPHanaRecoveryPoint","recoveryPointTimeInUTC":"2021-02-11T12:00:14.754Z","type":"Full","recoveryPointTierDetails":[{"type":2,"status":1}],"recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":false,"additionalInfo":"Recovery-Point + having active dependencies for restore is not eligible for Archive Move. "}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;archiveresourcegroup;archhanavm1/protectedItems/SAPHanaDatabase;h15;systemdb/recoveryPoints/112766743026087","name":"112766743026087","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSAPHanaRecoveryPoint","recoveryPointTimeInUTC":"2021-02-10T12:00:14.79Z","type":"Full","recoveryPointTierDetails":[{"type":3,"status":4,"extendedInfo":{"RehydratedRPExpiryTime":"2021-07-07T09:46:04.2869345Z"}}],"recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":false,"additionalInfo":"Recovery-Point + is not eligible for archive move as it has already been moved to archive tier. + "}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;archiveresourcegroup;archhanavm1/protectedItems/SAPHanaDatabase;h15;systemdb/recoveryPoints/119145683997902","name":"119145683997902","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSAPHanaRecoveryPoint","recoveryPointTimeInUTC":"2021-02-09T12:00:15.554Z","type":"Full","recoveryPointTierDetails":[{"type":3,"status":1}],"recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":false,"additionalInfo":"Recovery-Point + is not eligible for archive move as it has already been moved to archive tier. + "}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;archiveresourcegroup;archhanavm1/protectedItems/SAPHanaDatabase;h15;systemdb/recoveryPoints/116884148315522","name":"116884148315522","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSAPHanaRecoveryPoint","recoveryPointTimeInUTC":"2021-02-08T12:00:13.119Z","type":"Full","recoveryPointTierDetails":[{"type":2,"status":1}],"recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":true,"additionalInfo":""}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;archiveresourcegroup;archhanavm1/protectedItems/SAPHanaDatabase;h15;systemdb/recoveryPoints/109855477669987","name":"109855477669987","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSAPHanaRecoveryPoint","recoveryPointTimeInUTC":"2021-02-07T12:00:15.774Z","type":"Full","recoveryPointTierDetails":[{"type":2,"status":1}],"recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":true,"additionalInfo":""}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;archiveresourcegroup;archhanavm1/protectedItems/SAPHanaDatabase;h15;systemdb/recoveryPoints/122854995757371","name":"122854995757371","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSAPHanaRecoveryPoint","recoveryPointTimeInUTC":"2021-02-06T12:00:12.877Z","type":"Full","recoveryPointTierDetails":[{"type":2,"status":1}],"recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":true,"additionalInfo":""}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;archiveresourcegroup;archhanavm1/protectedItems/SAPHanaDatabase;h15;systemdb/recoveryPoints/118492316144851","name":"118492316144851","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSAPHanaRecoveryPoint","recoveryPointTimeInUTC":"2021-02-05T12:00:13.909Z","type":"Full","recoveryPointTierDetails":[{"type":2,"status":1}],"recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":true,"additionalInfo":""}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;archiveresourcegroup;archhanavm1/protectedItems/SAPHanaDatabase;h15;systemdb/recoveryPoints/110092463008623","name":"110092463008623","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSAPHanaRecoveryPoint","recoveryPointTimeInUTC":"2021-02-04T12:00:16.647Z","type":"Full","recoveryPointTierDetails":[{"type":2,"status":1}],"recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":true,"additionalInfo":""}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;archiveresourcegroup;archhanavm1/protectedItems/SAPHanaDatabase;h15;systemdb/recoveryPoints/112099468275258","name":"112099468275258","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSAPHanaRecoveryPoint","recoveryPointTimeInUTC":"2021-02-03T12:00:15.167Z","type":"Full","recoveryPointTierDetails":[{"type":2,"status":1}],"recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":true,"additionalInfo":""}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;archiveresourcegroup;archhanavm1/protectedItems/SAPHanaDatabase;h15;systemdb/recoveryPoints/120101569339838","name":"120101569339838","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSAPHanaRecoveryPoint","recoveryPointTimeInUTC":"2021-02-02T12:00:15.279Z","type":"Full","recoveryPointTierDetails":[{"type":2,"status":1}],"recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":true,"additionalInfo":""}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;archiveresourcegroup;archhanavm1/protectedItems/SAPHanaDatabase;h15;systemdb/recoveryPoints/118475863557998","name":"118475863557998","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSAPHanaRecoveryPoint","recoveryPointTimeInUTC":"2021-02-01T12:00:15.009Z","type":"Full","recoveryPointTierDetails":[{"type":2,"status":1}],"recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":true,"additionalInfo":""}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;archiveresourcegroup;archhanavm1/protectedItems/SAPHanaDatabase;h15;systemdb/recoveryPoints/122258461196009","name":"122258461196009","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSAPHanaRecoveryPoint","recoveryPointTimeInUTC":"2021-01-31T12:00:16.729Z","type":"Full","recoveryPointTierDetails":[{"type":2,"status":1}],"recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":true,"additionalInfo":""}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;archiveresourcegroup;archhanavm1/protectedItems/SAPHanaDatabase;h15;systemdb/recoveryPoints/116584018931286","name":"116584018931286","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSAPHanaRecoveryPoint","recoveryPointTimeInUTC":"2021-01-30T12:00:15.915Z","type":"Full","recoveryPointTierDetails":[{"type":2,"status":1}],"recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":true,"additionalInfo":""}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;archiveresourcegroup;archhanavm1/protectedItems/SAPHanaDatabase;h15;systemdb/recoveryPoints/119021472543402","name":"119021472543402","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSAPHanaRecoveryPoint","recoveryPointTimeInUTC":"2021-01-29T12:00:14.494Z","type":"Full","recoveryPointTierDetails":[{"type":2,"status":1}],"recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":true,"additionalInfo":""}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;archiveresourcegroup;archhanavm1/protectedItems/SAPHanaDatabase;h15;systemdb/recoveryPoints/DefaultRangeRecoveryPoint","name":"DefaultRangeRecoveryPoint","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSAPHanaPointInTimeRecoveryPoint","timeRanges":[],"type":"Log"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '11253' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 11:54:31 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup recoverypoint move + Connection: + - keep-alive + ParameterSetName: + - -g -v -i -c --source-tier --destination-tier --rp-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BArchiveResourceGroup%3BArchHanaVM1/protectedItems/SAPHanaDatabase%3Bh15%3Bsystemdb?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;archiveresourcegroup;archhanavm1/protectedItems/SAPHanaDatabase;h15;systemdb","name":"SAPHanaDatabase;h15;systemdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"PersistentDegraded","resourceHealthDetails":[{"code":520531,"title":"UserErrorHANASystemDBNotRunning","message":"SYSTEMDB + for the SAP HANA instance is not in running state.","recommendations":["Please + start the SAP HANA system by running the command ''HDB start'' as the sidadm + user and retry the operation."]}]}},"friendlyName":"systemdb","serverName":"BVTD2HSuse15","parentName":"H15","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Unhealthy","protectionState":"Protected","lastBackupStatus":"Unhealthy","lastBackupTime":"2021-06-21T12:06:22.1255061Z","lastBackupErrorDetail":{"code":"UserErrorHANASystemDBNotRunning","message":"SYSTEMDB + for the SAP HANA instance is not in running state.","recommendations":["Please + start the SAP HANA system by running the command ''HDB start'' as the sidadm + user and retry the operation."]},"protectedItemDataSourceId":"17592946582397","protectedItemHealthStatus":"Unhealthy","extendedInfo":{"oldestRecoveryPoint":"2021-01-29T12:00:14.494Z","recoveryPointCount":16,"policyState":"Consistent"},"protectedItemType":"AzureVmWorkloadSAPHanaDatabase","backupManagementType":"AzureWorkload","workloadType":"SAPHanaDatabase","containerName":"VMAppContainer;compute;archiveresourcegroup;archhanavm1","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/archiveresourcegroup/providers/Microsoft.Compute/virtualMachines/archhanavm1","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupPolicies/saphanaltr","lastRecoveryPoint":"2021-02-12T02:27:42.024Z","isArchiveEnabled":false}}' + headers: + cache-control: + - no-cache + content-length: + - '2179' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 11:54:33 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '148' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"sourceTierType": "HardenedRP", "targetTierType": "ArchivedRP"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup recoverypoint move + Connection: + - keep-alive + Content-Length: + - '64' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -v -i -c --source-tier --destination-tier --rp-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Barchiveresourcegroup%3Barchhanavm1/protectedItems/SAPHanaDatabase%3Bh15%3Bsystemdb/recoveryPoints/116884148315522/move?api-version=2021-01-01 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;archiveresourcegroup;archhanavm1/protectedItems/SAPHanaDatabase;h15;systemdb/operationsStatus/7bfd7531-3eb1-473d-a3a5-300a7235b95a?api-version=2021-01-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Tue, 22 Jun 2021 11:54:35 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;archiveresourcegroup;archhanavm1/protectedItems/SAPHanaDatabase;h15;systemdb/operationResults/7bfd7531-3eb1-473d-a3a5-300a7235b95a?api-version=2021-01-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup recoverypoint move + Connection: + - keep-alive + ParameterSetName: + - -g -v -i -c --source-tier --destination-tier --rp-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupOperations/7bfd7531-3eb1-473d-a3a5-300a7235b95a?api-version=2021-01-01 + response: + body: + string: '{"id":"7bfd7531-3eb1-473d-a3a5-300a7235b95a","name":"7bfd7531-3eb1-473d-a3a5-300a7235b95a","status":"InProgress","startTime":"2021-06-22T11:54:35.3098617Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 11:54:36 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup recoverypoint move + Connection: + - keep-alive + ParameterSetName: + - -g -v -i -c --source-tier --destination-tier --rp-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupOperations/7bfd7531-3eb1-473d-a3a5-300a7235b95a?api-version=2021-01-01 + response: + body: + string: '{"id":"7bfd7531-3eb1-473d-a3a5-300a7235b95a","name":"7bfd7531-3eb1-473d-a3a5-300a7235b95a","status":"InProgress","startTime":"2021-06-22T11:54:35.3098617Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 11:54:38 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '148' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup recoverypoint move + Connection: + - keep-alive + ParameterSetName: + - -g -v -i -c --source-tier --destination-tier --rp-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupOperations/7bfd7531-3eb1-473d-a3a5-300a7235b95a?api-version=2021-01-01 + response: + body: + string: '{"id":"7bfd7531-3eb1-473d-a3a5-300a7235b95a","name":"7bfd7531-3eb1-473d-a3a5-300a7235b95a","status":"InProgress","startTime":"2021-06-22T11:54:35.3098617Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 11:54:39 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '147' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup recoverypoint move + Connection: + - keep-alive + ParameterSetName: + - -g -v -i -c --source-tier --destination-tier --rp-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupOperations/7bfd7531-3eb1-473d-a3a5-300a7235b95a?api-version=2021-01-01 + response: + body: + string: '{"id":"7bfd7531-3eb1-473d-a3a5-300a7235b95a","name":"7bfd7531-3eb1-473d-a3a5-300a7235b95a","status":"InProgress","startTime":"2021-06-22T11:54:35.3098617Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 11:54:41 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '146' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup recoverypoint move + Connection: + - keep-alive + ParameterSetName: + - -g -v -i -c --source-tier --destination-tier --rp-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupOperations/7bfd7531-3eb1-473d-a3a5-300a7235b95a?api-version=2021-01-01 + response: + body: + string: '{"id":"7bfd7531-3eb1-473d-a3a5-300a7235b95a","name":"7bfd7531-3eb1-473d-a3a5-300a7235b95a","status":"InProgress","startTime":"2021-06-22T11:54:35.3098617Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 11:54:42 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '145' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup recoverypoint move + Connection: + - keep-alive + ParameterSetName: + - -g -v -i -c --source-tier --destination-tier --rp-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupOperations/7bfd7531-3eb1-473d-a3a5-300a7235b95a?api-version=2021-01-01 + response: + body: + string: '{"id":"7bfd7531-3eb1-473d-a3a5-300a7235b95a","name":"7bfd7531-3eb1-473d-a3a5-300a7235b95a","status":"InProgress","startTime":"2021-06-22T11:54:35.3098617Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 11:54:44 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '144' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup recoverypoint move + Connection: + - keep-alive + ParameterSetName: + - -g -v -i -c --source-tier --destination-tier --rp-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupOperations/7bfd7531-3eb1-473d-a3a5-300a7235b95a?api-version=2021-01-01 + response: + body: + string: '{"id":"7bfd7531-3eb1-473d-a3a5-300a7235b95a","name":"7bfd7531-3eb1-473d-a3a5-300a7235b95a","status":"InProgress","startTime":"2021-06-22T11:54:35.3098617Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 11:54:45 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '143' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup recoverypoint move + Connection: + - keep-alive + ParameterSetName: + - -g -v -i -c --source-tier --destination-tier --rp-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupOperations/7bfd7531-3eb1-473d-a3a5-300a7235b95a?api-version=2021-01-01 + response: + body: + string: '{"id":"7bfd7531-3eb1-473d-a3a5-300a7235b95a","name":"7bfd7531-3eb1-473d-a3a5-300a7235b95a","status":"InProgress","startTime":"2021-06-22T11:54:35.3098617Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 11:54:46 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '142' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup recoverypoint move + Connection: + - keep-alive + ParameterSetName: + - -g -v -i -c --source-tier --destination-tier --rp-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupOperations/7bfd7531-3eb1-473d-a3a5-300a7235b95a?api-version=2021-01-01 + response: + body: + string: '{"id":"7bfd7531-3eb1-473d-a3a5-300a7235b95a","name":"7bfd7531-3eb1-473d-a3a5-300a7235b95a","status":"InProgress","startTime":"2021-06-22T11:54:35.3098617Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 11:54:48 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '141' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup recoverypoint move + Connection: + - keep-alive + ParameterSetName: + - -g -v -i -c --source-tier --destination-tier --rp-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupOperations/7bfd7531-3eb1-473d-a3a5-300a7235b95a?api-version=2021-01-01 + response: + body: + string: '{"id":"7bfd7531-3eb1-473d-a3a5-300a7235b95a","name":"7bfd7531-3eb1-473d-a3a5-300a7235b95a","status":"InProgress","startTime":"2021-06-22T11:54:35.3098617Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 11:54:49 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '140' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup recoverypoint move + Connection: + - keep-alive + ParameterSetName: + - -g -v -i -c --source-tier --destination-tier --rp-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupOperations/7bfd7531-3eb1-473d-a3a5-300a7235b95a?api-version=2021-01-01 + response: + body: + string: '{"id":"7bfd7531-3eb1-473d-a3a5-300a7235b95a","name":"7bfd7531-3eb1-473d-a3a5-300a7235b95a","status":"InProgress","startTime":"2021-06-22T11:54:35.3098617Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 11:54:51 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '139' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup recoverypoint move + Connection: + - keep-alive + ParameterSetName: + - -g -v -i -c --source-tier --destination-tier --rp-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupOperations/7bfd7531-3eb1-473d-a3a5-300a7235b95a?api-version=2021-01-01 + response: + body: + string: '{"id":"7bfd7531-3eb1-473d-a3a5-300a7235b95a","name":"7bfd7531-3eb1-473d-a3a5-300a7235b95a","status":"InProgress","startTime":"2021-06-22T11:54:35.3098617Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 11:54:52 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '138' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup recoverypoint move + Connection: + - keep-alive + ParameterSetName: + - -g -v -i -c --source-tier --destination-tier --rp-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupOperations/7bfd7531-3eb1-473d-a3a5-300a7235b95a?api-version=2021-01-01 + response: + body: + string: '{"id":"7bfd7531-3eb1-473d-a3a5-300a7235b95a","name":"7bfd7531-3eb1-473d-a3a5-300a7235b95a","status":"InProgress","startTime":"2021-06-22T11:54:35.3098617Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 11:54:54 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '137' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup recoverypoint move + Connection: + - keep-alive + ParameterSetName: + - -g -v -i -c --source-tier --destination-tier --rp-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupOperations/7bfd7531-3eb1-473d-a3a5-300a7235b95a?api-version=2021-01-01 + response: + body: + string: '{"id":"7bfd7531-3eb1-473d-a3a5-300a7235b95a","name":"7bfd7531-3eb1-473d-a3a5-300a7235b95a","status":"InProgress","startTime":"2021-06-22T11:54:35.3098617Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 11:54:55 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '136' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup recoverypoint move + Connection: + - keep-alive + ParameterSetName: + - -g -v -i -c --source-tier --destination-tier --rp-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupOperations/7bfd7531-3eb1-473d-a3a5-300a7235b95a?api-version=2021-01-01 + response: + body: + string: '{"id":"7bfd7531-3eb1-473d-a3a5-300a7235b95a","name":"7bfd7531-3eb1-473d-a3a5-300a7235b95a","status":"InProgress","startTime":"2021-06-22T11:54:35.3098617Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 11:54:56 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '135' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup recoverypoint move + Connection: + - keep-alive + ParameterSetName: + - -g -v -i -c --source-tier --destination-tier --rp-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupOperations/7bfd7531-3eb1-473d-a3a5-300a7235b95a?api-version=2021-01-01 + response: + body: + string: '{"id":"7bfd7531-3eb1-473d-a3a5-300a7235b95a","name":"7bfd7531-3eb1-473d-a3a5-300a7235b95a","status":"InProgress","startTime":"2021-06-22T11:54:35.3098617Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 11:54:58 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '134' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup recoverypoint move + Connection: + - keep-alive + ParameterSetName: + - -g -v -i -c --source-tier --destination-tier --rp-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupOperations/7bfd7531-3eb1-473d-a3a5-300a7235b95a?api-version=2021-01-01 + response: + body: + string: '{"id":"7bfd7531-3eb1-473d-a3a5-300a7235b95a","name":"7bfd7531-3eb1-473d-a3a5-300a7235b95a","status":"InProgress","startTime":"2021-06-22T11:54:35.3098617Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 11:54:59 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '133' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup recoverypoint move + Connection: + - keep-alive + ParameterSetName: + - -g -v -i -c --source-tier --destination-tier --rp-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupOperations/7bfd7531-3eb1-473d-a3a5-300a7235b95a?api-version=2021-01-01 + response: + body: + string: '{"id":"7bfd7531-3eb1-473d-a3a5-300a7235b95a","name":"7bfd7531-3eb1-473d-a3a5-300a7235b95a","status":"InProgress","startTime":"2021-06-22T11:54:35.3098617Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 11:55:01 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '132' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup recoverypoint move + Connection: + - keep-alive + ParameterSetName: + - -g -v -i -c --source-tier --destination-tier --rp-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupOperations/7bfd7531-3eb1-473d-a3a5-300a7235b95a?api-version=2021-01-01 + response: + body: + string: '{"id":"7bfd7531-3eb1-473d-a3a5-300a7235b95a","name":"7bfd7531-3eb1-473d-a3a5-300a7235b95a","status":"InProgress","startTime":"2021-06-22T11:54:35.3098617Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 11:55:02 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '131' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup recoverypoint move + Connection: + - keep-alive + ParameterSetName: + - -g -v -i -c --source-tier --destination-tier --rp-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupOperations/7bfd7531-3eb1-473d-a3a5-300a7235b95a?api-version=2021-01-01 + response: + body: + string: '{"id":"7bfd7531-3eb1-473d-a3a5-300a7235b95a","name":"7bfd7531-3eb1-473d-a3a5-300a7235b95a","status":"InProgress","startTime":"2021-06-22T11:54:35.3098617Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 11:55:04 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '130' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup recoverypoint move + Connection: + - keep-alive + ParameterSetName: + - -g -v -i -c --source-tier --destination-tier --rp-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupOperations/7bfd7531-3eb1-473d-a3a5-300a7235b95a?api-version=2021-01-01 + response: + body: + string: '{"id":"7bfd7531-3eb1-473d-a3a5-300a7235b95a","name":"7bfd7531-3eb1-473d-a3a5-300a7235b95a","status":"InProgress","startTime":"2021-06-22T11:54:35.3098617Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 11:55:05 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '129' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup recoverypoint move + Connection: + - keep-alive + ParameterSetName: + - -g -v -i -c --source-tier --destination-tier --rp-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupOperations/7bfd7531-3eb1-473d-a3a5-300a7235b95a?api-version=2021-01-01 + response: + body: + string: '{"id":"7bfd7531-3eb1-473d-a3a5-300a7235b95a","name":"7bfd7531-3eb1-473d-a3a5-300a7235b95a","status":"InProgress","startTime":"2021-06-22T11:54:35.3098617Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 11:55:08 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '128' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup recoverypoint move + Connection: + - keep-alive + ParameterSetName: + - -g -v -i -c --source-tier --destination-tier --rp-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupOperations/7bfd7531-3eb1-473d-a3a5-300a7235b95a?api-version=2021-01-01 + response: + body: + string: '{"id":"7bfd7531-3eb1-473d-a3a5-300a7235b95a","name":"7bfd7531-3eb1-473d-a3a5-300a7235b95a","status":"InProgress","startTime":"2021-06-22T11:54:35.3098617Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 11:55:09 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '127' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup recoverypoint move + Connection: + - keep-alive + ParameterSetName: + - -g -v -i -c --source-tier --destination-tier --rp-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupOperations/7bfd7531-3eb1-473d-a3a5-300a7235b95a?api-version=2021-01-01 + response: + body: + string: '{"id":"7bfd7531-3eb1-473d-a3a5-300a7235b95a","name":"7bfd7531-3eb1-473d-a3a5-300a7235b95a","status":"InProgress","startTime":"2021-06-22T11:54:35.3098617Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 11:55:11 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '126' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup recoverypoint move + Connection: + - keep-alive + ParameterSetName: + - -g -v -i -c --source-tier --destination-tier --rp-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupOperations/7bfd7531-3eb1-473d-a3a5-300a7235b95a?api-version=2021-01-01 + response: + body: + string: '{"id":"7bfd7531-3eb1-473d-a3a5-300a7235b95a","name":"7bfd7531-3eb1-473d-a3a5-300a7235b95a","status":"InProgress","startTime":"2021-06-22T11:54:35.3098617Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 11:55:12 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '125' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup recoverypoint move + Connection: + - keep-alive + ParameterSetName: + - -g -v -i -c --source-tier --destination-tier --rp-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupOperations/7bfd7531-3eb1-473d-a3a5-300a7235b95a?api-version=2021-01-01 + response: + body: + string: '{"id":"7bfd7531-3eb1-473d-a3a5-300a7235b95a","name":"7bfd7531-3eb1-473d-a3a5-300a7235b95a","status":"InProgress","startTime":"2021-06-22T11:54:35.3098617Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 11:55:13 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '124' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup recoverypoint move + Connection: + - keep-alive + ParameterSetName: + - -g -v -i -c --source-tier --destination-tier --rp-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupOperations/7bfd7531-3eb1-473d-a3a5-300a7235b95a?api-version=2021-01-01 + response: + body: + string: '{"id":"7bfd7531-3eb1-473d-a3a5-300a7235b95a","name":"7bfd7531-3eb1-473d-a3a5-300a7235b95a","status":"InProgress","startTime":"2021-06-22T11:54:35.3098617Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 11:55:15 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '123' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup recoverypoint move + Connection: + - keep-alive + ParameterSetName: + - -g -v -i -c --source-tier --destination-tier --rp-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupOperations/7bfd7531-3eb1-473d-a3a5-300a7235b95a?api-version=2021-01-01 + response: + body: + string: '{"id":"7bfd7531-3eb1-473d-a3a5-300a7235b95a","name":"7bfd7531-3eb1-473d-a3a5-300a7235b95a","status":"InProgress","startTime":"2021-06-22T11:54:35.3098617Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 11:55:16 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '122' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup recoverypoint move + Connection: + - keep-alive + ParameterSetName: + - -g -v -i -c --source-tier --destination-tier --rp-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupOperations/7bfd7531-3eb1-473d-a3a5-300a7235b95a?api-version=2021-01-01 + response: + body: + string: '{"id":"7bfd7531-3eb1-473d-a3a5-300a7235b95a","name":"7bfd7531-3eb1-473d-a3a5-300a7235b95a","status":"InProgress","startTime":"2021-06-22T11:54:35.3098617Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 11:55:18 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '121' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup recoverypoint move + Connection: + - keep-alive + ParameterSetName: + - -g -v -i -c --source-tier --destination-tier --rp-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupOperations/7bfd7531-3eb1-473d-a3a5-300a7235b95a?api-version=2021-01-01 + response: + body: + string: '{"id":"7bfd7531-3eb1-473d-a3a5-300a7235b95a","name":"7bfd7531-3eb1-473d-a3a5-300a7235b95a","status":"InProgress","startTime":"2021-06-22T11:54:35.3098617Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 11:55:19 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '120' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup recoverypoint move + Connection: + - keep-alive + ParameterSetName: + - -g -v -i -c --source-tier --destination-tier --rp-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupOperations/7bfd7531-3eb1-473d-a3a5-300a7235b95a?api-version=2021-01-01 + response: + body: + string: '{"id":"7bfd7531-3eb1-473d-a3a5-300a7235b95a","name":"7bfd7531-3eb1-473d-a3a5-300a7235b95a","status":"InProgress","startTime":"2021-06-22T11:54:35.3098617Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 11:55:21 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '119' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup recoverypoint move + Connection: + - keep-alive + ParameterSetName: + - -g -v -i -c --source-tier --destination-tier --rp-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupOperations/7bfd7531-3eb1-473d-a3a5-300a7235b95a?api-version=2021-01-01 + response: + body: + string: '{"id":"7bfd7531-3eb1-473d-a3a5-300a7235b95a","name":"7bfd7531-3eb1-473d-a3a5-300a7235b95a","status":"InProgress","startTime":"2021-06-22T11:54:35.3098617Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 11:55:22 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '118' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup recoverypoint move + Connection: + - keep-alive + ParameterSetName: + - -g -v -i -c --source-tier --destination-tier --rp-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupOperations/7bfd7531-3eb1-473d-a3a5-300a7235b95a?api-version=2021-01-01 + response: + body: + string: '{"id":"7bfd7531-3eb1-473d-a3a5-300a7235b95a","name":"7bfd7531-3eb1-473d-a3a5-300a7235b95a","status":"InProgress","startTime":"2021-06-22T11:54:35.3098617Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 11:55:23 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '117' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup recoverypoint move + Connection: + - keep-alive + ParameterSetName: + - -g -v -i -c --source-tier --destination-tier --rp-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupOperations/7bfd7531-3eb1-473d-a3a5-300a7235b95a?api-version=2021-01-01 + response: + body: + string: '{"id":"7bfd7531-3eb1-473d-a3a5-300a7235b95a","name":"7bfd7531-3eb1-473d-a3a5-300a7235b95a","status":"Succeeded","startTime":"2021-06-22T11:54:35.3098617Z","endTime":"2021-06-22T11:54:35.3098617Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"7bfd7531-3eb1-473d-a3a5-300a7235b95a"}}' + headers: + cache-control: + - no-cache + content-length: + - '304' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 11:55:25 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '116' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup recoverypoint move + Connection: + - keep-alive + ParameterSetName: + - -g -v -i -c --source-tier --destination-tier --rp-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/7bfd7531-3eb1-473d-a3a5-300a7235b95a?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/7bfd7531-3eb1-473d-a3a5-300a7235b95a","name":"7bfd7531-3eb1-473d-a3a5-300a7235b95a","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT49.9097973S","extendedInfo":{"tasksList":[],"propertyBag":{"Recovery + Point Time":"08/02/2021 12:00:13"}},"isUserTriggered":true,"entityFriendlyName":"systemdb + [BVTD2HSuse15]","backupManagementType":"AzureWorkload","operation":"MoveRecoveryPoint","status":"Completed","startTime":"2021-06-22T11:54:35.3098617Z","endTime":"2021-06-22T11:55:25.219659Z","activityId":"9a9fb936-d350-11eb-9267-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '798' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 11:55:25 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup recoveryconfig show + Connection: + - keep-alive + ParameterSetName: + - --vault-name -g --restore-mode --item-name --container-name --rp-name + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BArchiveResourceGroup%3BArchHanaVM1/protectedItems/SAPHanaDatabase%3Bh15%3Bsystemdb?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;archiveresourcegroup;archhanavm1/protectedItems/SAPHanaDatabase;h15;systemdb","name":"SAPHanaDatabase;h15;systemdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"PersistentDegraded","resourceHealthDetails":[{"code":520531,"title":"UserErrorHANASystemDBNotRunning","message":"SYSTEMDB + for the SAP HANA instance is not in running state.","recommendations":["Please + start the SAP HANA system by running the command ''HDB start'' as the sidadm + user and retry the operation."]}]}},"friendlyName":"systemdb","serverName":"BVTD2HSuse15","parentName":"H15","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Unhealthy","protectionState":"Protected","lastBackupStatus":"Unhealthy","lastBackupTime":"2021-06-21T12:06:22.1255061Z","lastBackupErrorDetail":{"code":"UserErrorHANASystemDBNotRunning","message":"SYSTEMDB + for the SAP HANA instance is not in running state.","recommendations":["Please + start the SAP HANA system by running the command ''HDB start'' as the sidadm + user and retry the operation."]},"protectedItemDataSourceId":"17592946582397","protectedItemHealthStatus":"Unhealthy","extendedInfo":{"oldestRecoveryPoint":"2021-01-29T12:00:14.494Z","recoveryPointCount":16,"policyState":"Consistent"},"protectedItemType":"AzureVmWorkloadSAPHanaDatabase","backupManagementType":"AzureWorkload","workloadType":"SAPHanaDatabase","containerName":"VMAppContainer;compute;archiveresourcegroup;archhanavm1","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/archiveresourcegroup/providers/Microsoft.Compute/virtualMachines/archhanavm1","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupPolicies/saphanaltr","lastRecoveryPoint":"2021-02-12T02:27:42.024Z","isArchiveEnabled":false}}' + headers: + cache-control: + - no-cache + content-length: + - '2179' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 11:55:26 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup recoveryconfig show + Connection: + - keep-alive + ParameterSetName: + - --vault-name -g --restore-mode --item-name --container-name --rp-name + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BArchiveResourceGroup%3BArchHanaVM1/protectedItems/SAPHanaDatabase%3Bh15%3Bsystemdb?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;archiveresourcegroup;archhanavm1/protectedItems/SAPHanaDatabase;h15;systemdb","name":"SAPHanaDatabase;h15;systemdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"PersistentDegraded","resourceHealthDetails":[{"code":520531,"title":"UserErrorHANASystemDBNotRunning","message":"SYSTEMDB + for the SAP HANA instance is not in running state.","recommendations":["Please + start the SAP HANA system by running the command ''HDB start'' as the sidadm + user and retry the operation."]}]}},"friendlyName":"systemdb","serverName":"BVTD2HSuse15","parentName":"H15","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Unhealthy","protectionState":"Protected","lastBackupStatus":"Unhealthy","lastBackupTime":"2021-06-21T12:06:22.1255061Z","lastBackupErrorDetail":{"code":"UserErrorHANASystemDBNotRunning","message":"SYSTEMDB + for the SAP HANA instance is not in running state.","recommendations":["Please + start the SAP HANA system by running the command ''HDB start'' as the sidadm + user and retry the operation."]},"protectedItemDataSourceId":"17592946582397","protectedItemHealthStatus":"Unhealthy","extendedInfo":{"oldestRecoveryPoint":"2021-01-29T12:00:14.494Z","recoveryPointCount":16,"policyState":"Consistent"},"protectedItemType":"AzureVmWorkloadSAPHanaDatabase","backupManagementType":"AzureWorkload","workloadType":"SAPHanaDatabase","containerName":"VMAppContainer;compute;archiveresourcegroup;archhanavm1","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/archiveresourcegroup/providers/Microsoft.Compute/virtualMachines/archhanavm1","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupPolicies/saphanaltr","lastRecoveryPoint":"2021-02-12T02:27:42.024Z","isArchiveEnabled":false}}' + headers: + cache-control: + - no-cache + content-length: + - '2179' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 11:55:28 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '148' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup recoveryconfig show + Connection: + - keep-alive + ParameterSetName: + - --vault-name -g --restore-mode --item-name --container-name --rp-name + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Barchiveresourcegroup%3Barchhanavm1/protectedItems/SAPHanaDatabase%3Bh15%3Bsystemdb/recoveryPoints/119145683997902?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;archiveresourcegroup;archhanavm1/protectedItems/SAPHanaDatabase;h15;systemdb/recoveryPoints/119145683997902","name":"119145683997902","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSAPHanaRecoveryPoint","recoveryPointTimeInUTC":"2021-02-09T12:00:15.554Z","type":"Full","recoveryPointTierDetails":[{"type":3,"status":1}],"recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":false,"additionalInfo":"Recovery-Point + is not eligible for archive move as it has already been moved to archive tier. + "}}}}' + headers: + cache-control: + - no-cache + content-length: + - '830' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 11:55:28 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup restore restore-azurewl + Connection: + - keep-alive + ParameterSetName: + - -g -v --recovery-config --rehydration-priority + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Barchiveresourcegroup%3Barchhanavm1/protectedItems/SAPHanaDatabase%3Bh15%3Bsystemdb?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;archiveresourcegroup;archhanavm1/protectedItems/SAPHanaDatabase;h15;systemdb","name":"SAPHanaDatabase;h15;systemdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"PersistentDegraded","resourceHealthDetails":[{"code":520531,"title":"UserErrorHANASystemDBNotRunning","message":"SYSTEMDB + for the SAP HANA instance is not in running state.","recommendations":["Please + start the SAP HANA system by running the command ''HDB start'' as the sidadm + user and retry the operation."]}]}},"friendlyName":"systemdb","serverName":"BVTD2HSuse15","parentName":"H15","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Unhealthy","protectionState":"Protected","lastBackupStatus":"Unhealthy","lastBackupTime":"2021-06-21T12:06:22.1255061Z","lastBackupErrorDetail":{"code":"UserErrorHANASystemDBNotRunning","message":"SYSTEMDB + for the SAP HANA instance is not in running state.","recommendations":["Please + start the SAP HANA system by running the command ''HDB start'' as the sidadm + user and retry the operation."]},"protectedItemDataSourceId":"17592946582397","protectedItemHealthStatus":"Unhealthy","extendedInfo":{"oldestRecoveryPoint":"2021-01-29T12:00:14.494Z","recoveryPointCount":16,"policyState":"Consistent"},"protectedItemType":"AzureVmWorkloadSAPHanaDatabase","backupManagementType":"AzureWorkload","workloadType":"SAPHanaDatabase","containerName":"VMAppContainer;compute;archiveresourcegroup;archhanavm1","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/archiveresourcegroup/providers/Microsoft.Compute/virtualMachines/archhanavm1","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupPolicies/saphanaltr","lastRecoveryPoint":"2021-02-12T02:27:42.024Z","isArchiveEnabled":false}}' + headers: + cache-control: + - no-cache + content-length: + - '2179' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 11:55:29 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup restore restore-azurewl + Connection: + - keep-alive + ParameterSetName: + - -g -v --recovery-config --rehydration-priority + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Barchiveresourcegroup%3Barchhanavm1/protectedItems/SAPHanaDatabase%3Bh15%3Bsystemdb/recoveryPoints/119145683997902?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;archiveresourcegroup;archhanavm1/protectedItems/SAPHanaDatabase;h15;systemdb/recoveryPoints/119145683997902","name":"119145683997902","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSAPHanaRecoveryPoint","recoveryPointTimeInUTC":"2021-02-09T12:00:15.554Z","type":"Full","recoveryPointTierDetails":[{"type":3,"status":1}],"recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":false,"additionalInfo":"Recovery-Point + is not eligible for archive move as it has already been moved to archive tier. + "}}}}' + headers: + cache-control: + - no-cache + content-length: + - '830' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 11:55:29 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"properties": {"objectType": "AzureWorkloadSAPHanaRestoreWithRehydrateRequest", + "recoveryType": "OriginalLocation", "recoveryPointRehydrationInfo": {"rehydrationRetentionDuration": + "P15D", "rehydrationPriority": "High"}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup restore restore-azurewl + Connection: + - keep-alive + Content-Length: + - '222' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -v --recovery-config --rehydration-priority + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Barchiveresourcegroup%3Barchhanavm1/protectedItems/SAPHanaDatabase%3Bh15%3Bsystemdb/recoveryPoints/119145683997902/restore?api-version=2021-01-01 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;archiveresourcegroup;archhanavm1/protectedItems/SAPHanaDatabase;h15;systemdb/operationsStatus/57b3ad0d-7ca4-4fb5-9247-a61c50c2e249?api-version=2021-01-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Tue, 22 Jun 2021 11:55:31 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;archiveresourcegroup;archhanavm1/protectedItems/SAPHanaDatabase;h15;systemdb/operationResults/57b3ad0d-7ca4-4fb5-9247-a61c50c2e249?api-version=2021-01-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1195' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup restore restore-azurewl + Connection: + - keep-alive + ParameterSetName: + - -g -v --recovery-config --rehydration-priority + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupOperations/57b3ad0d-7ca4-4fb5-9247-a61c50c2e249?api-version=2021-01-01 + response: + body: + string: '{"id":"57b3ad0d-7ca4-4fb5-9247-a61c50c2e249","name":"57b3ad0d-7ca4-4fb5-9247-a61c50c2e249","status":"Succeeded","startTime":"2021-06-22T11:55:31.3930539Z","endTime":"0001-01-01T00:00:00","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"57b3ad0d-7ca4-4fb5-9247-a61c50c2e249"}}' + headers: + cache-control: + - no-cache + content-length: + - '295' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 11:55:33 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup restore restore-azurewl + Connection: + - keep-alive + ParameterSetName: + - -g -v --recovery-config --rehydration-priority + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/57b3ad0d-7ca4-4fb5-9247-a61c50c2e249?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/57b3ad0d-7ca4-4fb5-9247-a61c50c2e249","name":"57b3ad0d-7ca4-4fb5-9247-a61c50c2e249","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT2.6043704S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"systemdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T11:55:31.3930539Z","activityId":"bcef53fa-d350-11eb-a986-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '842' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 11:55:33 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_hana_restore.yaml b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_hana_restore.yaml index 711732edb54..f34885c4c5b 100644 --- a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_hana_restore.yaml +++ b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_hana_restore.yaml @@ -13,8 +13,8 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET @@ -30,7 +30,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:28:49 GMT + - Mon, 28 Jun 2021 09:29:23 GMT expires: - '-1' pragma: @@ -72,8 +72,8 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: PUT @@ -83,7 +83,7 @@ interactions: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -91,11 +91,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:28:49 GMT + - Mon, 28 Jun 2021 09:29:24 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -105,7 +105,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -125,18 +125,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -144,11 +144,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:28:50 GMT + - Mon, 28 Jun 2021 09:29:25 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -178,18 +178,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -197,11 +197,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:28:52 GMT + - Mon, 28 Jun 2021 09:29:27 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -231,18 +231,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -250,11 +250,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:28:53 GMT + - Mon, 28 Jun 2021 09:29:28 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -284,18 +284,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -303,11 +303,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:28:54 GMT + - Mon, 28 Jun 2021 09:29:30 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -337,18 +337,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -356,11 +356,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:28:56 GMT + - Mon, 28 Jun 2021 09:29:31 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -390,18 +390,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -409,11 +409,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:28:57 GMT + - Mon, 28 Jun 2021 09:29:33 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -443,18 +443,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -462,11 +462,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:28:59 GMT + - Mon, 28 Jun 2021 09:29:34 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -496,18 +496,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -515,11 +515,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:29:01 GMT + - Mon, 28 Jun 2021 09:29:35 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -549,18 +549,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -568,11 +568,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:29:03 GMT + - Mon, 28 Jun 2021 09:29:37 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -602,18 +602,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -621,11 +621,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:29:04 GMT + - Mon, 28 Jun 2021 09:29:39 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -655,18 +655,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -674,11 +674,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:29:06 GMT + - Mon, 28 Jun 2021 09:29:40 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -708,18 +708,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -727,11 +727,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:29:07 GMT + - Mon, 28 Jun 2021 09:29:41 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -761,18 +761,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -780,11 +780,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:29:09 GMT + - Mon, 28 Jun 2021 09:29:43 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -814,18 +814,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -833,11 +833,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:29:10 GMT + - Mon, 28 Jun 2021 09:29:44 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -867,18 +867,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -886,11 +886,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:29:12 GMT + - Mon, 28 Jun 2021 09:29:46 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -920,18 +920,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -939,11 +939,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:29:13 GMT + - Mon, 28 Jun 2021 09:29:47 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -973,18 +973,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -992,11 +992,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:29:14 GMT + - Mon, 28 Jun 2021 09:29:49 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -1026,18 +1026,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1045,11 +1045,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:29:16 GMT + - Mon, 28 Jun 2021 09:29:50 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -1079,18 +1079,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1098,11 +1098,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:29:17 GMT + - Mon, 28 Jun 2021 09:29:52 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -1132,18 +1132,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1151,11 +1151,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:29:19 GMT + - Mon, 28 Jun 2021 09:29:53 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -1185,18 +1185,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1204,11 +1204,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:29:20 GMT + - Mon, 28 Jun 2021 09:29:54 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -1238,18 +1238,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1257,11 +1257,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:29:21 GMT + - Mon, 28 Jun 2021 09:29:56 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -1291,18 +1291,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1310,11 +1310,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:29:24 GMT + - Mon, 28 Jun 2021 09:29:57 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -1344,18 +1344,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1363,11 +1363,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:29:25 GMT + - Mon, 28 Jun 2021 09:29:59 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -1397,18 +1397,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1416,11 +1416,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:29:27 GMT + - Mon, 28 Jun 2021 09:30:00 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -1450,18 +1450,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1469,11 +1469,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:29:28 GMT + - Mon, 28 Jun 2021 09:30:02 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -1503,18 +1503,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1522,11 +1522,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:29:29 GMT + - Mon, 28 Jun 2021 09:30:03 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -1556,18 +1556,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1575,11 +1575,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:29:31 GMT + - Mon, 28 Jun 2021 09:30:04 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -1609,18 +1609,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1628,11 +1628,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:29:32 GMT + - Mon, 28 Jun 2021 09:30:06 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -1662,18 +1662,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1681,11 +1681,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:29:34 GMT + - Mon, 28 Jun 2021 09:30:07 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -1715,18 +1715,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1734,11 +1734,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:29:35 GMT + - Mon, 28 Jun 2021 09:30:09 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -1768,18 +1768,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1787,11 +1787,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:29:37 GMT + - Mon, 28 Jun 2021 09:30:10 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -1821,18 +1821,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1840,11 +1840,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:29:38 GMT + - Mon, 28 Jun 2021 09:30:12 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -1874,18 +1874,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1893,11 +1893,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:29:39 GMT + - Mon, 28 Jun 2021 09:30:13 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -1927,18 +1927,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1946,11 +1946,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:29:41 GMT + - Mon, 28 Jun 2021 09:30:14 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -1980,18 +1980,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1999,11 +1999,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:29:43 GMT + - Mon, 28 Jun 2021 09:30:16 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -2033,18 +2033,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2052,11 +2052,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:29:44 GMT + - Mon, 28 Jun 2021 09:30:17 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -2086,18 +2086,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2105,11 +2105,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:29:45 GMT + - Mon, 28 Jun 2021 09:30:19 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -2139,18 +2139,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2158,11 +2158,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:29:47 GMT + - Mon, 28 Jun 2021 09:30:20 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -2192,18 +2192,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2211,11 +2211,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:29:48 GMT + - Mon, 28 Jun 2021 09:30:22 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -2245,18 +2245,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2264,11 +2264,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:29:50 GMT + - Mon, 28 Jun 2021 09:30:23 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -2298,18 +2298,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2317,11 +2317,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:29:51 GMT + - Mon, 28 Jun 2021 09:30:24 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -2351,18 +2351,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2370,11 +2370,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:29:52 GMT + - Mon, 28 Jun 2021 09:30:26 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -2404,18 +2404,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2423,11 +2423,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:29:54 GMT + - Mon, 28 Jun 2021 09:30:27 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -2457,18 +2457,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2476,11 +2476,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:29:55 GMT + - Mon, 28 Jun 2021 09:30:29 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -2510,18 +2510,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2529,11 +2529,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:29:57 GMT + - Mon, 28 Jun 2021 09:30:30 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -2563,18 +2563,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2582,11 +2582,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:29:58 GMT + - Mon, 28 Jun 2021 09:30:32 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -2616,18 +2616,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2635,11 +2635,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:30:00 GMT + - Mon, 28 Jun 2021 09:30:33 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -2669,18 +2669,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2688,11 +2688,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:30:02 GMT + - Mon, 28 Jun 2021 09:30:34 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -2722,18 +2722,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2741,11 +2741,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:30:03 GMT + - Mon, 28 Jun 2021 09:30:36 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -2775,18 +2775,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2794,11 +2794,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:30:05 GMT + - Mon, 28 Jun 2021 09:30:37 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -2828,18 +2828,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2847,11 +2847,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:30:06 GMT + - Mon, 28 Jun 2021 09:30:39 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -2881,18 +2881,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2900,11 +2900,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:30:07 GMT + - Mon, 28 Jun 2021 09:30:41 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -2934,18 +2934,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2953,11 +2953,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:30:09 GMT + - Mon, 28 Jun 2021 09:30:42 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -2987,18 +2987,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3006,11 +3006,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:30:10 GMT + - Mon, 28 Jun 2021 09:30:43 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -3040,18 +3040,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3059,11 +3059,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:30:12 GMT + - Mon, 28 Jun 2021 09:30:45 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -3093,18 +3093,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3112,11 +3112,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:30:13 GMT + - Mon, 28 Jun 2021 09:30:46 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -3146,18 +3146,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3165,11 +3165,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:30:15 GMT + - Mon, 28 Jun 2021 09:30:48 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -3199,18 +3199,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3218,11 +3218,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:30:16 GMT + - Mon, 28 Jun 2021 09:30:49 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -3252,18 +3252,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3271,11 +3271,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:30:18 GMT + - Mon, 28 Jun 2021 09:30:51 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -3305,18 +3305,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3324,11 +3324,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:30:20 GMT + - Mon, 28 Jun 2021 09:30:52 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -3358,18 +3358,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3377,11 +3377,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:30:21 GMT + - Mon, 28 Jun 2021 09:30:53 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -3411,18 +3411,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3430,11 +3430,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:30:23 GMT + - Mon, 28 Jun 2021 09:30:55 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -3464,18 +3464,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3483,11 +3483,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:30:24 GMT + - Mon, 28 Jun 2021 09:30:56 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -3517,18 +3517,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3536,11 +3536,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:30:26 GMT + - Mon, 28 Jun 2021 09:30:58 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -3570,18 +3570,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3589,11 +3589,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:30:27 GMT + - Mon, 28 Jun 2021 09:30:59 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -3623,18 +3623,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3642,11 +3642,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:30:29 GMT + - Mon, 28 Jun 2021 09:31:00 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -3676,18 +3676,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3695,11 +3695,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:30:30 GMT + - Mon, 28 Jun 2021 09:31:02 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -3729,18 +3729,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3748,11 +3748,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:30:31 GMT + - Mon, 28 Jun 2021 09:31:03 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -3782,18 +3782,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3801,11 +3801,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:30:33 GMT + - Mon, 28 Jun 2021 09:31:05 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -3835,18 +3835,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3854,11 +3854,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:30:34 GMT + - Mon, 28 Jun 2021 09:31:06 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -3888,18 +3888,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3907,11 +3907,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:30:36 GMT + - Mon, 28 Jun 2021 09:31:08 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -3941,18 +3941,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3960,11 +3960,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:30:37 GMT + - Mon, 28 Jun 2021 09:31:09 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -3994,18 +3994,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4013,11 +4013,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:30:39 GMT + - Mon, 28 Jun 2021 09:31:10 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -4047,18 +4047,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4066,11 +4066,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:30:40 GMT + - Mon, 28 Jun 2021 09:31:12 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -4100,18 +4100,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4119,11 +4119,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:30:41 GMT + - Mon, 28 Jun 2021 09:31:13 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -4153,18 +4153,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4172,11 +4172,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:30:43 GMT + - Mon, 28 Jun 2021 09:31:15 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -4206,18 +4206,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4225,11 +4225,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:30:44 GMT + - Mon, 28 Jun 2021 09:31:16 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -4259,18 +4259,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4278,11 +4278,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:30:46 GMT + - Mon, 28 Jun 2021 09:31:18 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -4312,18 +4312,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4331,11 +4331,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:30:47 GMT + - Mon, 28 Jun 2021 09:31:21 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -4365,18 +4365,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4384,11 +4384,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:30:49 GMT + - Mon, 28 Jun 2021 09:31:22 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -4418,18 +4418,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4437,11 +4437,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:30:50 GMT + - Mon, 28 Jun 2021 09:31:24 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -4471,18 +4471,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4490,11 +4490,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:30:51 GMT + - Mon, 28 Jun 2021 09:31:25 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -4524,18 +4524,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4543,11 +4543,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:30:53 GMT + - Mon, 28 Jun 2021 09:31:27 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -4577,18 +4577,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4596,11 +4596,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:30:54 GMT + - Mon, 28 Jun 2021 09:31:28 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -4630,18 +4630,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4649,11 +4649,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:30:56 GMT + - Mon, 28 Jun 2021 09:31:29 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -4683,18 +4683,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4702,11 +4702,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:30:57 GMT + - Mon, 28 Jun 2021 09:31:31 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -4736,18 +4736,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4755,11 +4755,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:30:59 GMT + - Mon, 28 Jun 2021 09:31:32 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -4789,18 +4789,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4808,11 +4808,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:31:00 GMT + - Mon, 28 Jun 2021 09:31:34 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -4842,18 +4842,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4861,11 +4861,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:31:01 GMT + - Mon, 28 Jun 2021 09:31:35 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -4895,18 +4895,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4914,11 +4914,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:31:04 GMT + - Mon, 28 Jun 2021 09:31:37 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -4948,18 +4948,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4967,11 +4967,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:31:05 GMT + - Mon, 28 Jun 2021 09:31:38 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -5001,18 +5001,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -5020,11 +5020,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:31:06 GMT + - Mon, 28 Jun 2021 09:31:40 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -5054,18 +5054,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -5073,11 +5073,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:31:08 GMT + - Mon, 28 Jun 2021 09:31:41 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -5107,18 +5107,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -5126,11 +5126,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:31:09 GMT + - Mon, 28 Jun 2021 09:31:42 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -5160,18 +5160,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -5179,11 +5179,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:31:11 GMT + - Mon, 28 Jun 2021 09:31:44 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -5213,18 +5213,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -5232,11 +5232,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:31:12 GMT + - Mon, 28 Jun 2021 09:31:45 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -5266,18 +5266,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -5285,11 +5285,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:31:14 GMT + - Mon, 28 Jun 2021 09:31:47 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -5319,18 +5319,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -5338,11 +5338,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:31:15 GMT + - Mon, 28 Jun 2021 09:31:48 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -5372,18 +5372,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -5391,11 +5391,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:31:17 GMT + - Mon, 28 Jun 2021 09:31:49 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -5425,18 +5425,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -5444,11 +5444,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:31:18 GMT + - Mon, 28 Jun 2021 09:31:51 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -5478,18 +5478,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -5497,11 +5497,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:31:19 GMT + - Mon, 28 Jun 2021 09:31:52 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -5531,18 +5531,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -5550,11 +5550,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:31:21 GMT + - Mon, 28 Jun 2021 09:31:54 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -5584,18 +5584,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -5603,11 +5603,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:31:23 GMT + - Mon, 28 Jun 2021 09:31:55 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -5637,18 +5637,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -5656,11 +5656,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:31:25 GMT + - Mon, 28 Jun 2021 09:31:57 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -5690,18 +5690,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -5709,11 +5709,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:31:26 GMT + - Mon, 28 Jun 2021 09:31:58 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -5743,18 +5743,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -5762,11 +5762,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:31:27 GMT + - Mon, 28 Jun 2021 09:31:59 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -5796,18 +5796,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -5815,11 +5815,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:31:29 GMT + - Mon, 28 Jun 2021 09:32:01 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -5849,18 +5849,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -5868,11 +5868,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:31:30 GMT + - Mon, 28 Jun 2021 09:32:02 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -5902,18 +5902,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -5921,11 +5921,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:31:32 GMT + - Mon, 28 Jun 2021 09:32:04 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -5955,18 +5955,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -5974,11 +5974,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:31:33 GMT + - Mon, 28 Jun 2021 09:32:05 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -6008,18 +6008,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6027,11 +6027,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:31:35 GMT + - Mon, 28 Jun 2021 09:32:07 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -6061,18 +6061,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6080,11 +6080,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:31:36 GMT + - Mon, 28 Jun 2021 09:32:08 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -6114,18 +6114,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6133,11 +6133,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:31:38 GMT + - Mon, 28 Jun 2021 09:32:10 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -6167,18 +6167,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6186,11 +6186,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:31:39 GMT + - Mon, 28 Jun 2021 09:32:11 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -6220,18 +6220,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6239,11 +6239,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:31:41 GMT + - Mon, 28 Jun 2021 09:32:12 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -6273,18 +6273,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6292,11 +6292,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:31:42 GMT + - Mon, 28 Jun 2021 09:32:14 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -6326,18 +6326,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6345,11 +6345,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:31:43 GMT + - Mon, 28 Jun 2021 09:32:15 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -6379,18 +6379,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6398,11 +6398,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:31:45 GMT + - Mon, 28 Jun 2021 09:32:17 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -6432,18 +6432,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6451,11 +6451,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:31:46 GMT + - Mon, 28 Jun 2021 09:32:18 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -6485,18 +6485,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6504,11 +6504,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:31:48 GMT + - Mon, 28 Jun 2021 09:32:20 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -6538,18 +6538,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6557,11 +6557,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:31:49 GMT + - Mon, 28 Jun 2021 09:32:21 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -6591,18 +6591,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6610,11 +6610,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:31:51 GMT + - Mon, 28 Jun 2021 09:32:22 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -6644,18 +6644,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6663,11 +6663,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:31:52 GMT + - Mon, 28 Jun 2021 09:32:24 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -6697,18 +6697,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6716,11 +6716,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:31:53 GMT + - Mon, 28 Jun 2021 09:32:25 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -6750,18 +6750,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6769,11 +6769,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:31:55 GMT + - Mon, 28 Jun 2021 09:32:27 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -6803,18 +6803,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6822,11 +6822,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:31:56 GMT + - Mon, 28 Jun 2021 09:32:28 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -6856,18 +6856,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6875,11 +6875,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:31:58 GMT + - Mon, 28 Jun 2021 09:32:30 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -6909,18 +6909,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6928,11 +6928,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:31:59 GMT + - Mon, 28 Jun 2021 09:32:31 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -6962,18 +6962,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6981,11 +6981,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:32:00 GMT + - Mon, 28 Jun 2021 09:32:32 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -7015,18 +7015,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7034,11 +7034,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:32:02 GMT + - Mon, 28 Jun 2021 09:32:34 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -7068,18 +7068,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7087,11 +7087,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:32:03 GMT + - Mon, 28 Jun 2021 09:32:35 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -7121,18 +7121,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7140,11 +7140,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:32:05 GMT + - Mon, 28 Jun 2021 09:32:37 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -7174,18 +7174,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7193,11 +7193,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:32:06 GMT + - Mon, 28 Jun 2021 09:32:38 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -7227,18 +7227,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7246,11 +7246,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:32:08 GMT + - Mon, 28 Jun 2021 09:32:40 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -7280,18 +7280,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7299,11 +7299,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:32:09 GMT + - Mon, 28 Jun 2021 09:32:41 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -7333,18 +7333,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7352,11 +7352,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:32:10 GMT + - Mon, 28 Jun 2021 09:32:44 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -7386,18 +7386,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7405,11 +7405,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:32:12 GMT + - Mon, 28 Jun 2021 09:32:45 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -7439,18 +7439,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7458,11 +7458,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:32:13 GMT + - Mon, 28 Jun 2021 09:32:46 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -7492,18 +7492,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7511,11 +7511,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:32:15 GMT + - Mon, 28 Jun 2021 09:32:48 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -7545,18 +7545,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7564,11 +7564,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:32:16 GMT + - Mon, 28 Jun 2021 09:32:49 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -7598,18 +7598,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7617,11 +7617,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:32:18 GMT + - Mon, 28 Jun 2021 09:32:51 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -7651,18 +7651,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7670,11 +7670,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:32:19 GMT + - Mon, 28 Jun 2021 09:32:52 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -7704,18 +7704,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7723,11 +7723,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:32:21 GMT + - Mon, 28 Jun 2021 09:32:54 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -7757,18 +7757,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7776,11 +7776,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:32:22 GMT + - Mon, 28 Jun 2021 09:32:55 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -7810,18 +7810,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7829,11 +7829,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:32:23 GMT + - Mon, 28 Jun 2021 09:32:56 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -7863,18 +7863,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7882,11 +7882,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:32:25 GMT + - Mon, 28 Jun 2021 09:32:58 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -7916,18 +7916,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7935,11 +7935,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:32:26 GMT + - Mon, 28 Jun 2021 09:32:59 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -7969,18 +7969,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7988,11 +7988,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:32:28 GMT + - Mon, 28 Jun 2021 09:33:01 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -8022,18 +8022,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -8041,11 +8041,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:32:30 GMT + - Mon, 28 Jun 2021 09:33:03 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -8075,18 +8075,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -8094,11 +8094,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:32:32 GMT + - Mon, 28 Jun 2021 09:33:05 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 pragma: - no-cache server: @@ -8128,15 +8128,15 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/f30e3a49-1b9e-48ed-a12c-dd34519fcd7b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/52c0489b-601e-41c3-b446-17ad817c4593?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy","name":"VMAppContainer;Compute;akneema;akneema-hana-ccy","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.Compute/virtualMachines/akneema-hana-ccy","lastUpdatedTime":"2021-06-21T14:29:53.5227881Z","extendedInfo":{"hostServerName":"hxehost","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SAPHana","itemCount":2,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":"","protectableItemCount":{"SAPHanaSystem":1,"SAPHanaDatabase":2}}}]}},"friendlyName":"akneema-hana-ccy","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy","name":"VMAppContainer;Compute;akneema;akneema-hana-ccy","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.Compute/virtualMachines/akneema-hana-ccy","lastUpdatedTime":"2021-06-28T09:30:28.2965324Z","extendedInfo":{"hostServerName":"hxehost","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SAPHana","itemCount":2,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":"","protectableItemCount":{"SAPHanaSystem":1,"SAPHanaDatabase":2}}}]}},"friendlyName":"akneema-hana-ccy","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}' headers: cache-control: - no-cache @@ -8145,7 +8145,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:37:57 GMT + - Mon, 28 Jun 2021 09:38:30 GMT expires: - '-1' pragma: @@ -8161,7 +8161,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11' + - '149' x-powered-by: - ASP.NET status: @@ -8181,15 +8181,15 @@ interactions: ParameterSetName: - -v -g --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupProtectionContainers?api-version=2021-01-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20status%20eq%20%27Registered%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy","name":"VMAppContainer;Compute;akneema;akneema-hana-ccy","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.Compute/virtualMachines/akneema-hana-ccy","lastUpdatedTime":"2021-06-21T14:29:53.5227881Z","extendedInfo":{"hostServerName":"hxehost","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SAPHana","itemCount":2,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":"","protectableItemCount":{"SAPHanaSystem":1,"SAPHanaDatabase":2}}}]}},"friendlyName":"akneema-hana-ccy","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-sql-ccr-ccy","name":"VMAppContainer;Compute;akneema;akneema-sql-ccr-ccy","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.Compute/virtualMachines/akneema-sql-ccr-ccy","lastUpdatedTime":"2021-03-08T06:05:30.7450903Z","extendedInfo":{"hostServerName":"akneema-sql-ccr","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SQL","itemCount":3,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}},{"type":"SAPHana","itemCount":0,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"akneema-sql-ccr-ccy","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Deleted","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-sql-ccy","name":"VMAppContainer;Compute;akneema;akneema-sql-ccy","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.Compute/virtualMachines/akneema-sql-ccy","lastUpdatedTime":"2021-03-08T05:53:24.8110688Z","extendedInfo":{"hostServerName":"akneema-sql-ccy","inquiryInfo":{"status":"Success","errorDetail":{"code":"UserErrorSQLNoSysadminMembership","message":"Azure + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy","name":"VMAppContainer;Compute;akneema;akneema-hana-ccy","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.Compute/virtualMachines/akneema-hana-ccy","lastUpdatedTime":"2021-06-28T09:30:28.2965324Z","extendedInfo":{"hostServerName":"hxehost","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SAPHana","itemCount":2,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":"","protectableItemCount":{"SAPHanaSystem":1,"SAPHanaDatabase":2}}}]}},"friendlyName":"akneema-hana-ccy","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-sql-ccr-ccy","name":"VMAppContainer;Compute;akneema;akneema-sql-ccr-ccy","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.Compute/virtualMachines/akneema-sql-ccr-ccy","lastUpdatedTime":"2021-03-08T06:05:30.7450903Z","extendedInfo":{"hostServerName":"akneema-sql-ccr","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SQL","itemCount":3,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}},{"type":"SAPHana","itemCount":0,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"akneema-sql-ccr-ccy","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Deleted","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-sql-ccy","name":"VMAppContainer;Compute;akneema;akneema-sql-ccy","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.Compute/virtualMachines/akneema-sql-ccy","lastUpdatedTime":"2021-03-08T05:53:24.8110688Z","extendedInfo":{"hostServerName":"akneema-sql-ccy","inquiryInfo":{"status":"Success","errorDetail":{"code":"UserErrorSQLNoSysadminMembership","message":"Azure Backup service creates a service account \"NT Service\\AzureWLBackupPluginSvc\" (or \"svc_AzWLBackupPlugin\" user account in case of Windows Server 2008) for all operations and this account needs SQL sysadmin privilege.","recommendations":["Ensure @@ -8219,7 +8219,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:37:58 GMT + - Mon, 28 Jun 2021 09:38:32 GMT expires: - '-1' pragma: @@ -8256,8 +8256,8 @@ interactions: - --vault-name -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET @@ -8273,7 +8273,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:37:59 GMT + - Mon, 28 Jun 2021 09:38:32 GMT expires: - '-1' pragma: @@ -8310,8 +8310,8 @@ interactions: - --vault-name -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET @@ -8327,7 +8327,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:37:59 GMT + - Mon, 28 Jun 2021 09:38:33 GMT expires: - '-1' pragma: @@ -8370,8 +8370,8 @@ interactions: - --vault-name -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: PUT @@ -8381,17 +8381,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;akneema;akneema-hana-ccy/protectedItems/saphanadatabase;hxe;systemdb/operationsStatus/5a092c1d-b9f4-4dca-b0c9-e8305190cafc?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;akneema;akneema-hana-ccy/protectedItems/saphanadatabase;hxe;systemdb/operationsStatus/bc1c252d-5634-4d4a-8520-003cb5667bb2?api-version=2021-01-01 cache-control: - no-cache content-length: - '0' date: - - Mon, 21 Jun 2021 14:38:01 GMT + - Mon, 28 Jun 2021 09:38:34 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;akneema;akneema-hana-ccy/protectedItems/saphanadatabase;hxe;systemdb/operationResults/5a092c1d-b9f4-4dca-b0c9-e8305190cafc?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;akneema;akneema-hana-ccy/protectedItems/saphanadatabase;hxe;systemdb/operationResults/bc1c252d-5634-4d4a-8520-003cb5667bb2?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -8399,7 +8399,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -8420,15 +8420,15 @@ interactions: - --vault-name -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/5a092c1d-b9f4-4dca-b0c9-e8305190cafc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/bc1c252d-5634-4d4a-8520-003cb5667bb2?api-version=2021-01-01 response: body: - string: '{"id":"5a092c1d-b9f4-4dca-b0c9-e8305190cafc","name":"5a092c1d-b9f4-4dca-b0c9-e8305190cafc","status":"InProgress","startTime":"2021-06-21T14:38:02.0514284Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"bc1c252d-5634-4d4a-8520-003cb5667bb2","name":"bc1c252d-5634-4d4a-8520-003cb5667bb2","status":"InProgress","startTime":"2021-06-28T09:38:35.2701033Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8437,7 +8437,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:38:03 GMT + - Mon, 28 Jun 2021 09:38:35 GMT expires: - '-1' pragma: @@ -8474,15 +8474,15 @@ interactions: - --vault-name -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/5a092c1d-b9f4-4dca-b0c9-e8305190cafc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/bc1c252d-5634-4d4a-8520-003cb5667bb2?api-version=2021-01-01 response: body: - string: '{"id":"5a092c1d-b9f4-4dca-b0c9-e8305190cafc","name":"5a092c1d-b9f4-4dca-b0c9-e8305190cafc","status":"InProgress","startTime":"2021-06-21T14:38:02.0514284Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"bc1c252d-5634-4d4a-8520-003cb5667bb2","name":"bc1c252d-5634-4d4a-8520-003cb5667bb2","status":"InProgress","startTime":"2021-06-28T09:38:35.2701033Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8491,7 +8491,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:38:05 GMT + - Mon, 28 Jun 2021 09:38:37 GMT expires: - '-1' pragma: @@ -8528,15 +8528,15 @@ interactions: - --vault-name -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/5a092c1d-b9f4-4dca-b0c9-e8305190cafc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/bc1c252d-5634-4d4a-8520-003cb5667bb2?api-version=2021-01-01 response: body: - string: '{"id":"5a092c1d-b9f4-4dca-b0c9-e8305190cafc","name":"5a092c1d-b9f4-4dca-b0c9-e8305190cafc","status":"InProgress","startTime":"2021-06-21T14:38:02.0514284Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"bc1c252d-5634-4d4a-8520-003cb5667bb2","name":"bc1c252d-5634-4d4a-8520-003cb5667bb2","status":"InProgress","startTime":"2021-06-28T09:38:35.2701033Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8545,7 +8545,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:38:06 GMT + - Mon, 28 Jun 2021 09:38:38 GMT expires: - '-1' pragma: @@ -8582,15 +8582,15 @@ interactions: - --vault-name -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/5a092c1d-b9f4-4dca-b0c9-e8305190cafc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/bc1c252d-5634-4d4a-8520-003cb5667bb2?api-version=2021-01-01 response: body: - string: '{"id":"5a092c1d-b9f4-4dca-b0c9-e8305190cafc","name":"5a092c1d-b9f4-4dca-b0c9-e8305190cafc","status":"InProgress","startTime":"2021-06-21T14:38:02.0514284Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"bc1c252d-5634-4d4a-8520-003cb5667bb2","name":"bc1c252d-5634-4d4a-8520-003cb5667bb2","status":"InProgress","startTime":"2021-06-28T09:38:35.2701033Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8599,7 +8599,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:38:07 GMT + - Mon, 28 Jun 2021 09:38:40 GMT expires: - '-1' pragma: @@ -8636,15 +8636,15 @@ interactions: - --vault-name -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/5a092c1d-b9f4-4dca-b0c9-e8305190cafc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/bc1c252d-5634-4d4a-8520-003cb5667bb2?api-version=2021-01-01 response: body: - string: '{"id":"5a092c1d-b9f4-4dca-b0c9-e8305190cafc","name":"5a092c1d-b9f4-4dca-b0c9-e8305190cafc","status":"InProgress","startTime":"2021-06-21T14:38:02.0514284Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"bc1c252d-5634-4d4a-8520-003cb5667bb2","name":"bc1c252d-5634-4d4a-8520-003cb5667bb2","status":"InProgress","startTime":"2021-06-28T09:38:35.2701033Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8653,7 +8653,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:38:09 GMT + - Mon, 28 Jun 2021 09:38:41 GMT expires: - '-1' pragma: @@ -8690,15 +8690,15 @@ interactions: - --vault-name -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/5a092c1d-b9f4-4dca-b0c9-e8305190cafc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/bc1c252d-5634-4d4a-8520-003cb5667bb2?api-version=2021-01-01 response: body: - string: '{"id":"5a092c1d-b9f4-4dca-b0c9-e8305190cafc","name":"5a092c1d-b9f4-4dca-b0c9-e8305190cafc","status":"InProgress","startTime":"2021-06-21T14:38:02.0514284Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"bc1c252d-5634-4d4a-8520-003cb5667bb2","name":"bc1c252d-5634-4d4a-8520-003cb5667bb2","status":"InProgress","startTime":"2021-06-28T09:38:35.2701033Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8707,7 +8707,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:38:10 GMT + - Mon, 28 Jun 2021 09:38:42 GMT expires: - '-1' pragma: @@ -8744,15 +8744,15 @@ interactions: - --vault-name -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/5a092c1d-b9f4-4dca-b0c9-e8305190cafc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/bc1c252d-5634-4d4a-8520-003cb5667bb2?api-version=2021-01-01 response: body: - string: '{"id":"5a092c1d-b9f4-4dca-b0c9-e8305190cafc","name":"5a092c1d-b9f4-4dca-b0c9-e8305190cafc","status":"InProgress","startTime":"2021-06-21T14:38:02.0514284Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"bc1c252d-5634-4d4a-8520-003cb5667bb2","name":"bc1c252d-5634-4d4a-8520-003cb5667bb2","status":"InProgress","startTime":"2021-06-28T09:38:35.2701033Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8761,7 +8761,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:38:12 GMT + - Mon, 28 Jun 2021 09:38:44 GMT expires: - '-1' pragma: @@ -8798,15 +8798,15 @@ interactions: - --vault-name -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/5a092c1d-b9f4-4dca-b0c9-e8305190cafc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/bc1c252d-5634-4d4a-8520-003cb5667bb2?api-version=2021-01-01 response: body: - string: '{"id":"5a092c1d-b9f4-4dca-b0c9-e8305190cafc","name":"5a092c1d-b9f4-4dca-b0c9-e8305190cafc","status":"InProgress","startTime":"2021-06-21T14:38:02.0514284Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"bc1c252d-5634-4d4a-8520-003cb5667bb2","name":"bc1c252d-5634-4d4a-8520-003cb5667bb2","status":"InProgress","startTime":"2021-06-28T09:38:35.2701033Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8815,7 +8815,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:38:13 GMT + - Mon, 28 Jun 2021 09:38:45 GMT expires: - '-1' pragma: @@ -8852,15 +8852,15 @@ interactions: - --vault-name -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/5a092c1d-b9f4-4dca-b0c9-e8305190cafc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/bc1c252d-5634-4d4a-8520-003cb5667bb2?api-version=2021-01-01 response: body: - string: '{"id":"5a092c1d-b9f4-4dca-b0c9-e8305190cafc","name":"5a092c1d-b9f4-4dca-b0c9-e8305190cafc","status":"InProgress","startTime":"2021-06-21T14:38:02.0514284Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"bc1c252d-5634-4d4a-8520-003cb5667bb2","name":"bc1c252d-5634-4d4a-8520-003cb5667bb2","status":"InProgress","startTime":"2021-06-28T09:38:35.2701033Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8869,7 +8869,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:38:15 GMT + - Mon, 28 Jun 2021 09:38:47 GMT expires: - '-1' pragma: @@ -8906,15 +8906,15 @@ interactions: - --vault-name -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/5a092c1d-b9f4-4dca-b0c9-e8305190cafc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/bc1c252d-5634-4d4a-8520-003cb5667bb2?api-version=2021-01-01 response: body: - string: '{"id":"5a092c1d-b9f4-4dca-b0c9-e8305190cafc","name":"5a092c1d-b9f4-4dca-b0c9-e8305190cafc","status":"InProgress","startTime":"2021-06-21T14:38:02.0514284Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"bc1c252d-5634-4d4a-8520-003cb5667bb2","name":"bc1c252d-5634-4d4a-8520-003cb5667bb2","status":"InProgress","startTime":"2021-06-28T09:38:35.2701033Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8923,7 +8923,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:38:16 GMT + - Mon, 28 Jun 2021 09:38:48 GMT expires: - '-1' pragma: @@ -8960,15 +8960,15 @@ interactions: - --vault-name -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/5a092c1d-b9f4-4dca-b0c9-e8305190cafc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/bc1c252d-5634-4d4a-8520-003cb5667bb2?api-version=2021-01-01 response: body: - string: '{"id":"5a092c1d-b9f4-4dca-b0c9-e8305190cafc","name":"5a092c1d-b9f4-4dca-b0c9-e8305190cafc","status":"InProgress","startTime":"2021-06-21T14:38:02.0514284Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"bc1c252d-5634-4d4a-8520-003cb5667bb2","name":"bc1c252d-5634-4d4a-8520-003cb5667bb2","status":"InProgress","startTime":"2021-06-28T09:38:35.2701033Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8977,7 +8977,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:38:17 GMT + - Mon, 28 Jun 2021 09:38:50 GMT expires: - '-1' pragma: @@ -9014,15 +9014,15 @@ interactions: - --vault-name -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/5a092c1d-b9f4-4dca-b0c9-e8305190cafc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/bc1c252d-5634-4d4a-8520-003cb5667bb2?api-version=2021-01-01 response: body: - string: '{"id":"5a092c1d-b9f4-4dca-b0c9-e8305190cafc","name":"5a092c1d-b9f4-4dca-b0c9-e8305190cafc","status":"InProgress","startTime":"2021-06-21T14:38:02.0514284Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"bc1c252d-5634-4d4a-8520-003cb5667bb2","name":"bc1c252d-5634-4d4a-8520-003cb5667bb2","status":"InProgress","startTime":"2021-06-28T09:38:35.2701033Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9031,7 +9031,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:38:19 GMT + - Mon, 28 Jun 2021 09:38:51 GMT expires: - '-1' pragma: @@ -9068,15 +9068,15 @@ interactions: - --vault-name -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/5a092c1d-b9f4-4dca-b0c9-e8305190cafc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/bc1c252d-5634-4d4a-8520-003cb5667bb2?api-version=2021-01-01 response: body: - string: '{"id":"5a092c1d-b9f4-4dca-b0c9-e8305190cafc","name":"5a092c1d-b9f4-4dca-b0c9-e8305190cafc","status":"InProgress","startTime":"2021-06-21T14:38:02.0514284Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"bc1c252d-5634-4d4a-8520-003cb5667bb2","name":"bc1c252d-5634-4d4a-8520-003cb5667bb2","status":"InProgress","startTime":"2021-06-28T09:38:35.2701033Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9085,7 +9085,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:38:20 GMT + - Mon, 28 Jun 2021 09:38:53 GMT expires: - '-1' pragma: @@ -9122,15 +9122,15 @@ interactions: - --vault-name -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/5a092c1d-b9f4-4dca-b0c9-e8305190cafc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/bc1c252d-5634-4d4a-8520-003cb5667bb2?api-version=2021-01-01 response: body: - string: '{"id":"5a092c1d-b9f4-4dca-b0c9-e8305190cafc","name":"5a092c1d-b9f4-4dca-b0c9-e8305190cafc","status":"InProgress","startTime":"2021-06-21T14:38:02.0514284Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"bc1c252d-5634-4d4a-8520-003cb5667bb2","name":"bc1c252d-5634-4d4a-8520-003cb5667bb2","status":"InProgress","startTime":"2021-06-28T09:38:35.2701033Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9139,7 +9139,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:38:22 GMT + - Mon, 28 Jun 2021 09:38:54 GMT expires: - '-1' pragma: @@ -9176,15 +9176,15 @@ interactions: - --vault-name -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/5a092c1d-b9f4-4dca-b0c9-e8305190cafc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/bc1c252d-5634-4d4a-8520-003cb5667bb2?api-version=2021-01-01 response: body: - string: '{"id":"5a092c1d-b9f4-4dca-b0c9-e8305190cafc","name":"5a092c1d-b9f4-4dca-b0c9-e8305190cafc","status":"InProgress","startTime":"2021-06-21T14:38:02.0514284Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"bc1c252d-5634-4d4a-8520-003cb5667bb2","name":"bc1c252d-5634-4d4a-8520-003cb5667bb2","status":"InProgress","startTime":"2021-06-28T09:38:35.2701033Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9193,7 +9193,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:38:23 GMT + - Mon, 28 Jun 2021 09:38:55 GMT expires: - '-1' pragma: @@ -9230,15 +9230,15 @@ interactions: - --vault-name -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/5a092c1d-b9f4-4dca-b0c9-e8305190cafc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/bc1c252d-5634-4d4a-8520-003cb5667bb2?api-version=2021-01-01 response: body: - string: '{"id":"5a092c1d-b9f4-4dca-b0c9-e8305190cafc","name":"5a092c1d-b9f4-4dca-b0c9-e8305190cafc","status":"InProgress","startTime":"2021-06-21T14:38:02.0514284Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"bc1c252d-5634-4d4a-8520-003cb5667bb2","name":"bc1c252d-5634-4d4a-8520-003cb5667bb2","status":"InProgress","startTime":"2021-06-28T09:38:35.2701033Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9247,7 +9247,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:38:25 GMT + - Mon, 28 Jun 2021 09:38:57 GMT expires: - '-1' pragma: @@ -9284,15 +9284,15 @@ interactions: - --vault-name -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/5a092c1d-b9f4-4dca-b0c9-e8305190cafc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/bc1c252d-5634-4d4a-8520-003cb5667bb2?api-version=2021-01-01 response: body: - string: '{"id":"5a092c1d-b9f4-4dca-b0c9-e8305190cafc","name":"5a092c1d-b9f4-4dca-b0c9-e8305190cafc","status":"InProgress","startTime":"2021-06-21T14:38:02.0514284Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"bc1c252d-5634-4d4a-8520-003cb5667bb2","name":"bc1c252d-5634-4d4a-8520-003cb5667bb2","status":"InProgress","startTime":"2021-06-28T09:38:35.2701033Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9301,7 +9301,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:38:26 GMT + - Mon, 28 Jun 2021 09:38:59 GMT expires: - '-1' pragma: @@ -9338,15 +9338,15 @@ interactions: - --vault-name -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/5a092c1d-b9f4-4dca-b0c9-e8305190cafc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/bc1c252d-5634-4d4a-8520-003cb5667bb2?api-version=2021-01-01 response: body: - string: '{"id":"5a092c1d-b9f4-4dca-b0c9-e8305190cafc","name":"5a092c1d-b9f4-4dca-b0c9-e8305190cafc","status":"InProgress","startTime":"2021-06-21T14:38:02.0514284Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"bc1c252d-5634-4d4a-8520-003cb5667bb2","name":"bc1c252d-5634-4d4a-8520-003cb5667bb2","status":"InProgress","startTime":"2021-06-28T09:38:35.2701033Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9355,7 +9355,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:38:28 GMT + - Mon, 28 Jun 2021 09:39:01 GMT expires: - '-1' pragma: @@ -9392,15 +9392,15 @@ interactions: - --vault-name -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/5a092c1d-b9f4-4dca-b0c9-e8305190cafc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/bc1c252d-5634-4d4a-8520-003cb5667bb2?api-version=2021-01-01 response: body: - string: '{"id":"5a092c1d-b9f4-4dca-b0c9-e8305190cafc","name":"5a092c1d-b9f4-4dca-b0c9-e8305190cafc","status":"InProgress","startTime":"2021-06-21T14:38:02.0514284Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"bc1c252d-5634-4d4a-8520-003cb5667bb2","name":"bc1c252d-5634-4d4a-8520-003cb5667bb2","status":"InProgress","startTime":"2021-06-28T09:38:35.2701033Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9409,7 +9409,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:38:29 GMT + - Mon, 28 Jun 2021 09:39:03 GMT expires: - '-1' pragma: @@ -9446,15 +9446,15 @@ interactions: - --vault-name -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/5a092c1d-b9f4-4dca-b0c9-e8305190cafc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/bc1c252d-5634-4d4a-8520-003cb5667bb2?api-version=2021-01-01 response: body: - string: '{"id":"5a092c1d-b9f4-4dca-b0c9-e8305190cafc","name":"5a092c1d-b9f4-4dca-b0c9-e8305190cafc","status":"InProgress","startTime":"2021-06-21T14:38:02.0514284Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"bc1c252d-5634-4d4a-8520-003cb5667bb2","name":"bc1c252d-5634-4d4a-8520-003cb5667bb2","status":"InProgress","startTime":"2021-06-28T09:38:35.2701033Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9463,7 +9463,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:38:31 GMT + - Mon, 28 Jun 2021 09:39:05 GMT expires: - '-1' pragma: @@ -9500,15 +9500,15 @@ interactions: - --vault-name -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/5a092c1d-b9f4-4dca-b0c9-e8305190cafc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/bc1c252d-5634-4d4a-8520-003cb5667bb2?api-version=2021-01-01 response: body: - string: '{"id":"5a092c1d-b9f4-4dca-b0c9-e8305190cafc","name":"5a092c1d-b9f4-4dca-b0c9-e8305190cafc","status":"InProgress","startTime":"2021-06-21T14:38:02.0514284Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"bc1c252d-5634-4d4a-8520-003cb5667bb2","name":"bc1c252d-5634-4d4a-8520-003cb5667bb2","status":"InProgress","startTime":"2021-06-28T09:38:35.2701033Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9517,7 +9517,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:38:33 GMT + - Mon, 28 Jun 2021 09:39:06 GMT expires: - '-1' pragma: @@ -9554,15 +9554,15 @@ interactions: - --vault-name -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/5a092c1d-b9f4-4dca-b0c9-e8305190cafc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/bc1c252d-5634-4d4a-8520-003cb5667bb2?api-version=2021-01-01 response: body: - string: '{"id":"5a092c1d-b9f4-4dca-b0c9-e8305190cafc","name":"5a092c1d-b9f4-4dca-b0c9-e8305190cafc","status":"InProgress","startTime":"2021-06-21T14:38:02.0514284Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"bc1c252d-5634-4d4a-8520-003cb5667bb2","name":"bc1c252d-5634-4d4a-8520-003cb5667bb2","status":"InProgress","startTime":"2021-06-28T09:38:35.2701033Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9571,7 +9571,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:38:34 GMT + - Mon, 28 Jun 2021 09:39:08 GMT expires: - '-1' pragma: @@ -9608,15 +9608,15 @@ interactions: - --vault-name -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/5a092c1d-b9f4-4dca-b0c9-e8305190cafc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/bc1c252d-5634-4d4a-8520-003cb5667bb2?api-version=2021-01-01 response: body: - string: '{"id":"5a092c1d-b9f4-4dca-b0c9-e8305190cafc","name":"5a092c1d-b9f4-4dca-b0c9-e8305190cafc","status":"InProgress","startTime":"2021-06-21T14:38:02.0514284Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"bc1c252d-5634-4d4a-8520-003cb5667bb2","name":"bc1c252d-5634-4d4a-8520-003cb5667bb2","status":"InProgress","startTime":"2021-06-28T09:38:35.2701033Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9625,7 +9625,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:38:36 GMT + - Mon, 28 Jun 2021 09:39:09 GMT expires: - '-1' pragma: @@ -9662,15 +9662,15 @@ interactions: - --vault-name -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/5a092c1d-b9f4-4dca-b0c9-e8305190cafc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/bc1c252d-5634-4d4a-8520-003cb5667bb2?api-version=2021-01-01 response: body: - string: '{"id":"5a092c1d-b9f4-4dca-b0c9-e8305190cafc","name":"5a092c1d-b9f4-4dca-b0c9-e8305190cafc","status":"InProgress","startTime":"2021-06-21T14:38:02.0514284Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"bc1c252d-5634-4d4a-8520-003cb5667bb2","name":"bc1c252d-5634-4d4a-8520-003cb5667bb2","status":"InProgress","startTime":"2021-06-28T09:38:35.2701033Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9679,7 +9679,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:38:37 GMT + - Mon, 28 Jun 2021 09:39:11 GMT expires: - '-1' pragma: @@ -9716,15 +9716,15 @@ interactions: - --vault-name -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/5a092c1d-b9f4-4dca-b0c9-e8305190cafc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/bc1c252d-5634-4d4a-8520-003cb5667bb2?api-version=2021-01-01 response: body: - string: '{"id":"5a092c1d-b9f4-4dca-b0c9-e8305190cafc","name":"5a092c1d-b9f4-4dca-b0c9-e8305190cafc","status":"InProgress","startTime":"2021-06-21T14:38:02.0514284Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"bc1c252d-5634-4d4a-8520-003cb5667bb2","name":"bc1c252d-5634-4d4a-8520-003cb5667bb2","status":"InProgress","startTime":"2021-06-28T09:38:35.2701033Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9733,7 +9733,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:38:39 GMT + - Mon, 28 Jun 2021 09:39:12 GMT expires: - '-1' pragma: @@ -9770,15 +9770,15 @@ interactions: - --vault-name -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/5a092c1d-b9f4-4dca-b0c9-e8305190cafc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/bc1c252d-5634-4d4a-8520-003cb5667bb2?api-version=2021-01-01 response: body: - string: '{"id":"5a092c1d-b9f4-4dca-b0c9-e8305190cafc","name":"5a092c1d-b9f4-4dca-b0c9-e8305190cafc","status":"InProgress","startTime":"2021-06-21T14:38:02.0514284Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"bc1c252d-5634-4d4a-8520-003cb5667bb2","name":"bc1c252d-5634-4d4a-8520-003cb5667bb2","status":"InProgress","startTime":"2021-06-28T09:38:35.2701033Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9787,7 +9787,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:38:40 GMT + - Mon, 28 Jun 2021 09:39:13 GMT expires: - '-1' pragma: @@ -9824,15 +9824,15 @@ interactions: - --vault-name -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/5a092c1d-b9f4-4dca-b0c9-e8305190cafc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/bc1c252d-5634-4d4a-8520-003cb5667bb2?api-version=2021-01-01 response: body: - string: '{"id":"5a092c1d-b9f4-4dca-b0c9-e8305190cafc","name":"5a092c1d-b9f4-4dca-b0c9-e8305190cafc","status":"InProgress","startTime":"2021-06-21T14:38:02.0514284Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"bc1c252d-5634-4d4a-8520-003cb5667bb2","name":"bc1c252d-5634-4d4a-8520-003cb5667bb2","status":"InProgress","startTime":"2021-06-28T09:38:35.2701033Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9841,7 +9841,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:38:42 GMT + - Mon, 28 Jun 2021 09:39:15 GMT expires: - '-1' pragma: @@ -9878,15 +9878,15 @@ interactions: - --vault-name -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/5a092c1d-b9f4-4dca-b0c9-e8305190cafc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/bc1c252d-5634-4d4a-8520-003cb5667bb2?api-version=2021-01-01 response: body: - string: '{"id":"5a092c1d-b9f4-4dca-b0c9-e8305190cafc","name":"5a092c1d-b9f4-4dca-b0c9-e8305190cafc","status":"InProgress","startTime":"2021-06-21T14:38:02.0514284Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"bc1c252d-5634-4d4a-8520-003cb5667bb2","name":"bc1c252d-5634-4d4a-8520-003cb5667bb2","status":"InProgress","startTime":"2021-06-28T09:38:35.2701033Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9895,7 +9895,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:38:43 GMT + - Mon, 28 Jun 2021 09:39:16 GMT expires: - '-1' pragma: @@ -9932,15 +9932,15 @@ interactions: - --vault-name -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/5a092c1d-b9f4-4dca-b0c9-e8305190cafc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/bc1c252d-5634-4d4a-8520-003cb5667bb2?api-version=2021-01-01 response: body: - string: '{"id":"5a092c1d-b9f4-4dca-b0c9-e8305190cafc","name":"5a092c1d-b9f4-4dca-b0c9-e8305190cafc","status":"InProgress","startTime":"2021-06-21T14:38:02.0514284Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"bc1c252d-5634-4d4a-8520-003cb5667bb2","name":"bc1c252d-5634-4d4a-8520-003cb5667bb2","status":"InProgress","startTime":"2021-06-28T09:38:35.2701033Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9949,7 +9949,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:38:44 GMT + - Mon, 28 Jun 2021 09:39:18 GMT expires: - '-1' pragma: @@ -9986,15 +9986,15 @@ interactions: - --vault-name -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/5a092c1d-b9f4-4dca-b0c9-e8305190cafc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/bc1c252d-5634-4d4a-8520-003cb5667bb2?api-version=2021-01-01 response: body: - string: '{"id":"5a092c1d-b9f4-4dca-b0c9-e8305190cafc","name":"5a092c1d-b9f4-4dca-b0c9-e8305190cafc","status":"InProgress","startTime":"2021-06-21T14:38:02.0514284Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"bc1c252d-5634-4d4a-8520-003cb5667bb2","name":"bc1c252d-5634-4d4a-8520-003cb5667bb2","status":"InProgress","startTime":"2021-06-28T09:38:35.2701033Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10003,7 +10003,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:38:46 GMT + - Mon, 28 Jun 2021 09:39:19 GMT expires: - '-1' pragma: @@ -10040,15 +10040,15 @@ interactions: - --vault-name -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/5a092c1d-b9f4-4dca-b0c9-e8305190cafc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/bc1c252d-5634-4d4a-8520-003cb5667bb2?api-version=2021-01-01 response: body: - string: '{"id":"5a092c1d-b9f4-4dca-b0c9-e8305190cafc","name":"5a092c1d-b9f4-4dca-b0c9-e8305190cafc","status":"InProgress","startTime":"2021-06-21T14:38:02.0514284Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"bc1c252d-5634-4d4a-8520-003cb5667bb2","name":"bc1c252d-5634-4d4a-8520-003cb5667bb2","status":"InProgress","startTime":"2021-06-28T09:38:35.2701033Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10057,7 +10057,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:38:47 GMT + - Mon, 28 Jun 2021 09:39:22 GMT expires: - '-1' pragma: @@ -10094,15 +10094,15 @@ interactions: - --vault-name -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/5a092c1d-b9f4-4dca-b0c9-e8305190cafc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/bc1c252d-5634-4d4a-8520-003cb5667bb2?api-version=2021-01-01 response: body: - string: '{"id":"5a092c1d-b9f4-4dca-b0c9-e8305190cafc","name":"5a092c1d-b9f4-4dca-b0c9-e8305190cafc","status":"InProgress","startTime":"2021-06-21T14:38:02.0514284Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"bc1c252d-5634-4d4a-8520-003cb5667bb2","name":"bc1c252d-5634-4d4a-8520-003cb5667bb2","status":"InProgress","startTime":"2021-06-28T09:38:35.2701033Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10111,7 +10111,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:38:49 GMT + - Mon, 28 Jun 2021 09:39:23 GMT expires: - '-1' pragma: @@ -10148,15 +10148,15 @@ interactions: - --vault-name -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/5a092c1d-b9f4-4dca-b0c9-e8305190cafc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/bc1c252d-5634-4d4a-8520-003cb5667bb2?api-version=2021-01-01 response: body: - string: '{"id":"5a092c1d-b9f4-4dca-b0c9-e8305190cafc","name":"5a092c1d-b9f4-4dca-b0c9-e8305190cafc","status":"InProgress","startTime":"2021-06-21T14:38:02.0514284Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"bc1c252d-5634-4d4a-8520-003cb5667bb2","name":"bc1c252d-5634-4d4a-8520-003cb5667bb2","status":"InProgress","startTime":"2021-06-28T09:38:35.2701033Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10165,7 +10165,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:38:50 GMT + - Mon, 28 Jun 2021 09:39:24 GMT expires: - '-1' pragma: @@ -10202,15 +10202,15 @@ interactions: - --vault-name -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/5a092c1d-b9f4-4dca-b0c9-e8305190cafc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/bc1c252d-5634-4d4a-8520-003cb5667bb2?api-version=2021-01-01 response: body: - string: '{"id":"5a092c1d-b9f4-4dca-b0c9-e8305190cafc","name":"5a092c1d-b9f4-4dca-b0c9-e8305190cafc","status":"InProgress","startTime":"2021-06-21T14:38:02.0514284Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"bc1c252d-5634-4d4a-8520-003cb5667bb2","name":"bc1c252d-5634-4d4a-8520-003cb5667bb2","status":"InProgress","startTime":"2021-06-28T09:38:35.2701033Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10219,7 +10219,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:38:52 GMT + - Mon, 28 Jun 2021 09:39:26 GMT expires: - '-1' pragma: @@ -10256,15 +10256,15 @@ interactions: - --vault-name -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/5a092c1d-b9f4-4dca-b0c9-e8305190cafc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/bc1c252d-5634-4d4a-8520-003cb5667bb2?api-version=2021-01-01 response: body: - string: '{"id":"5a092c1d-b9f4-4dca-b0c9-e8305190cafc","name":"5a092c1d-b9f4-4dca-b0c9-e8305190cafc","status":"InProgress","startTime":"2021-06-21T14:38:02.0514284Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"bc1c252d-5634-4d4a-8520-003cb5667bb2","name":"bc1c252d-5634-4d4a-8520-003cb5667bb2","status":"InProgress","startTime":"2021-06-28T09:38:35.2701033Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10273,7 +10273,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:38:53 GMT + - Mon, 28 Jun 2021 09:39:27 GMT expires: - '-1' pragma: @@ -10310,15 +10310,15 @@ interactions: - --vault-name -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/5a092c1d-b9f4-4dca-b0c9-e8305190cafc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/bc1c252d-5634-4d4a-8520-003cb5667bb2?api-version=2021-01-01 response: body: - string: '{"id":"5a092c1d-b9f4-4dca-b0c9-e8305190cafc","name":"5a092c1d-b9f4-4dca-b0c9-e8305190cafc","status":"InProgress","startTime":"2021-06-21T14:38:02.0514284Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"bc1c252d-5634-4d4a-8520-003cb5667bb2","name":"bc1c252d-5634-4d4a-8520-003cb5667bb2","status":"InProgress","startTime":"2021-06-28T09:38:35.2701033Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10327,7 +10327,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:38:55 GMT + - Mon, 28 Jun 2021 09:39:29 GMT expires: - '-1' pragma: @@ -10364,15 +10364,15 @@ interactions: - --vault-name -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/5a092c1d-b9f4-4dca-b0c9-e8305190cafc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/bc1c252d-5634-4d4a-8520-003cb5667bb2?api-version=2021-01-01 response: body: - string: '{"id":"5a092c1d-b9f4-4dca-b0c9-e8305190cafc","name":"5a092c1d-b9f4-4dca-b0c9-e8305190cafc","status":"InProgress","startTime":"2021-06-21T14:38:02.0514284Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"bc1c252d-5634-4d4a-8520-003cb5667bb2","name":"bc1c252d-5634-4d4a-8520-003cb5667bb2","status":"InProgress","startTime":"2021-06-28T09:38:35.2701033Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10381,7 +10381,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:38:56 GMT + - Mon, 28 Jun 2021 09:39:30 GMT expires: - '-1' pragma: @@ -10418,15 +10418,15 @@ interactions: - --vault-name -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/5a092c1d-b9f4-4dca-b0c9-e8305190cafc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/bc1c252d-5634-4d4a-8520-003cb5667bb2?api-version=2021-01-01 response: body: - string: '{"id":"5a092c1d-b9f4-4dca-b0c9-e8305190cafc","name":"5a092c1d-b9f4-4dca-b0c9-e8305190cafc","status":"InProgress","startTime":"2021-06-21T14:38:02.0514284Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"bc1c252d-5634-4d4a-8520-003cb5667bb2","name":"bc1c252d-5634-4d4a-8520-003cb5667bb2","status":"InProgress","startTime":"2021-06-28T09:38:35.2701033Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10435,7 +10435,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:38:58 GMT + - Mon, 28 Jun 2021 09:39:32 GMT expires: - '-1' pragma: @@ -10472,15 +10472,15 @@ interactions: - --vault-name -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/5a092c1d-b9f4-4dca-b0c9-e8305190cafc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/bc1c252d-5634-4d4a-8520-003cb5667bb2?api-version=2021-01-01 response: body: - string: '{"id":"5a092c1d-b9f4-4dca-b0c9-e8305190cafc","name":"5a092c1d-b9f4-4dca-b0c9-e8305190cafc","status":"InProgress","startTime":"2021-06-21T14:38:02.0514284Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"bc1c252d-5634-4d4a-8520-003cb5667bb2","name":"bc1c252d-5634-4d4a-8520-003cb5667bb2","status":"InProgress","startTime":"2021-06-28T09:38:35.2701033Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10489,7 +10489,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:38:59 GMT + - Mon, 28 Jun 2021 09:39:33 GMT expires: - '-1' pragma: @@ -10526,15 +10526,15 @@ interactions: - --vault-name -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/5a092c1d-b9f4-4dca-b0c9-e8305190cafc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/bc1c252d-5634-4d4a-8520-003cb5667bb2?api-version=2021-01-01 response: body: - string: '{"id":"5a092c1d-b9f4-4dca-b0c9-e8305190cafc","name":"5a092c1d-b9f4-4dca-b0c9-e8305190cafc","status":"InProgress","startTime":"2021-06-21T14:38:02.0514284Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"bc1c252d-5634-4d4a-8520-003cb5667bb2","name":"bc1c252d-5634-4d4a-8520-003cb5667bb2","status":"InProgress","startTime":"2021-06-28T09:38:35.2701033Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10543,7 +10543,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:39:00 GMT + - Mon, 28 Jun 2021 09:39:35 GMT expires: - '-1' pragma: @@ -10580,15 +10580,15 @@ interactions: - --vault-name -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/5a092c1d-b9f4-4dca-b0c9-e8305190cafc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/bc1c252d-5634-4d4a-8520-003cb5667bb2?api-version=2021-01-01 response: body: - string: '{"id":"5a092c1d-b9f4-4dca-b0c9-e8305190cafc","name":"5a092c1d-b9f4-4dca-b0c9-e8305190cafc","status":"InProgress","startTime":"2021-06-21T14:38:02.0514284Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"bc1c252d-5634-4d4a-8520-003cb5667bb2","name":"bc1c252d-5634-4d4a-8520-003cb5667bb2","status":"InProgress","startTime":"2021-06-28T09:38:35.2701033Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10597,7 +10597,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:39:02 GMT + - Mon, 28 Jun 2021 09:39:36 GMT expires: - '-1' pragma: @@ -10634,15 +10634,15 @@ interactions: - --vault-name -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/5a092c1d-b9f4-4dca-b0c9-e8305190cafc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/bc1c252d-5634-4d4a-8520-003cb5667bb2?api-version=2021-01-01 response: body: - string: '{"id":"5a092c1d-b9f4-4dca-b0c9-e8305190cafc","name":"5a092c1d-b9f4-4dca-b0c9-e8305190cafc","status":"InProgress","startTime":"2021-06-21T14:38:02.0514284Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"bc1c252d-5634-4d4a-8520-003cb5667bb2","name":"bc1c252d-5634-4d4a-8520-003cb5667bb2","status":"InProgress","startTime":"2021-06-28T09:38:35.2701033Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10651,7 +10651,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:39:03 GMT + - Mon, 28 Jun 2021 09:39:38 GMT expires: - '-1' pragma: @@ -10688,15 +10688,15 @@ interactions: - --vault-name -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/5a092c1d-b9f4-4dca-b0c9-e8305190cafc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/bc1c252d-5634-4d4a-8520-003cb5667bb2?api-version=2021-01-01 response: body: - string: '{"id":"5a092c1d-b9f4-4dca-b0c9-e8305190cafc","name":"5a092c1d-b9f4-4dca-b0c9-e8305190cafc","status":"InProgress","startTime":"2021-06-21T14:38:02.0514284Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"bc1c252d-5634-4d4a-8520-003cb5667bb2","name":"bc1c252d-5634-4d4a-8520-003cb5667bb2","status":"InProgress","startTime":"2021-06-28T09:38:35.2701033Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10705,7 +10705,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:39:05 GMT + - Mon, 28 Jun 2021 09:39:39 GMT expires: - '-1' pragma: @@ -10742,15 +10742,15 @@ interactions: - --vault-name -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/5a092c1d-b9f4-4dca-b0c9-e8305190cafc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/bc1c252d-5634-4d4a-8520-003cb5667bb2?api-version=2021-01-01 response: body: - string: '{"id":"5a092c1d-b9f4-4dca-b0c9-e8305190cafc","name":"5a092c1d-b9f4-4dca-b0c9-e8305190cafc","status":"InProgress","startTime":"2021-06-21T14:38:02.0514284Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"bc1c252d-5634-4d4a-8520-003cb5667bb2","name":"bc1c252d-5634-4d4a-8520-003cb5667bb2","status":"InProgress","startTime":"2021-06-28T09:38:35.2701033Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10759,7 +10759,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:39:06 GMT + - Mon, 28 Jun 2021 09:39:41 GMT expires: - '-1' pragma: @@ -10796,15 +10796,15 @@ interactions: - --vault-name -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/5a092c1d-b9f4-4dca-b0c9-e8305190cafc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/bc1c252d-5634-4d4a-8520-003cb5667bb2?api-version=2021-01-01 response: body: - string: '{"id":"5a092c1d-b9f4-4dca-b0c9-e8305190cafc","name":"5a092c1d-b9f4-4dca-b0c9-e8305190cafc","status":"InProgress","startTime":"2021-06-21T14:38:02.0514284Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"bc1c252d-5634-4d4a-8520-003cb5667bb2","name":"bc1c252d-5634-4d4a-8520-003cb5667bb2","status":"InProgress","startTime":"2021-06-28T09:38:35.2701033Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10813,7 +10813,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:39:08 GMT + - Mon, 28 Jun 2021 09:39:42 GMT expires: - '-1' pragma: @@ -10850,15 +10850,15 @@ interactions: - --vault-name -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/5a092c1d-b9f4-4dca-b0c9-e8305190cafc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/bc1c252d-5634-4d4a-8520-003cb5667bb2?api-version=2021-01-01 response: body: - string: '{"id":"5a092c1d-b9f4-4dca-b0c9-e8305190cafc","name":"5a092c1d-b9f4-4dca-b0c9-e8305190cafc","status":"InProgress","startTime":"2021-06-21T14:38:02.0514284Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"bc1c252d-5634-4d4a-8520-003cb5667bb2","name":"bc1c252d-5634-4d4a-8520-003cb5667bb2","status":"InProgress","startTime":"2021-06-28T09:38:35.2701033Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10867,7 +10867,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:39:09 GMT + - Mon, 28 Jun 2021 09:39:43 GMT expires: - '-1' pragma: @@ -10904,15 +10904,15 @@ interactions: - --vault-name -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/5a092c1d-b9f4-4dca-b0c9-e8305190cafc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/bc1c252d-5634-4d4a-8520-003cb5667bb2?api-version=2021-01-01 response: body: - string: '{"id":"5a092c1d-b9f4-4dca-b0c9-e8305190cafc","name":"5a092c1d-b9f4-4dca-b0c9-e8305190cafc","status":"InProgress","startTime":"2021-06-21T14:38:02.0514284Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"bc1c252d-5634-4d4a-8520-003cb5667bb2","name":"bc1c252d-5634-4d4a-8520-003cb5667bb2","status":"InProgress","startTime":"2021-06-28T09:38:35.2701033Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10921,7 +10921,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:39:11 GMT + - Mon, 28 Jun 2021 09:39:45 GMT expires: - '-1' pragma: @@ -10958,15 +10958,15 @@ interactions: - --vault-name -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/5a092c1d-b9f4-4dca-b0c9-e8305190cafc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/bc1c252d-5634-4d4a-8520-003cb5667bb2?api-version=2021-01-01 response: body: - string: '{"id":"5a092c1d-b9f4-4dca-b0c9-e8305190cafc","name":"5a092c1d-b9f4-4dca-b0c9-e8305190cafc","status":"InProgress","startTime":"2021-06-21T14:38:02.0514284Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"bc1c252d-5634-4d4a-8520-003cb5667bb2","name":"bc1c252d-5634-4d4a-8520-003cb5667bb2","status":"InProgress","startTime":"2021-06-28T09:38:35.2701033Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10975,7 +10975,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:39:12 GMT + - Mon, 28 Jun 2021 09:39:46 GMT expires: - '-1' pragma: @@ -11012,15 +11012,15 @@ interactions: - --vault-name -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/5a092c1d-b9f4-4dca-b0c9-e8305190cafc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/bc1c252d-5634-4d4a-8520-003cb5667bb2?api-version=2021-01-01 response: body: - string: '{"id":"5a092c1d-b9f4-4dca-b0c9-e8305190cafc","name":"5a092c1d-b9f4-4dca-b0c9-e8305190cafc","status":"InProgress","startTime":"2021-06-21T14:38:02.0514284Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"bc1c252d-5634-4d4a-8520-003cb5667bb2","name":"bc1c252d-5634-4d4a-8520-003cb5667bb2","status":"InProgress","startTime":"2021-06-28T09:38:35.2701033Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -11029,7 +11029,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:39:14 GMT + - Mon, 28 Jun 2021 09:39:48 GMT expires: - '-1' pragma: @@ -11066,15 +11066,15 @@ interactions: - --vault-name -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/5a092c1d-b9f4-4dca-b0c9-e8305190cafc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/bc1c252d-5634-4d4a-8520-003cb5667bb2?api-version=2021-01-01 response: body: - string: '{"id":"5a092c1d-b9f4-4dca-b0c9-e8305190cafc","name":"5a092c1d-b9f4-4dca-b0c9-e8305190cafc","status":"Succeeded","startTime":"2021-06-21T14:38:02.0514284Z","endTime":"2021-06-21T14:38:02.0514284Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"add02469-c85c-4933-80c3-444dbbeef811"}}' + string: '{"id":"bc1c252d-5634-4d4a-8520-003cb5667bb2","name":"bc1c252d-5634-4d4a-8520-003cb5667bb2","status":"Succeeded","startTime":"2021-06-28T09:38:35.2701033Z","endTime":"2021-06-28T09:38:35.2701033Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"a8be363d-b29c-4fe3-91b3-46ff90ec24a6"}}' headers: cache-control: - no-cache @@ -11083,7 +11083,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:39:15 GMT + - Mon, 28 Jun 2021 09:39:49 GMT expires: - '-1' pragma: @@ -11120,16 +11120,16 @@ interactions: - --vault-name -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/add02469-c85c-4933-80c3-444dbbeef811?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/a8be363d-b29c-4fe3-91b3-46ff90ec24a6?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/add02469-c85c-4933-80c3-444dbbeef811","name":"add02469-c85c-4933-80c3-444dbbeef811","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT1M12.8827402S","extendedInfo":{"tasksList":[],"propertyBag":{"Policy - Name":"hana-policy-ccy"}},"isUserTriggered":true,"entityFriendlyName":"systemdb","backupManagementType":"AzureWorkload","operation":"ConfigureBackup","status":"Completed","startTime":"2021-06-21T14:38:02.0514284Z","endTime":"2021-06-21T14:39:14.9341686Z","activityId":"46003976-d29e-11eb-a4d3-c8f750f92764"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/a8be363d-b29c-4fe3-91b3-46ff90ec24a6","name":"a8be363d-b29c-4fe3-91b3-46ff90ec24a6","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT1M13.5734441S","extendedInfo":{"tasksList":[],"propertyBag":{"Policy + Name":"hana-policy-ccy"}},"isUserTriggered":true,"entityFriendlyName":"systemdb","backupManagementType":"AzureWorkload","operation":"ConfigureBackup","status":"Completed","startTime":"2021-06-28T09:38:35.2701033Z","endTime":"2021-06-28T09:39:48.8435474Z","activityId":"99df1b86-d7f4-11eb-926d-00155d657312"}}' headers: cache-control: - no-cache @@ -11138,7 +11138,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:39:16 GMT + - Mon, 28 Jun 2021 09:39:51 GMT expires: - '-1' pragma: @@ -11175,15 +11175,15 @@ interactions: ParameterSetName: - -n -v -g --backup-management-type --query User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy","name":"VMAppContainer;Compute;akneema;akneema-hana-ccy","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.Compute/virtualMachines/akneema-hana-ccy","lastUpdatedTime":"2021-06-21T14:29:53.5227881Z","extendedInfo":{"hostServerName":"hxehost","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SAPHana","itemCount":2,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":"","protectableItemCount":{"SAPHanaSystem":1,"SAPHanaDatabase":2}}}]}},"friendlyName":"akneema-hana-ccy","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy","name":"VMAppContainer;Compute;akneema;akneema-hana-ccy","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.Compute/virtualMachines/akneema-hana-ccy","lastUpdatedTime":"2021-06-28T09:30:28.2965324Z","extendedInfo":{"hostServerName":"hxehost","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SAPHana","itemCount":2,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":"","protectableItemCount":{"SAPHanaSystem":1,"SAPHanaDatabase":2}}}]}},"friendlyName":"akneema-hana-ccy","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}' headers: cache-control: - no-cache @@ -11192,7 +11192,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:39:16 GMT + - Mon, 28 Jun 2021 09:39:52 GMT expires: - '-1' pragma: @@ -11228,24 +11228,24 @@ interactions: ParameterSetName: - -v -g -c -i --backup-type --enable-compression User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/protectedItems/saphanadatabase%3Bhxe%3Bsystemdb?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;akneema;akneema-hana-ccy/protectedItems/SAPHanaDatabase;hxe;systemdb","name":"SAPHanaDatabase;hxe;systemdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"systemdb","serverName":"hxehost","parentName":"HXE","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","lastBackupErrorDetail":{"code":"Success","message":""},"protectedItemDataSourceId":"1649691440","protectedItemHealthStatus":"IRPending","extendedInfo":{"recoveryPointCount":0,"policyState":"Consistent"},"protectedItemType":"AzureVmWorkloadSAPHanaDatabase","backupManagementType":"AzureWorkload","workloadType":"SAPHanaDatabase","containerName":"VMAppContainer;compute;akneema;akneema-hana-ccy","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.Compute/virtualMachines/akneema-hana-ccy","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupPolicies/hana-policy-ccy","isArchiveEnabled":false}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;akneema;akneema-hana-ccy/protectedItems/SAPHanaDatabase;hxe;systemdb","name":"SAPHanaDatabase;hxe;systemdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"systemdb","serverName":"hxehost","parentName":"HXE","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","lastBackupErrorDetail":{"code":"Success","message":""},"protectedItemDataSourceId":"126764446","protectedItemHealthStatus":"IRPending","extendedInfo":{"recoveryPointCount":0,"policyState":"Consistent"},"protectedItemType":"AzureVmWorkloadSAPHanaDatabase","backupManagementType":"AzureWorkload","workloadType":"SAPHanaDatabase","containerName":"VMAppContainer;compute;akneema;akneema-hana-ccy","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.Compute/virtualMachines/akneema-hana-ccy","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupPolicies/hana-policy-ccy","isArchiveEnabled":false}}' headers: cache-control: - no-cache content-length: - - '1401' + - '1400' content-type: - application/json date: - - Mon, 21 Jun 2021 14:39:18 GMT + - Mon, 28 Jun 2021 09:39:52 GMT expires: - '-1' pragma: @@ -11269,7 +11269,7 @@ interactions: message: OK - request: body: '{"properties": {"objectType": "AzureWorkloadBackupRequest", "backupType": - "Full", "enableCompression": false, "recoveryPointExpiryTimeInUTC": "2021-07-21T14:39:18.172898Z"}}' + "Full", "enableCompression": false, "recoveryPointExpiryTimeInUTC": "2021-07-28T09:39:53.365937Z"}}' headers: Accept: - application/json @@ -11286,8 +11286,8 @@ interactions: ParameterSetName: - -v -g -c -i --backup-type --enable-compression User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: POST @@ -11297,17 +11297,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;akneema;akneema-hana-ccy/protectedItems/SAPHanaDatabase;hxe;systemdb/operationsStatus/5e1283cc-04c0-4570-a467-6c0ac7b141c6?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;akneema;akneema-hana-ccy/protectedItems/SAPHanaDatabase;hxe;systemdb/operationsStatus/5b585740-0506-4d3f-b225-b757381719df?api-version=2021-01-01 cache-control: - no-cache content-length: - '0' date: - - Mon, 21 Jun 2021 14:39:19 GMT + - Mon, 28 Jun 2021 09:39:53 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;akneema;akneema-hana-ccy/protectedItems/SAPHanaDatabase;hxe;systemdb/operationResults/5e1283cc-04c0-4570-a467-6c0ac7b141c6?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;akneema;akneema-hana-ccy/protectedItems/SAPHanaDatabase;hxe;systemdb/operationResults/5b585740-0506-4d3f-b225-b757381719df?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -11335,15 +11335,15 @@ interactions: ParameterSetName: - -v -g -c -i --backup-type --enable-compression User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/5e1283cc-04c0-4570-a467-6c0ac7b141c6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/5b585740-0506-4d3f-b225-b757381719df?api-version=2021-01-01 response: body: - string: '{"id":"5e1283cc-04c0-4570-a467-6c0ac7b141c6","name":"5e1283cc-04c0-4570-a467-6c0ac7b141c6","status":"Succeeded","startTime":"2021-06-21T14:39:20.0952084Z","endTime":"2021-06-21T14:39:20.0952084Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"05ca5ca9-566a-47a6-99ce-b79d65b8f727"}}' + string: '{"id":"5b585740-0506-4d3f-b225-b757381719df","name":"5b585740-0506-4d3f-b225-b757381719df","status":"Succeeded","startTime":"2021-06-28T09:39:54.3431527Z","endTime":"2021-06-28T09:39:54.3431527Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"aa1ba88a-e06c-4e4f-8945-721ffa81aec9"}}' headers: cache-control: - no-cache @@ -11352,7 +11352,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:39:21 GMT + - Mon, 28 Jun 2021 09:39:54 GMT expires: - '-1' pragma: @@ -11368,7 +11368,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '126' + - '147' x-powered-by: - ASP.NET status: @@ -11388,26 +11388,26 @@ interactions: ParameterSetName: - -v -g -c -i --backup-type --enable-compression User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/05ca5ca9-566a-47a6-99ce-b79d65b8f727?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/aa1ba88a-e06c-4e4f-8945-721ffa81aec9?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/05ca5ca9-566a-47a6-99ce-b79d65b8f727","name":"05ca5ca9-566a-47a6-99ce-b79d65b8f727","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SAPHanaDatabase","duration":"PT2.486942S","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/aa1ba88a-e06c-4e4f-8945-721ffa81aec9","name":"aa1ba88a-e06c-4e4f-8945-721ffa81aec9","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SAPHanaDatabase","duration":"PT2.5554079S","extendedInfo":{"tasksList":[{"taskId":"Transfer data to vault","status":"InProgress"}],"propertyBag":{}},"isUserTriggered":true,"entityFriendlyName":"SYSTEMDB - [hxehost]","backupManagementType":"AzureWorkload","operation":"Backup (Full)","status":"InProgress","startTime":"2021-06-21T14:39:20.0952084Z","activityId":"74f7ddb0-d29e-11eb-a59f-c8f750f92764"}}' + [hxehost]","backupManagementType":"AzureWorkload","operation":"Backup (Full)","status":"InProgress","startTime":"2021-06-28T09:39:54.3431527Z","activityId":"c9dfdfca-d7f4-11eb-9be5-00155d657312"}}' headers: cache-control: - no-cache content-length: - - '768' + - '769' content-type: - application/json date: - - Mon, 21 Jun 2021 14:39:22 GMT + - Mon, 28 Jun 2021 09:39:56 GMT expires: - '-1' pragma: @@ -11424,7 +11424,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '149' x-powered-by: - ASP.NET status: @@ -11444,17 +11444,17 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/05ca5ca9-566a-47a6-99ce-b79d65b8f727?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/aa1ba88a-e06c-4e4f-8945-721ffa81aec9?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/05ca5ca9-566a-47a6-99ce-b79d65b8f727","name":"05ca5ca9-566a-47a6-99ce-b79d65b8f727","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SAPHanaDatabase","duration":"PT3.1049951S","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/aa1ba88a-e06c-4e4f-8945-721ffa81aec9","name":"aa1ba88a-e06c-4e4f-8945-721ffa81aec9","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SAPHanaDatabase","duration":"PT3.2532187S","extendedInfo":{"tasksList":[{"taskId":"Transfer data to vault","status":"InProgress"}],"propertyBag":{}},"isUserTriggered":true,"entityFriendlyName":"SYSTEMDB - [hxehost]","backupManagementType":"AzureWorkload","operation":"Backup (Full)","status":"InProgress","startTime":"2021-06-21T14:39:20.0952084Z","activityId":"74f7ddb0-d29e-11eb-a59f-c8f750f92764"}}' + [hxehost]","backupManagementType":"AzureWorkload","operation":"Backup (Full)","status":"InProgress","startTime":"2021-06-28T09:39:54.3431527Z","activityId":"c9dfdfca-d7f4-11eb-9be5-00155d657312"}}' headers: cache-control: - no-cache @@ -11463,7 +11463,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:39:22 GMT + - Mon, 28 Jun 2021 09:39:57 GMT expires: - '-1' pragma: @@ -11480,7 +11480,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '149' x-powered-by: - ASP.NET status: @@ -11500,17 +11500,17 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/05ca5ca9-566a-47a6-99ce-b79d65b8f727?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/aa1ba88a-e06c-4e4f-8945-721ffa81aec9?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/05ca5ca9-566a-47a6-99ce-b79d65b8f727","name":"05ca5ca9-566a-47a6-99ce-b79d65b8f727","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SAPHanaDatabase","duration":"PT3.5178773S","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/aa1ba88a-e06c-4e4f-8945-721ffa81aec9","name":"aa1ba88a-e06c-4e4f-8945-721ffa81aec9","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SAPHanaDatabase","duration":"PT3.7151106S","extendedInfo":{"tasksList":[{"taskId":"Transfer data to vault","status":"InProgress"}],"propertyBag":{}},"isUserTriggered":true,"entityFriendlyName":"SYSTEMDB - [hxehost]","backupManagementType":"AzureWorkload","operation":"Backup (Full)","status":"InProgress","startTime":"2021-06-21T14:39:20.0952084Z","activityId":"74f7ddb0-d29e-11eb-a59f-c8f750f92764"}}' + [hxehost]","backupManagementType":"AzureWorkload","operation":"Backup (Full)","status":"InProgress","startTime":"2021-06-28T09:39:54.3431527Z","activityId":"c9dfdfca-d7f4-11eb-9be5-00155d657312"}}' headers: cache-control: - no-cache @@ -11519,7 +11519,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:39:23 GMT + - Mon, 28 Jun 2021 09:39:57 GMT expires: - '-1' pragma: @@ -11536,7 +11536,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '148' x-powered-by: - ASP.NET status: @@ -11556,26 +11556,26 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/05ca5ca9-566a-47a6-99ce-b79d65b8f727?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/aa1ba88a-e06c-4e4f-8945-721ffa81aec9?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/05ca5ca9-566a-47a6-99ce-b79d65b8f727","name":"05ca5ca9-566a-47a6-99ce-b79d65b8f727","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SAPHanaDatabase","duration":"PT33.9784125S","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/aa1ba88a-e06c-4e4f-8945-721ffa81aec9","name":"aa1ba88a-e06c-4e4f-8945-721ffa81aec9","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SAPHanaDatabase","duration":"PT34.165106S","extendedInfo":{"tasksList":[{"taskId":"Transfer data to vault","status":"InProgress"}],"propertyBag":{}},"isUserTriggered":true,"entityFriendlyName":"SYSTEMDB - [hxehost]","backupManagementType":"AzureWorkload","operation":"Backup (Full)","status":"InProgress","startTime":"2021-06-21T14:39:20.0952084Z","activityId":"74f7ddb0-d29e-11eb-a59f-c8f750f92764"}}' + [hxehost]","backupManagementType":"AzureWorkload","operation":"Backup (Full)","status":"InProgress","startTime":"2021-06-28T09:39:54.3431527Z","activityId":"c9dfdfca-d7f4-11eb-9be5-00155d657312"}}' headers: cache-control: - no-cache content-length: - - '770' + - '769' content-type: - application/json date: - - Mon, 21 Jun 2021 14:39:53 GMT + - Mon, 28 Jun 2021 09:40:27 GMT expires: - '-1' pragma: @@ -11592,7 +11592,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '147' x-powered-by: - ASP.NET status: @@ -11612,17 +11612,17 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/05ca5ca9-566a-47a6-99ce-b79d65b8f727?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/aa1ba88a-e06c-4e4f-8945-721ffa81aec9?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/05ca5ca9-566a-47a6-99ce-b79d65b8f727","name":"05ca5ca9-566a-47a6-99ce-b79d65b8f727","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SAPHanaDatabase","duration":"PT1M4.5678954S","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/aa1ba88a-e06c-4e4f-8945-721ffa81aec9","name":"aa1ba88a-e06c-4e4f-8945-721ffa81aec9","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SAPHanaDatabase","duration":"PT1M4.6042078S","extendedInfo":{"tasksList":[{"taskId":"Transfer data to vault","status":"InProgress"}],"propertyBag":{}},"isUserTriggered":true,"entityFriendlyName":"SYSTEMDB - [hxehost]","backupManagementType":"AzureWorkload","operation":"Backup (Full)","status":"InProgress","startTime":"2021-06-21T14:39:20.0952084Z","activityId":"74f7ddb0-d29e-11eb-a59f-c8f750f92764"}}' + [hxehost]","backupManagementType":"AzureWorkload","operation":"Backup (Full)","status":"InProgress","startTime":"2021-06-28T09:39:54.3431527Z","activityId":"c9dfdfca-d7f4-11eb-9be5-00155d657312"}}' headers: cache-control: - no-cache @@ -11631,7 +11631,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:40:24 GMT + - Mon, 28 Jun 2021 09:40:58 GMT expires: - '-1' pragma: @@ -11648,7 +11648,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '146' x-powered-by: - ASP.NET status: @@ -11668,17 +11668,17 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/05ca5ca9-566a-47a6-99ce-b79d65b8f727?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/aa1ba88a-e06c-4e4f-8945-721ffa81aec9?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/05ca5ca9-566a-47a6-99ce-b79d65b8f727","name":"05ca5ca9-566a-47a6-99ce-b79d65b8f727","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SAPHanaDatabase","duration":"PT1M35.2117728S","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/aa1ba88a-e06c-4e4f-8945-721ffa81aec9","name":"aa1ba88a-e06c-4e4f-8945-721ffa81aec9","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SAPHanaDatabase","duration":"PT1M35.0859893S","extendedInfo":{"tasksList":[{"taskId":"Transfer data to vault","status":"InProgress"}],"propertyBag":{}},"isUserTriggered":true,"entityFriendlyName":"SYSTEMDB - [hxehost]","backupManagementType":"AzureWorkload","operation":"Backup (Full)","status":"InProgress","startTime":"2021-06-21T14:39:20.0952084Z","activityId":"74f7ddb0-d29e-11eb-a59f-c8f750f92764"}}' + [hxehost]","backupManagementType":"AzureWorkload","operation":"Backup (Full)","status":"InProgress","startTime":"2021-06-28T09:39:54.3431527Z","activityId":"c9dfdfca-d7f4-11eb-9be5-00155d657312"}}' headers: cache-control: - no-cache @@ -11687,7 +11687,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:40:55 GMT + - Mon, 28 Jun 2021 09:41:28 GMT expires: - '-1' pragma: @@ -11704,7 +11704,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '145' x-powered-by: - ASP.NET status: @@ -11724,17 +11724,17 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/05ca5ca9-566a-47a6-99ce-b79d65b8f727?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/aa1ba88a-e06c-4e4f-8945-721ffa81aec9?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/05ca5ca9-566a-47a6-99ce-b79d65b8f727","name":"05ca5ca9-566a-47a6-99ce-b79d65b8f727","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SAPHanaDatabase","duration":"PT2M5.6960478S","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/aa1ba88a-e06c-4e4f-8945-721ffa81aec9","name":"aa1ba88a-e06c-4e4f-8945-721ffa81aec9","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SAPHanaDatabase","duration":"PT2M5.5783499S","extendedInfo":{"tasksList":[{"taskId":"Transfer data to vault","status":"InProgress"}],"propertyBag":{}},"isUserTriggered":true,"entityFriendlyName":"SYSTEMDB - [hxehost]","backupManagementType":"AzureWorkload","operation":"Backup (Full)","status":"InProgress","startTime":"2021-06-21T14:39:20.0952084Z","activityId":"74f7ddb0-d29e-11eb-a59f-c8f750f92764"}}' + [hxehost]","backupManagementType":"AzureWorkload","operation":"Backup (Full)","status":"InProgress","startTime":"2021-06-28T09:39:54.3431527Z","activityId":"c9dfdfca-d7f4-11eb-9be5-00155d657312"}}' headers: cache-control: - no-cache @@ -11743,7 +11743,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:41:25 GMT + - Mon, 28 Jun 2021 09:41:59 GMT expires: - '-1' pragma: @@ -11760,7 +11760,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' + - '144' x-powered-by: - ASP.NET status: @@ -11780,26 +11780,26 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/05ca5ca9-566a-47a6-99ce-b79d65b8f727?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/aa1ba88a-e06c-4e4f-8945-721ffa81aec9?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/05ca5ca9-566a-47a6-99ce-b79d65b8f727","name":"05ca5ca9-566a-47a6-99ce-b79d65b8f727","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SAPHanaDatabase","duration":"PT2M36.1288013S","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/aa1ba88a-e06c-4e4f-8945-721ffa81aec9","name":"aa1ba88a-e06c-4e4f-8945-721ffa81aec9","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SAPHanaDatabase","duration":"PT2M36.035969S","extendedInfo":{"tasksList":[{"taskId":"Transfer data to vault","status":"InProgress"}],"propertyBag":{}},"isUserTriggered":true,"entityFriendlyName":"SYSTEMDB - [hxehost]","backupManagementType":"AzureWorkload","operation":"Backup (Full)","status":"InProgress","startTime":"2021-06-21T14:39:20.0952084Z","activityId":"74f7ddb0-d29e-11eb-a59f-c8f750f92764"}}' + [hxehost]","backupManagementType":"AzureWorkload","operation":"Backup (Full)","status":"InProgress","startTime":"2021-06-28T09:39:54.3431527Z","activityId":"c9dfdfca-d7f4-11eb-9be5-00155d657312"}}' headers: cache-control: - no-cache content-length: - - '772' + - '771' content-type: - application/json date: - - Mon, 21 Jun 2021 14:41:55 GMT + - Mon, 28 Jun 2021 09:42:30 GMT expires: - '-1' pragma: @@ -11816,7 +11816,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '141' + - '143' x-powered-by: - ASP.NET status: @@ -11836,17 +11836,17 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/05ca5ca9-566a-47a6-99ce-b79d65b8f727?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/aa1ba88a-e06c-4e4f-8945-721ffa81aec9?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/05ca5ca9-566a-47a6-99ce-b79d65b8f727","name":"05ca5ca9-566a-47a6-99ce-b79d65b8f727","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SAPHanaDatabase","duration":"PT3M6.5653748S","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/aa1ba88a-e06c-4e4f-8945-721ffa81aec9","name":"aa1ba88a-e06c-4e4f-8945-721ffa81aec9","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SAPHanaDatabase","duration":"PT3M6.5073885S","extendedInfo":{"tasksList":[{"taskId":"Transfer data to vault","status":"InProgress"}],"propertyBag":{}},"isUserTriggered":true,"entityFriendlyName":"SYSTEMDB - [hxehost]","backupManagementType":"AzureWorkload","operation":"Backup (Full)","status":"InProgress","startTime":"2021-06-21T14:39:20.0952084Z","activityId":"74f7ddb0-d29e-11eb-a59f-c8f750f92764"}}' + [hxehost]","backupManagementType":"AzureWorkload","operation":"Backup (Full)","status":"InProgress","startTime":"2021-06-28T09:39:54.3431527Z","activityId":"c9dfdfca-d7f4-11eb-9be5-00155d657312"}}' headers: cache-control: - no-cache @@ -11855,7 +11855,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:42:26 GMT + - Mon, 28 Jun 2021 09:43:00 GMT expires: - '-1' pragma: @@ -11872,7 +11872,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '140' + - '142' x-powered-by: - ASP.NET status: @@ -11892,17 +11892,17 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/05ca5ca9-566a-47a6-99ce-b79d65b8f727?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/aa1ba88a-e06c-4e4f-8945-721ffa81aec9?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/05ca5ca9-566a-47a6-99ce-b79d65b8f727","name":"05ca5ca9-566a-47a6-99ce-b79d65b8f727","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SAPHanaDatabase","duration":"PT3M37.0372224S","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/aa1ba88a-e06c-4e4f-8945-721ffa81aec9","name":"aa1ba88a-e06c-4e4f-8945-721ffa81aec9","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SAPHanaDatabase","duration":"PT3M36.9769934S","extendedInfo":{"tasksList":[{"taskId":"Transfer data to vault","status":"InProgress"}],"propertyBag":{}},"isUserTriggered":true,"entityFriendlyName":"SYSTEMDB - [hxehost]","backupManagementType":"AzureWorkload","operation":"Backup (Full)","status":"InProgress","startTime":"2021-06-21T14:39:20.0952084Z","activityId":"74f7ddb0-d29e-11eb-a59f-c8f750f92764"}}' + [hxehost]","backupManagementType":"AzureWorkload","operation":"Backup (Full)","status":"InProgress","startTime":"2021-06-28T09:39:54.3431527Z","activityId":"c9dfdfca-d7f4-11eb-9be5-00155d657312"}}' headers: cache-control: - no-cache @@ -11911,7 +11911,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:42:56 GMT + - Mon, 28 Jun 2021 09:43:31 GMT expires: - '-1' pragma: @@ -11928,7 +11928,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '139' + - '141' x-powered-by: - ASP.NET status: @@ -11948,18 +11948,18 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/05ca5ca9-566a-47a6-99ce-b79d65b8f727?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/aa1ba88a-e06c-4e4f-8945-721ffa81aec9?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/05ca5ca9-566a-47a6-99ce-b79d65b8f727","name":"05ca5ca9-566a-47a6-99ce-b79d65b8f727","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SAPHanaDatabase","duration":"PT4M3.7615678S","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/aa1ba88a-e06c-4e4f-8945-721ffa81aec9","name":"aa1ba88a-e06c-4e4f-8945-721ffa81aec9","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SAPHanaDatabase","duration":"PT4M4.5164649S","extendedInfo":{"tasksList":[{"taskId":"Transfer data to vault","status":"Completed"}],"propertyBag":{"Data Transferred (in - MB)":"1186.4766"}},"isUserTriggered":true,"entityFriendlyName":"SYSTEMDB [hxehost]","backupManagementType":"AzureWorkload","operation":"Backup - (Full)","status":"Completed","startTime":"2021-06-21T14:39:20.0952084Z","endTime":"2021-06-21T14:43:23.8567762Z","activityId":"74f7ddb0-d29e-11eb-a59f-c8f750f92764"}}' + MB)":"1186.5234"}},"isUserTriggered":true,"entityFriendlyName":"SYSTEMDB [hxehost]","backupManagementType":"AzureWorkload","operation":"Backup + (Full)","status":"Completed","startTime":"2021-06-28T09:39:54.3431527Z","endTime":"2021-06-28T09:43:58.8596176Z","activityId":"c9dfdfca-d7f4-11eb-9be5-00155d657312"}}' headers: cache-control: - no-cache @@ -11968,7 +11968,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:43:27 GMT + - Mon, 28 Jun 2021 09:44:01 GMT expires: - '-1' pragma: @@ -11985,7 +11985,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '138' + - '140' x-powered-by: - ASP.NET status: @@ -12005,24 +12005,24 @@ interactions: ParameterSetName: - -g -v -c -n --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/protectedItems/saphanadatabase%3Bhxe%3Bsystemdb?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;akneema;akneema-hana-ccy/protectedItems/SAPHanaDatabase;hxe;systemdb","name":"SAPHanaDatabase;hxe;systemdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"systemdb","serverName":"hxehost","parentName":"HXE","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2021-06-21T14:39:20.0952084Z","protectedItemDataSourceId":"1649691440","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2021-06-21T14:39:35.398Z","recoveryPointCount":1,"policyState":"Consistent"},"protectedItemType":"AzureVmWorkloadSAPHanaDatabase","backupManagementType":"AzureWorkload","workloadType":"SAPHanaDatabase","containerName":"VMAppContainer;compute;akneema;akneema-hana-ccy","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.Compute/virtualMachines/akneema-hana-ccy","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupPolicies/hana-policy-ccy","lastRecoveryPoint":"2021-06-21T14:39:35.398Z","isArchiveEnabled":false}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;akneema;akneema-hana-ccy/protectedItems/SAPHanaDatabase;hxe;systemdb","name":"SAPHanaDatabase;hxe;systemdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"systemdb","serverName":"hxehost","parentName":"HXE","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2021-06-28T09:39:54.3431527Z","protectedItemDataSourceId":"126764446","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2021-06-28T09:39:38.755Z","recoveryPointCount":1,"policyState":"Consistent"},"protectedItemType":"AzureVmWorkloadSAPHanaDatabase","backupManagementType":"AzureWorkload","workloadType":"SAPHanaDatabase","containerName":"VMAppContainer;compute;akneema;akneema-hana-ccy","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.Compute/virtualMachines/akneema-hana-ccy","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupPolicies/hana-policy-ccy","lastRecoveryPoint":"2021-06-28T09:39:38.755Z","isArchiveEnabled":false}}' headers: cache-control: - no-cache content-length: - - '1635' + - '1634' content-type: - application/json date: - - Mon, 21 Jun 2021 14:43:58 GMT + - Mon, 28 Jun 2021 09:44:32 GMT expires: - '-1' pragma: @@ -12058,24 +12058,24 @@ interactions: ParameterSetName: - -g -v -c -i --workload-type --query User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/protectedItems/saphanadatabase%3Bhxe%3Bsystemdb?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;akneema;akneema-hana-ccy/protectedItems/SAPHanaDatabase;hxe;systemdb","name":"SAPHanaDatabase;hxe;systemdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"systemdb","serverName":"hxehost","parentName":"HXE","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2021-06-21T14:39:20.0952084Z","protectedItemDataSourceId":"1649691440","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2021-06-21T14:39:35.398Z","recoveryPointCount":1,"policyState":"Consistent"},"protectedItemType":"AzureVmWorkloadSAPHanaDatabase","backupManagementType":"AzureWorkload","workloadType":"SAPHanaDatabase","containerName":"VMAppContainer;compute;akneema;akneema-hana-ccy","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.Compute/virtualMachines/akneema-hana-ccy","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupPolicies/hana-policy-ccy","lastRecoveryPoint":"2021-06-21T14:39:35.398Z","isArchiveEnabled":false}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;akneema;akneema-hana-ccy/protectedItems/SAPHanaDatabase;hxe;systemdb","name":"SAPHanaDatabase;hxe;systemdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"systemdb","serverName":"hxehost","parentName":"HXE","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2021-06-28T09:39:54.3431527Z","protectedItemDataSourceId":"126764446","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2021-06-28T09:39:38.755Z","recoveryPointCount":1,"policyState":"Consistent"},"protectedItemType":"AzureVmWorkloadSAPHanaDatabase","backupManagementType":"AzureWorkload","workloadType":"SAPHanaDatabase","containerName":"VMAppContainer;compute;akneema;akneema-hana-ccy","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.Compute/virtualMachines/akneema-hana-ccy","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupPolicies/hana-policy-ccy","lastRecoveryPoint":"2021-06-28T09:39:38.755Z","isArchiveEnabled":false}}' headers: cache-control: - no-cache content-length: - - '1635' + - '1634' content-type: - application/json date: - - Mon, 21 Jun 2021 14:44:00 GMT + - Mon, 28 Jun 2021 09:44:33 GMT expires: - '-1' pragma: @@ -12111,15 +12111,15 @@ interactions: ParameterSetName: - -g -v -c -i --workload-type --query User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Bakneema%3Bakneema-hana-ccy/protectedItems/SAPHanaDatabase%3Bhxe%3Bsystemdb/recoveryPoints?api-version=2021-01-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;akneema;akneema-hana-ccy/protectedItems/SAPHanaDatabase;hxe;systemdb/recoveryPoints/45202642569475","name":"45202642569475","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSAPHanaRecoveryPoint","recoveryPointTimeInUTC":"2021-06-21T14:39:35.398Z","type":"Full","recoveryPointTierDetails":[{"type":2,"status":1}],"recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":false,"additionalInfo":"We''re + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;akneema;akneema-hana-ccy/protectedItems/SAPHanaDatabase;hxe;systemdb/recoveryPoints/38261866252733","name":"38261866252733","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSAPHanaRecoveryPoint","recoveryPointTimeInUTC":"2021-06-28T09:39:38.755Z","type":"Full","recoveryPointTierDetails":[{"type":2,"status":1}],"recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":false,"additionalInfo":"We''re still determining if this Recovery Point can be moved.. Please check again after some time."}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;akneema;akneema-hana-ccy/protectedItems/SAPHanaDatabase;hxe;systemdb/recoveryPoints/DefaultRangeRecoveryPoint","name":"DefaultRangeRecoveryPoint","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSAPHanaPointInTimeRecoveryPoint","timeRanges":[],"type":"Log"}}]}' headers: @@ -12130,7 +12130,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:44:00 GMT + - Mon, 28 Jun 2021 09:44:34 GMT expires: - '-1' pragma: @@ -12146,7 +12146,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '148' x-powered-by: - ASP.NET status: @@ -12167,8 +12167,8 @@ interactions: - --vault-name -g --restore-mode --rp-name --item-name --container-name --target-item-name --target-server-type --target-server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET @@ -12184,7 +12184,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:44:01 GMT + - Mon, 28 Jun 2021 09:44:35 GMT expires: - '-1' pragma: @@ -12221,24 +12221,24 @@ interactions: - --vault-name -g --restore-mode --rp-name --item-name --container-name --target-item-name --target-server-type --target-server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/protectedItems/saphanadatabase%3Bhxe%3Bsystemdb?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;akneema;akneema-hana-ccy/protectedItems/SAPHanaDatabase;hxe;systemdb","name":"SAPHanaDatabase;hxe;systemdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"systemdb","serverName":"hxehost","parentName":"HXE","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2021-06-21T14:39:20.0952084Z","protectedItemDataSourceId":"1649691440","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2021-06-21T14:39:35.398Z","recoveryPointCount":1,"policyState":"Consistent"},"protectedItemType":"AzureVmWorkloadSAPHanaDatabase","backupManagementType":"AzureWorkload","workloadType":"SAPHanaDatabase","containerName":"VMAppContainer;compute;akneema;akneema-hana-ccy","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.Compute/virtualMachines/akneema-hana-ccy","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupPolicies/hana-policy-ccy","lastRecoveryPoint":"2021-06-21T14:39:35.398Z","isArchiveEnabled":false}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;akneema;akneema-hana-ccy/protectedItems/SAPHanaDatabase;hxe;systemdb","name":"SAPHanaDatabase;hxe;systemdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"systemdb","serverName":"hxehost","parentName":"HXE","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2021-06-28T09:39:54.3431527Z","protectedItemDataSourceId":"126764446","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2021-06-28T09:39:38.755Z","recoveryPointCount":1,"policyState":"Consistent"},"protectedItemType":"AzureVmWorkloadSAPHanaDatabase","backupManagementType":"AzureWorkload","workloadType":"SAPHanaDatabase","containerName":"VMAppContainer;compute;akneema;akneema-hana-ccy","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.Compute/virtualMachines/akneema-hana-ccy","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupPolicies/hana-policy-ccy","lastRecoveryPoint":"2021-06-28T09:39:38.755Z","isArchiveEnabled":false}}' headers: cache-control: - no-cache content-length: - - '1635' + - '1634' content-type: - application/json date: - - Mon, 21 Jun 2021 14:44:02 GMT + - Mon, 28 Jun 2021 09:44:35 GMT expires: - '-1' pragma: @@ -12275,24 +12275,24 @@ interactions: - --vault-name -g --restore-mode --rp-name --item-name --container-name --target-item-name --target-server-type --target-server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/protectedItems/SAPHanaDatabase%3Bhxe%3Bsystemdb?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;akneema;akneema-hana-ccy/protectedItems/SAPHanaDatabase;hxe;systemdb","name":"SAPHanaDatabase;hxe;systemdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"systemdb","serverName":"hxehost","parentName":"HXE","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2021-06-21T14:39:20.0952084Z","protectedItemDataSourceId":"1649691440","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2021-06-21T14:39:35.398Z","recoveryPointCount":1,"policyState":"Consistent"},"protectedItemType":"AzureVmWorkloadSAPHanaDatabase","backupManagementType":"AzureWorkload","workloadType":"SAPHanaDatabase","containerName":"VMAppContainer;compute;akneema;akneema-hana-ccy","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.Compute/virtualMachines/akneema-hana-ccy","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupPolicies/hana-policy-ccy","lastRecoveryPoint":"2021-06-21T14:39:35.398Z","isArchiveEnabled":false}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;akneema;akneema-hana-ccy/protectedItems/SAPHanaDatabase;hxe;systemdb","name":"SAPHanaDatabase;hxe;systemdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"systemdb","serverName":"hxehost","parentName":"HXE","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2021-06-28T09:39:54.3431527Z","protectedItemDataSourceId":"126764446","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2021-06-28T09:39:38.755Z","recoveryPointCount":1,"policyState":"Consistent"},"protectedItemType":"AzureVmWorkloadSAPHanaDatabase","backupManagementType":"AzureWorkload","workloadType":"SAPHanaDatabase","containerName":"VMAppContainer;compute;akneema;akneema-hana-ccy","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.Compute/virtualMachines/akneema-hana-ccy","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupPolicies/hana-policy-ccy","lastRecoveryPoint":"2021-06-28T09:39:38.755Z","isArchiveEnabled":false}}' headers: cache-control: - no-cache content-length: - - '1635' + - '1634' content-type: - application/json date: - - Mon, 21 Jun 2021 14:44:03 GMT + - Mon, 28 Jun 2021 09:44:37 GMT expires: - '-1' pragma: @@ -12308,7 +12308,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '148' x-powered-by: - ASP.NET status: @@ -12329,15 +12329,123 @@ interactions: - --vault-name -g --restore-mode --rp-name --item-name --container-name --target-item-name --target-server-type --target-server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Bakneema%3Bakneema-hana-ccy/protectedItems/SAPHanaDatabase%3Bhxe%3Bsystemdb/recoveryPoints/38261866252733?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;akneema;akneema-hana-ccy/protectedItems/SAPHanaDatabase;hxe;systemdb/recoveryPoints/38261866252733","name":"38261866252733","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSAPHanaRecoveryPoint","recoveryPointTimeInUTC":"2021-06-28T09:39:38.755Z","type":"Full","recoveryPointTierDetails":[{"type":2,"status":1}],"recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":false,"additionalInfo":"We''re + still determining if this Recovery Point can be moved.. Please check again + after some time."}}}}' + headers: + cache-control: + - no-cache + content-length: + - '811' + content-type: + - application/json + date: + - Mon, 28 Jun 2021 09:44:37 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup restore restore-azurewl + Connection: + - keep-alive + ParameterSetName: + - --vault-name -g --recovery-config + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Bakneema%3Bakneema-hana-ccy/protectedItems/SAPHanaDatabase%3Bhxe%3Bsystemdb?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;akneema;akneema-hana-ccy/protectedItems/SAPHanaDatabase;hxe;systemdb","name":"SAPHanaDatabase;hxe;systemdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"systemdb","serverName":"hxehost","parentName":"HXE","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2021-06-28T09:39:54.3431527Z","protectedItemDataSourceId":"126764446","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2021-06-28T09:39:38.755Z","recoveryPointCount":1,"policyState":"Consistent"},"protectedItemType":"AzureVmWorkloadSAPHanaDatabase","backupManagementType":"AzureWorkload","workloadType":"SAPHanaDatabase","containerName":"VMAppContainer;compute;akneema;akneema-hana-ccy","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.Compute/virtualMachines/akneema-hana-ccy","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupPolicies/hana-policy-ccy","lastRecoveryPoint":"2021-06-28T09:39:38.755Z","isArchiveEnabled":false}}' + headers: + cache-control: + - no-cache + content-length: + - '1634' + content-type: + - application/json + date: + - Mon, 28 Jun 2021 09:44:40 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup restore restore-azurewl + Connection: + - keep-alive + ParameterSetName: + - --vault-name -g --recovery-config + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Bakneema%3Bakneema-hana-ccy/protectedItems/SAPHanaDatabase%3Bhxe%3Bsystemdb/recoveryPoints/45202642569475?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Bakneema%3Bakneema-hana-ccy/protectedItems/SAPHanaDatabase%3Bhxe%3Bsystemdb/recoveryPoints/38261866252733?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;akneema;akneema-hana-ccy/protectedItems/SAPHanaDatabase;hxe;systemdb/recoveryPoints/45202642569475","name":"45202642569475","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSAPHanaRecoveryPoint","recoveryPointTimeInUTC":"2021-06-21T14:39:35.398Z","type":"Full","recoveryPointTierDetails":[{"type":2,"status":1}],"recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":false,"additionalInfo":"We''re + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;akneema;akneema-hana-ccy/protectedItems/SAPHanaDatabase;hxe;systemdb/recoveryPoints/38261866252733","name":"38261866252733","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSAPHanaRecoveryPoint","recoveryPointTimeInUTC":"2021-06-28T09:39:38.755Z","type":"Full","recoveryPointTierDetails":[{"type":2,"status":1}],"recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":false,"additionalInfo":"We''re still determining if this Recovery Point can be moved.. Please check again after some time."}}}}' headers: @@ -12348,7 +12456,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:44:04 GMT + - Mon, 28 Jun 2021 09:44:42 GMT expires: - '-1' pragma: @@ -12384,15 +12492,15 @@ interactions: ParameterSetName: - --vault-name -g --recovery-config User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/vmappcontainer%3Bcompute%3Bakneema%3Bakneema-hana-ccy?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy","name":"VMAppContainer;Compute;akneema;akneema-hana-ccy","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.Compute/virtualMachines/akneema-hana-ccy","lastUpdatedTime":"2021-06-21T14:29:53.5227881Z","extendedInfo":{"hostServerName":"hxehost","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SAPHana","itemCount":2,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":"","protectableItemCount":{"SAPHanaSystem":1,"SAPHanaDatabase":2}}}]}},"friendlyName":"akneema-hana-ccy","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy","name":"VMAppContainer;Compute;akneema;akneema-hana-ccy","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.Compute/virtualMachines/akneema-hana-ccy","lastUpdatedTime":"2021-06-28T09:30:28.2965324Z","extendedInfo":{"hostServerName":"hxehost","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SAPHana","itemCount":2,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":"","protectableItemCount":{"SAPHanaSystem":1,"SAPHanaDatabase":2}}}]}},"friendlyName":"akneema-hana-ccy","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}' headers: cache-control: - no-cache @@ -12401,7 +12509,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:44:06 GMT + - Mon, 28 Jun 2021 09:44:45 GMT expires: - '-1' pragma: @@ -12444,28 +12552,28 @@ interactions: ParameterSetName: - --vault-name -g --recovery-config User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Bakneema%3Bakneema-hana-ccy/protectedItems/SAPHanaDatabase%3Bhxe%3Bsystemdb/recoveryPoints/45202642569475/restore?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Bakneema%3Bakneema-hana-ccy/protectedItems/SAPHanaDatabase%3Bhxe%3Bsystemdb/recoveryPoints/38261866252733/restore?api-version=2021-01-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;akneema;akneema-hana-ccy/protectedItems/SAPHanaDatabase;hxe;systemdb/operationsStatus/9ae922e7-0a87-4d5c-9539-94c238d9063c?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;akneema;akneema-hana-ccy/protectedItems/SAPHanaDatabase;hxe;systemdb/operationsStatus/a5de7013-d3a9-4755-ab65-866b26df681e?api-version=2021-01-01 cache-control: - no-cache content-length: - '0' date: - - Mon, 21 Jun 2021 14:44:06 GMT + - Mon, 28 Jun 2021 09:44:47 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;akneema;akneema-hana-ccy/protectedItems/SAPHanaDatabase;hxe;systemdb/operationResults/9ae922e7-0a87-4d5c-9539-94c238d9063c?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;akneema;akneema-hana-ccy/protectedItems/SAPHanaDatabase;hxe;systemdb/operationResults/a5de7013-d3a9-4755-ab65-866b26df681e?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -12473,7 +12581,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -12493,15 +12601,15 @@ interactions: ParameterSetName: - --vault-name -g --recovery-config User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/9ae922e7-0a87-4d5c-9539-94c238d9063c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/a5de7013-d3a9-4755-ab65-866b26df681e?api-version=2021-01-01 response: body: - string: '{"id":"9ae922e7-0a87-4d5c-9539-94c238d9063c","name":"9ae922e7-0a87-4d5c-9539-94c238d9063c","status":"Succeeded","startTime":"2021-06-21T14:44:06.9963946Z","endTime":"2021-06-21T14:44:06.9963946Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"9ae922e7-0a87-4d5c-9539-94c238d9063c"}}' + string: '{"id":"a5de7013-d3a9-4755-ab65-866b26df681e","name":"a5de7013-d3a9-4755-ab65-866b26df681e","status":"Succeeded","startTime":"2021-06-28T09:44:48.2639643Z","endTime":"2021-06-28T09:44:48.2639643Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"a5de7013-d3a9-4755-ab65-866b26df681e"}}' headers: cache-control: - no-cache @@ -12510,7 +12618,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:44:07 GMT + - Mon, 28 Jun 2021 09:44:49 GMT expires: - '-1' pragma: @@ -12546,27 +12654,27 @@ interactions: ParameterSetName: - --vault-name -g --recovery-config User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/9ae922e7-0a87-4d5c-9539-94c238d9063c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/a5de7013-d3a9-4755-ab65-866b26df681e?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/9ae922e7-0a87-4d5c-9539-94c238d9063c","name":"9ae922e7-0a87-4d5c-9539-94c238d9063c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SAPHanaDatabase","duration":"PT1.34828S","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/a5de7013-d3a9-4755-ab65-866b26df681e","name":"a5de7013-d3a9-4755-ab65-866b26df681e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SAPHanaDatabase","duration":"PT1.7149982S","extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery to an alternate database"}},"isUserTriggered":true,"entityFriendlyName":"SYSTEMDB - [hxehost]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-06-21T14:44:06.9963946Z","activityId":"200d43cc-d29f-11eb-b22a-c8f750f92764"}}' + [hxehost]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-06-28T09:44:48.2639643Z","activityId":"744b29d0-d7f5-11eb-a6ce-00155d657312"}}' headers: cache-control: - no-cache content-length: - - '809' + - '811' content-type: - application/json date: - - Mon, 21 Jun 2021 14:44:07 GMT + - Mon, 28 Jun 2021 09:44:50 GMT expires: - '-1' pragma: @@ -12603,18 +12711,18 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/9ae922e7-0a87-4d5c-9539-94c238d9063c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/a5de7013-d3a9-4755-ab65-866b26df681e?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/9ae922e7-0a87-4d5c-9539-94c238d9063c","name":"9ae922e7-0a87-4d5c-9539-94c238d9063c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SAPHanaDatabase","duration":"PT3.2595817S","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/a5de7013-d3a9-4755-ab65-866b26df681e","name":"a5de7013-d3a9-4755-ab65-866b26df681e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SAPHanaDatabase","duration":"PT3.9725308S","extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery to an alternate database"}},"isUserTriggered":true,"entityFriendlyName":"SYSTEMDB - [hxehost]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-06-21T14:44:06.9963946Z","activityId":"200d43cc-d29f-11eb-b22a-c8f750f92764"}}' + [hxehost]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-06-28T09:44:48.2639643Z","activityId":"744b29d0-d7f5-11eb-a6ce-00155d657312"}}' headers: cache-control: - no-cache @@ -12623,7 +12731,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:44:09 GMT + - Mon, 28 Jun 2021 09:44:52 GMT expires: - '-1' pragma: @@ -12660,18 +12768,18 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/9ae922e7-0a87-4d5c-9539-94c238d9063c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/a5de7013-d3a9-4755-ab65-866b26df681e?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/9ae922e7-0a87-4d5c-9539-94c238d9063c","name":"9ae922e7-0a87-4d5c-9539-94c238d9063c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SAPHanaDatabase","duration":"PT3.7174646S","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/a5de7013-d3a9-4755-ab65-866b26df681e","name":"a5de7013-d3a9-4755-ab65-866b26df681e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SAPHanaDatabase","duration":"PT4.4390687S","extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery to an alternate database"}},"isUserTriggered":true,"entityFriendlyName":"SYSTEMDB - [hxehost]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-06-21T14:44:06.9963946Z","activityId":"200d43cc-d29f-11eb-b22a-c8f750f92764"}}' + [hxehost]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-06-28T09:44:48.2639643Z","activityId":"744b29d0-d7f5-11eb-a6ce-00155d657312"}}' headers: cache-control: - no-cache @@ -12680,7 +12788,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:44:10 GMT + - Mon, 28 Jun 2021 09:44:52 GMT expires: - '-1' pragma: @@ -12717,18 +12825,18 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/9ae922e7-0a87-4d5c-9539-94c238d9063c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/a5de7013-d3a9-4755-ab65-866b26df681e?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/9ae922e7-0a87-4d5c-9539-94c238d9063c","name":"9ae922e7-0a87-4d5c-9539-94c238d9063c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SAPHanaDatabase","duration":"PT34.1636971S","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/a5de7013-d3a9-4755-ab65-866b26df681e","name":"a5de7013-d3a9-4755-ab65-866b26df681e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SAPHanaDatabase","duration":"PT34.9646259S","extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery to an alternate database"}},"isUserTriggered":true,"entityFriendlyName":"SYSTEMDB - [hxehost]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-06-21T14:44:06.9963946Z","activityId":"200d43cc-d29f-11eb-b22a-c8f750f92764"}}' + [hxehost]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-06-28T09:44:48.2639643Z","activityId":"744b29d0-d7f5-11eb-a6ce-00155d657312"}}' headers: cache-control: - no-cache @@ -12737,7 +12845,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:44:40 GMT + - Mon, 28 Jun 2021 09:45:22 GMT expires: - '-1' pragma: @@ -12774,18 +12882,18 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/9ae922e7-0a87-4d5c-9539-94c238d9063c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/a5de7013-d3a9-4755-ab65-866b26df681e?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/9ae922e7-0a87-4d5c-9539-94c238d9063c","name":"9ae922e7-0a87-4d5c-9539-94c238d9063c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SAPHanaDatabase","duration":"PT1M4.6647675S","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/a5de7013-d3a9-4755-ab65-866b26df681e","name":"a5de7013-d3a9-4755-ab65-866b26df681e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SAPHanaDatabase","duration":"PT1M5.5205391S","extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery to an alternate database"}},"isUserTriggered":true,"entityFriendlyName":"SYSTEMDB - [hxehost]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-06-21T14:44:06.9963946Z","activityId":"200d43cc-d29f-11eb-b22a-c8f750f92764"}}' + [hxehost]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-06-28T09:44:48.2639643Z","activityId":"744b29d0-d7f5-11eb-a6ce-00155d657312"}}' headers: cache-control: - no-cache @@ -12794,7 +12902,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:45:11 GMT + - Mon, 28 Jun 2021 09:45:53 GMT expires: - '-1' pragma: @@ -12831,27 +12939,27 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/9ae922e7-0a87-4d5c-9539-94c238d9063c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/a5de7013-d3a9-4755-ab65-866b26df681e?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/9ae922e7-0a87-4d5c-9539-94c238d9063c","name":"9ae922e7-0a87-4d5c-9539-94c238d9063c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SAPHanaDatabase","duration":"PT1M35.299133S","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/a5de7013-d3a9-4755-ab65-866b26df681e","name":"a5de7013-d3a9-4755-ab65-866b26df681e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SAPHanaDatabase","duration":"PT1M35.9919088S","extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery to an alternate database"}},"isUserTriggered":true,"entityFriendlyName":"SYSTEMDB - [hxehost]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-06-21T14:44:06.9963946Z","activityId":"200d43cc-d29f-11eb-b22a-c8f750f92764"}}' + [hxehost]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-06-28T09:44:48.2639643Z","activityId":"744b29d0-d7f5-11eb-a6ce-00155d657312"}}' headers: cache-control: - no-cache content-length: - - '813' + - '814' content-type: - application/json date: - - Mon, 21 Jun 2021 14:45:41 GMT + - Mon, 28 Jun 2021 09:46:24 GMT expires: - '-1' pragma: @@ -12888,18 +12996,18 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/9ae922e7-0a87-4d5c-9539-94c238d9063c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/a5de7013-d3a9-4755-ab65-866b26df681e?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/9ae922e7-0a87-4d5c-9539-94c238d9063c","name":"9ae922e7-0a87-4d5c-9539-94c238d9063c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SAPHanaDatabase","duration":"PT2M5.7259635S","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/a5de7013-d3a9-4755-ab65-866b26df681e","name":"a5de7013-d3a9-4755-ab65-866b26df681e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SAPHanaDatabase","duration":"PT2M6.5254881S","extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery to an alternate database"}},"isUserTriggered":true,"entityFriendlyName":"SYSTEMDB - [hxehost]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-06-21T14:44:06.9963946Z","activityId":"200d43cc-d29f-11eb-b22a-c8f750f92764"}}' + [hxehost]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-06-28T09:44:48.2639643Z","activityId":"744b29d0-d7f5-11eb-a6ce-00155d657312"}}' headers: cache-control: - no-cache @@ -12908,7 +13016,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:46:12 GMT + - Mon, 28 Jun 2021 09:46:54 GMT expires: - '-1' pragma: @@ -12945,18 +13053,18 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/9ae922e7-0a87-4d5c-9539-94c238d9063c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/a5de7013-d3a9-4755-ab65-866b26df681e?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/9ae922e7-0a87-4d5c-9539-94c238d9063c","name":"9ae922e7-0a87-4d5c-9539-94c238d9063c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SAPHanaDatabase","duration":"PT2M36.2413482S","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/a5de7013-d3a9-4755-ab65-866b26df681e","name":"a5de7013-d3a9-4755-ab65-866b26df681e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SAPHanaDatabase","duration":"PT2M37.0184639S","extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery to an alternate database"}},"isUserTriggered":true,"entityFriendlyName":"SYSTEMDB - [hxehost]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-06-21T14:44:06.9963946Z","activityId":"200d43cc-d29f-11eb-b22a-c8f750f92764"}}' + [hxehost]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-06-28T09:44:48.2639643Z","activityId":"744b29d0-d7f5-11eb-a6ce-00155d657312"}}' headers: cache-control: - no-cache @@ -12965,7 +13073,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:46:42 GMT + - Mon, 28 Jun 2021 09:47:24 GMT expires: - '-1' pragma: @@ -13002,15 +13110,15 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/9ae922e7-0a87-4d5c-9539-94c238d9063c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/a5de7013-d3a9-4755-ab65-866b26df681e?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/9ae922e7-0a87-4d5c-9539-94c238d9063c","name":"9ae922e7-0a87-4d5c-9539-94c238d9063c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SAPHanaDatabase","duration":"PT3M2.7904768S","errorDetails":[{"errorCode":520512,"errorString":"The + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/a5de7013-d3a9-4755-ab65-866b26df681e","name":"a5de7013-d3a9-4755-ab65-866b26df681e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SAPHanaDatabase","duration":"PT3M3.1196554S","errorDetails":[{"errorCode":520512,"errorString":"The source and target systems for restore are incompatible.","errorTitle":"UserErrorIncompatibleSrcTargetSystemsForRestore","recommendations":["\r\n Ensure that your restore scenario is not one of the possible incompatible restores listed below:\r\n Case 1: SYSTEMDB cannot be renamed during restore.\r\n Case @@ -13022,7 +13130,7 @@ interactions: data from vault","status":"Failed"}],"propertyBag":{"Data Transferred (in MB)":"0","Job Type":"Recovery to an alternate database","RestoreDestination":"hxehost/HXE/H22"},"dynamicErrorMessage":"[HanaHelper]: Src and Target are incompatible containers SDC/SystemDB"},"isUserTriggered":true,"entityFriendlyName":"SYSTEMDB - [hxehost]","backupManagementType":"AzureWorkload","operation":"Restore (Invalid)","status":"Failed","startTime":"2021-06-21T14:44:06.9963946Z","endTime":"2021-06-21T14:47:09.7868714Z","activityId":"200d43cc-d29f-11eb-b22a-c8f750f92764"}}' + [hxehost]","backupManagementType":"AzureWorkload","operation":"Restore (Invalid)","status":"Failed","startTime":"2021-06-28T09:44:48.2639643Z","endTime":"2021-06-28T09:47:51.3836197Z","activityId":"744b29d0-d7f5-11eb-a6ce-00155d657312"}}' headers: cache-control: - no-cache @@ -13031,7 +13139,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:47:12 GMT + - Mon, 28 Jun 2021 09:47:55 GMT expires: - '-1' pragma: @@ -13068,8 +13176,8 @@ interactions: ParameterSetName: - --vault-name -g --restore-mode --item-name --container-name --rp-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET @@ -13084,16 +13192,16 @@ interactions: SYSTEMDB or tenant DB on the target.\r\n Case 3: Source - MDC and target - SDC: The source database (SYSTEMDB or tenant DB) cannot be restored to the target.\r\n For more information, refer to the note 1642148 in the SAP - support launchpad (launchpad.support.sap.com).\r\n "]}]}},"friendlyName":"systemdb","serverName":"hxehost","parentName":"HXE","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2021-06-21T14:42:23.3618424Z","protectedItemDataSourceId":"1649691440","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2021-06-21T14:39:35.398Z","recoveryPointCount":1,"policyState":"Consistent"},"protectedItemType":"AzureVmWorkloadSAPHanaDatabase","backupManagementType":"AzureWorkload","workloadType":"SAPHanaDatabase","containerName":"VMAppContainer;compute;akneema;akneema-hana-ccy","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.Compute/virtualMachines/akneema-hana-ccy","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupPolicies/hana-policy-ccy","lastRecoveryPoint":"2021-06-21T14:39:35.398Z","isArchiveEnabled":false}}' + support launchpad (launchpad.support.sap.com).\r\n "]}]}},"friendlyName":"systemdb","serverName":"hxehost","parentName":"HXE","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2021-06-28T09:42:26.6314624Z","protectedItemDataSourceId":"126764446","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2021-06-28T09:39:38.755Z","recoveryPointCount":1,"policyState":"Consistent"},"protectedItemType":"AzureVmWorkloadSAPHanaDatabase","backupManagementType":"AzureWorkload","workloadType":"SAPHanaDatabase","containerName":"VMAppContainer;compute;akneema;akneema-hana-ccy","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.Compute/virtualMachines/akneema-hana-ccy","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupPolicies/hana-policy-ccy","lastRecoveryPoint":"2021-06-28T09:39:38.755Z","isArchiveEnabled":false}}' headers: cache-control: - no-cache content-length: - - '2445' + - '2444' content-type: - application/json date: - - Mon, 21 Jun 2021 14:47:43 GMT + - Mon, 28 Jun 2021 09:48:26 GMT expires: - '-1' pragma: @@ -13109,7 +13217,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '149' x-powered-by: - ASP.NET status: @@ -13129,8 +13237,8 @@ interactions: ParameterSetName: - --vault-name -g --restore-mode --item-name --container-name --rp-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET @@ -13145,16 +13253,16 @@ interactions: SYSTEMDB or tenant DB on the target.\r\n Case 3: Source - MDC and target - SDC: The source database (SYSTEMDB or tenant DB) cannot be restored to the target.\r\n For more information, refer to the note 1642148 in the SAP - support launchpad (launchpad.support.sap.com).\r\n "]}]}},"friendlyName":"systemdb","serverName":"hxehost","parentName":"HXE","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2021-06-21T14:42:23.3618424Z","protectedItemDataSourceId":"1649691440","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2021-06-21T14:39:35.398Z","recoveryPointCount":1,"policyState":"Consistent"},"protectedItemType":"AzureVmWorkloadSAPHanaDatabase","backupManagementType":"AzureWorkload","workloadType":"SAPHanaDatabase","containerName":"VMAppContainer;compute;akneema;akneema-hana-ccy","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.Compute/virtualMachines/akneema-hana-ccy","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupPolicies/hana-policy-ccy","lastRecoveryPoint":"2021-06-21T14:39:35.398Z","isArchiveEnabled":false}}' + support launchpad (launchpad.support.sap.com).\r\n "]}]}},"friendlyName":"systemdb","serverName":"hxehost","parentName":"HXE","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2021-06-28T09:42:26.6314624Z","protectedItemDataSourceId":"126764446","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2021-06-28T09:39:38.755Z","recoveryPointCount":1,"policyState":"Consistent"},"protectedItemType":"AzureVmWorkloadSAPHanaDatabase","backupManagementType":"AzureWorkload","workloadType":"SAPHanaDatabase","containerName":"VMAppContainer;compute;akneema;akneema-hana-ccy","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.Compute/virtualMachines/akneema-hana-ccy","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupPolicies/hana-policy-ccy","lastRecoveryPoint":"2021-06-28T09:39:38.755Z","isArchiveEnabled":false}}' headers: cache-control: - no-cache content-length: - - '2445' + - '2444' content-type: - application/json date: - - Mon, 21 Jun 2021 14:47:44 GMT + - Mon, 28 Jun 2021 09:48:26 GMT expires: - '-1' pragma: @@ -13190,15 +13298,15 @@ interactions: ParameterSetName: - --vault-name -g --restore-mode --item-name --container-name --rp-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Bakneema%3Bakneema-hana-ccy/protectedItems/SAPHanaDatabase%3Bhxe%3Bsystemdb/recoveryPoints/45202642569475?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Bakneema%3Bakneema-hana-ccy/protectedItems/SAPHanaDatabase%3Bhxe%3Bsystemdb/recoveryPoints/38261866252733?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;akneema;akneema-hana-ccy/protectedItems/SAPHanaDatabase;hxe;systemdb/recoveryPoints/45202642569475","name":"45202642569475","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSAPHanaRecoveryPoint","recoveryPointTimeInUTC":"2021-06-21T14:39:35.398Z","type":"Full","recoveryPointTierDetails":[{"type":2,"status":1}],"recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":false,"additionalInfo":"We''re + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;akneema;akneema-hana-ccy/protectedItems/SAPHanaDatabase;hxe;systemdb/recoveryPoints/38261866252733","name":"38261866252733","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSAPHanaRecoveryPoint","recoveryPointTimeInUTC":"2021-06-28T09:39:38.755Z","type":"Full","recoveryPointTierDetails":[{"type":2,"status":1}],"recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":false,"additionalInfo":"We''re still determining if this Recovery Point can be moved.. Please check again after some time."}}}}' headers: @@ -13209,7 +13317,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:47:46 GMT + - Mon, 28 Jun 2021 09:48:28 GMT expires: - '-1' pragma: @@ -13232,8 +13340,7 @@ interactions: code: 200 message: OK - request: - body: '{"properties": {"objectType": "AzureWorkloadSAPHanaRestoreRequest", "recoveryType": - "OriginalLocation"}}' + body: null headers: Accept: - application/json @@ -13243,48 +13350,56 @@ interactions: - backup restore restore-azurewl Connection: - keep-alive - Content-Length: - - '104' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - --vault-name -g --recovery-config User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Bakneema%3Bakneema-hana-ccy/protectedItems/SAPHanaDatabase%3Bhxe%3Bsystemdb/recoveryPoints/45202642569475/restore?api-version=2021-01-01 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Bakneema%3Bakneema-hana-ccy/protectedItems/SAPHanaDatabase%3Bhxe%3Bsystemdb?api-version=2021-01-01 response: body: - string: '' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;akneema;akneema-hana-ccy/protectedItems/SAPHanaDatabase;hxe;systemdb","name":"SAPHanaDatabase;hxe;systemdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]},"RestoreOperationStatusKPI":{"resourceHealthStatus":"TransientDegraded","resourceHealthDetails":[{"code":520512,"title":"UserErrorIncompatibleSrcTargetSystemsForRestore","message":"The + source and target systems for restore are incompatible.","recommendations":["\r\n Ensure + that your restore scenario is not one of the possible incompatible restores + listed below:\r\n Case 1: SYSTEMDB cannot be renamed during restore.\r\n Case + 2: Source - SDC and target - MDC: The source database cannot be restored as + SYSTEMDB or tenant DB on the target.\r\n Case 3: Source - MDC and target + - SDC: The source database (SYSTEMDB or tenant DB) cannot be restored to the + target.\r\n For more information, refer to the note 1642148 in the SAP + support launchpad (launchpad.support.sap.com).\r\n "]}]}},"friendlyName":"systemdb","serverName":"hxehost","parentName":"HXE","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2021-06-28T09:42:26.6314624Z","protectedItemDataSourceId":"126764446","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2021-06-28T09:39:38.755Z","recoveryPointCount":1,"policyState":"Consistent"},"protectedItemType":"AzureVmWorkloadSAPHanaDatabase","backupManagementType":"AzureWorkload","workloadType":"SAPHanaDatabase","containerName":"VMAppContainer;compute;akneema;akneema-hana-ccy","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.Compute/virtualMachines/akneema-hana-ccy","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupPolicies/hana-policy-ccy","lastRecoveryPoint":"2021-06-28T09:39:38.755Z","isArchiveEnabled":false}}' headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;akneema;akneema-hana-ccy/protectedItems/SAPHanaDatabase;hxe;systemdb/operationsStatus/c82f16d5-2777-4607-893d-beb6c69bc7c8?api-version=2021-01-01 cache-control: - no-cache content-length: - - '0' + - '2444' + content-type: + - application/json date: - - Mon, 21 Jun 2021 14:47:47 GMT + - Mon, 28 Jun 2021 09:48:28 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;akneema;akneema-hana-ccy/protectedItems/SAPHanaDatabase;hxe;systemdb/operationResults/c82f16d5-2777-4607-893d-beb6c69bc7c8?api-version=2021-01-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '147' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -13299,24 +13414,26 @@ interactions: ParameterSetName: - --vault-name -g --recovery-config User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/c82f16d5-2777-4607-893d-beb6c69bc7c8?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Bakneema%3Bakneema-hana-ccy/protectedItems/SAPHanaDatabase%3Bhxe%3Bsystemdb/recoveryPoints/38261866252733?api-version=2021-01-01 response: body: - string: '{"id":"c82f16d5-2777-4607-893d-beb6c69bc7c8","name":"c82f16d5-2777-4607-893d-beb6c69bc7c8","status":"InProgress","startTime":"2021-06-21T14:47:47.7043451Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;akneema;akneema-hana-ccy/protectedItems/SAPHanaDatabase;hxe;systemdb/recoveryPoints/38261866252733","name":"38261866252733","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSAPHanaRecoveryPoint","recoveryPointTimeInUTC":"2021-06-28T09:39:38.755Z","type":"Full","recoveryPointTierDetails":[{"type":2,"status":1}],"recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":false,"additionalInfo":"We''re + still determining if this Recovery Point can be moved.. Please check again + after some time."}}}}' headers: cache-control: - no-cache content-length: - - '188' + - '811' content-type: - application/json date: - - Mon, 21 Jun 2021 14:47:48 GMT + - Mon, 28 Jun 2021 09:48:29 GMT expires: - '-1' pragma: @@ -13339,7 +13456,8 @@ interactions: code: 200 message: OK - request: - body: null + body: '{"properties": {"objectType": "AzureWorkloadSAPHanaRestoreRequest", "recoveryType": + "OriginalLocation"}}' headers: Accept: - application/json @@ -13349,48 +13467,48 @@ interactions: - backup restore restore-azurewl Connection: - keep-alive + Content-Length: + - '104' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - --vault-name -g --recovery-config User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/c82f16d5-2777-4607-893d-beb6c69bc7c8?api-version=2021-01-01 + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Bakneema%3Bakneema-hana-ccy/protectedItems/SAPHanaDatabase%3Bhxe%3Bsystemdb/recoveryPoints/38261866252733/restore?api-version=2021-01-01 response: body: - string: '{"id":"c82f16d5-2777-4607-893d-beb6c69bc7c8","name":"c82f16d5-2777-4607-893d-beb6c69bc7c8","status":"Succeeded","startTime":"2021-06-21T14:47:47.7043451Z","endTime":"2021-06-21T14:47:47.7043451Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"c82f16d5-2777-4607-893d-beb6c69bc7c8"}}' + string: '' headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;akneema;akneema-hana-ccy/protectedItems/SAPHanaDatabase;hxe;systemdb/operationsStatus/dfdf7d20-6f2c-43bc-921a-9d8ad5ef33fc?api-version=2021-01-01 cache-control: - no-cache content-length: - - '304' - content-type: - - application/json + - '0' date: - - Mon, 21 Jun 2021 14:47:49 GMT + - Mon, 28 Jun 2021 09:48:30 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;akneema;akneema-hana-ccy/protectedItems/SAPHanaDatabase;hxe;systemdb/operationResults/dfdf7d20-6f2c-43bc-921a-9d8ad5ef33fc?api-version=2021-01-01 pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + x-ms-ratelimit-remaining-subscription-writes: + - '1199' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -13405,34 +13523,30 @@ interactions: ParameterSetName: - --vault-name -g --recovery-config User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/c82f16d5-2777-4607-893d-beb6c69bc7c8?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/dfdf7d20-6f2c-43bc-921a-9d8ad5ef33fc?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/c82f16d5-2777-4607-893d-beb6c69bc7c8","name":"c82f16d5-2777-4607-893d-beb6c69bc7c8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SAPHanaDatabase","duration":"PT3.9536272S","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery - to the original database"}},"isUserTriggered":true,"entityFriendlyName":"SYSTEMDB - [hxehost]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-06-21T14:47:47.7043451Z","activityId":"a4b284ef-d29f-11eb-8eee-c8f750f92764"}}' + string: '{"id":"dfdf7d20-6f2c-43bc-921a-9d8ad5ef33fc","name":"dfdf7d20-6f2c-43bc-921a-9d8ad5ef33fc","status":"Succeeded","startTime":"2021-06-28T09:48:30.9781202Z","endTime":"2021-06-28T09:48:30.9781202Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"dfdf7d20-6f2c-43bc-921a-9d8ad5ef33fc"}}' headers: cache-control: - no-cache content-length: - - '811' + - '304' content-type: - application/json date: - - Mon, 21 Jun 2021 14:47:51 GMT + - Mon, 28 Jun 2021 09:48:33 GMT expires: - '-1' pragma: - no-cache server: - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -13456,33 +13570,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup restore restore-azurewl Connection: - keep-alive ParameterSetName: - - -v -g -n + - --vault-name -g --recovery-config User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/c82f16d5-2777-4607-893d-beb6c69bc7c8?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/dfdf7d20-6f2c-43bc-921a-9d8ad5ef33fc?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/c82f16d5-2777-4607-893d-beb6c69bc7c8","name":"c82f16d5-2777-4607-893d-beb6c69bc7c8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SAPHanaDatabase","duration":"PT4.4904854S","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery - to the original database"}},"isUserTriggered":true,"entityFriendlyName":"SYSTEMDB - [hxehost]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-06-21T14:47:47.7043451Z","activityId":"a4b284ef-d29f-11eb-8eee-c8f750f92764"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/dfdf7d20-6f2c-43bc-921a-9d8ad5ef33fc","name":"dfdf7d20-6f2c-43bc-921a-9d8ad5ef33fc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT2.3652179S","extendedInfo":{"tasksList":[],"propertyBag":{}},"isUserTriggered":true,"entityFriendlyName":"systemdb","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-06-28T09:48:31.4634226Z","activityId":"fd610ecc-d7f5-11eb-afe4-00155d657312"}}' headers: cache-control: - no-cache content-length: - - '811' + - '678' content-type: - application/json date: - - Mon, 21 Jun 2021 14:47:51 GMT + - Mon, 28 Jun 2021 09:48:33 GMT expires: - '-1' pragma: @@ -13499,7 +13610,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '138' x-powered-by: - ASP.NET status: @@ -13519,27 +13630,24 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/c82f16d5-2777-4607-893d-beb6c69bc7c8?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/dfdf7d20-6f2c-43bc-921a-9d8ad5ef33fc?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/c82f16d5-2777-4607-893d-beb6c69bc7c8","name":"c82f16d5-2777-4607-893d-beb6c69bc7c8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SAPHanaDatabase","duration":"PT5.0556245S","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery - to the original database"}},"isUserTriggered":true,"entityFriendlyName":"SYSTEMDB - [hxehost]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-06-21T14:47:47.7043451Z","activityId":"a4b284ef-d29f-11eb-8eee-c8f750f92764"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/dfdf7d20-6f2c-43bc-921a-9d8ad5ef33fc","name":"dfdf7d20-6f2c-43bc-921a-9d8ad5ef33fc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT3.0268273S","extendedInfo":{"tasksList":[],"propertyBag":{}},"isUserTriggered":true,"entityFriendlyName":"systemdb","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-06-28T09:48:31.4634226Z","activityId":"fd610ecc-d7f5-11eb-afe4-00155d657312"}}' headers: cache-control: - no-cache content-length: - - '811' + - '678' content-type: - application/json date: - - Mon, 21 Jun 2021 14:47:52 GMT + - Mon, 28 Jun 2021 09:48:34 GMT expires: - '-1' pragma: @@ -13556,7 +13664,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '149' x-powered-by: - ASP.NET status: @@ -13576,27 +13684,24 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/c82f16d5-2777-4607-893d-beb6c69bc7c8?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/dfdf7d20-6f2c-43bc-921a-9d8ad5ef33fc?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/c82f16d5-2777-4607-893d-beb6c69bc7c8","name":"c82f16d5-2777-4607-893d-beb6c69bc7c8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SAPHanaDatabase","duration":"PT35.5262415S","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery - to the original database"}},"isUserTriggered":true,"entityFriendlyName":"SYSTEMDB - [hxehost]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-06-21T14:47:47.7043451Z","activityId":"a4b284ef-d29f-11eb-8eee-c8f750f92764"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/dfdf7d20-6f2c-43bc-921a-9d8ad5ef33fc","name":"dfdf7d20-6f2c-43bc-921a-9d8ad5ef33fc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT3.5504158S","extendedInfo":{"tasksList":[],"propertyBag":{}},"isUserTriggered":true,"entityFriendlyName":"systemdb","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-06-28T09:48:31.4634226Z","activityId":"fd610ecc-d7f5-11eb-afe4-00155d657312"}}' headers: cache-control: - no-cache content-length: - - '812' + - '678' content-type: - application/json date: - - Mon, 21 Jun 2021 14:48:23 GMT + - Mon, 28 Jun 2021 09:48:34 GMT expires: - '-1' pragma: @@ -13613,7 +13718,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '148' x-powered-by: - ASP.NET status: @@ -13633,27 +13738,24 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/c82f16d5-2777-4607-893d-beb6c69bc7c8?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/dfdf7d20-6f2c-43bc-921a-9d8ad5ef33fc?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/c82f16d5-2777-4607-893d-beb6c69bc7c8","name":"c82f16d5-2777-4607-893d-beb6c69bc7c8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SAPHanaDatabase","duration":"PT1M6.0106835S","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery - to the original database"}},"isUserTriggered":true,"entityFriendlyName":"SYSTEMDB - [hxehost]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-06-21T14:47:47.7043451Z","activityId":"a4b284ef-d29f-11eb-8eee-c8f750f92764"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/dfdf7d20-6f2c-43bc-921a-9d8ad5ef33fc","name":"dfdf7d20-6f2c-43bc-921a-9d8ad5ef33fc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT34.0002944S","extendedInfo":{"tasksList":[],"propertyBag":{}},"isUserTriggered":true,"entityFriendlyName":"systemdb","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-06-28T09:48:31.4634226Z","activityId":"fd610ecc-d7f5-11eb-afe4-00155d657312"}}' headers: cache-control: - no-cache content-length: - - '813' + - '679' content-type: - application/json date: - - Mon, 21 Jun 2021 14:48:52 GMT + - Mon, 28 Jun 2021 09:49:05 GMT expires: - '-1' pragma: @@ -13670,7 +13772,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '147' x-powered-by: - ASP.NET status: @@ -13690,27 +13792,24 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/c82f16d5-2777-4607-893d-beb6c69bc7c8?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/dfdf7d20-6f2c-43bc-921a-9d8ad5ef33fc?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/c82f16d5-2777-4607-893d-beb6c69bc7c8","name":"c82f16d5-2777-4607-893d-beb6c69bc7c8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SAPHanaDatabase","duration":"PT1M36.4270402S","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery - to the original database"}},"isUserTriggered":true,"entityFriendlyName":"SYSTEMDB - [hxehost]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-06-21T14:47:47.7043451Z","activityId":"a4b284ef-d29f-11eb-8eee-c8f750f92764"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/dfdf7d20-6f2c-43bc-921a-9d8ad5ef33fc","name":"dfdf7d20-6f2c-43bc-921a-9d8ad5ef33fc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT1M4.4992701S","extendedInfo":{"tasksList":[],"propertyBag":{}},"isUserTriggered":true,"entityFriendlyName":"systemdb","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-06-28T09:48:31.4634226Z","activityId":"fd610ecc-d7f5-11eb-afe4-00155d657312"}}' headers: cache-control: - no-cache content-length: - - '814' + - '680' content-type: - application/json date: - - Mon, 21 Jun 2021 14:49:23 GMT + - Mon, 28 Jun 2021 09:49:35 GMT expires: - '-1' pragma: @@ -13727,7 +13826,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '146' x-powered-by: - ASP.NET status: @@ -13747,27 +13846,24 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/c82f16d5-2777-4607-893d-beb6c69bc7c8?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/dfdf7d20-6f2c-43bc-921a-9d8ad5ef33fc?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/c82f16d5-2777-4607-893d-beb6c69bc7c8","name":"c82f16d5-2777-4607-893d-beb6c69bc7c8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SAPHanaDatabase","duration":"PT2M6.898919S","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery - to the original database"}},"isUserTriggered":true,"entityFriendlyName":"SYSTEMDB - [hxehost]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-06-21T14:47:47.7043451Z","activityId":"a4b284ef-d29f-11eb-8eee-c8f750f92764"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/dfdf7d20-6f2c-43bc-921a-9d8ad5ef33fc","name":"dfdf7d20-6f2c-43bc-921a-9d8ad5ef33fc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT1M35.0287617S","extendedInfo":{"tasksList":[],"propertyBag":{}},"isUserTriggered":true,"entityFriendlyName":"systemdb","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-06-28T09:48:31.4634226Z","activityId":"fd610ecc-d7f5-11eb-afe4-00155d657312"}}' headers: cache-control: - no-cache content-length: - - '812' + - '681' content-type: - application/json date: - - Mon, 21 Jun 2021 14:49:54 GMT + - Mon, 28 Jun 2021 09:50:05 GMT expires: - '-1' pragma: @@ -13784,7 +13880,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' + - '145' x-powered-by: - ASP.NET status: @@ -13804,27 +13900,24 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/c82f16d5-2777-4607-893d-beb6c69bc7c8?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/dfdf7d20-6f2c-43bc-921a-9d8ad5ef33fc?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/c82f16d5-2777-4607-893d-beb6c69bc7c8","name":"c82f16d5-2777-4607-893d-beb6c69bc7c8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SAPHanaDatabase","duration":"PT2M37.3781853S","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery - to the original database"}},"isUserTriggered":true,"entityFriendlyName":"SYSTEMDB - [hxehost]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-06-21T14:47:47.7043451Z","activityId":"a4b284ef-d29f-11eb-8eee-c8f750f92764"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/dfdf7d20-6f2c-43bc-921a-9d8ad5ef33fc","name":"dfdf7d20-6f2c-43bc-921a-9d8ad5ef33fc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT2M5.5179489S","extendedInfo":{"tasksList":[],"propertyBag":{}},"isUserTriggered":true,"entityFriendlyName":"systemdb","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-06-28T09:48:31.4634226Z","activityId":"fd610ecc-d7f5-11eb-afe4-00155d657312"}}' headers: cache-control: - no-cache content-length: - - '814' + - '680' content-type: - application/json date: - - Mon, 21 Jun 2021 14:50:25 GMT + - Mon, 28 Jun 2021 09:50:36 GMT expires: - '-1' pragma: @@ -13841,7 +13934,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '141' + - '144' x-powered-by: - ASP.NET status: @@ -13861,27 +13954,24 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/c82f16d5-2777-4607-893d-beb6c69bc7c8?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/dfdf7d20-6f2c-43bc-921a-9d8ad5ef33fc?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/c82f16d5-2777-4607-893d-beb6c69bc7c8","name":"c82f16d5-2777-4607-893d-beb6c69bc7c8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SAPHanaDatabase","duration":"PT3M7.916211S","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery - to the original database"}},"isUserTriggered":true,"entityFriendlyName":"SYSTEMDB - [hxehost]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-06-21T14:47:47.7043451Z","activityId":"a4b284ef-d29f-11eb-8eee-c8f750f92764"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/dfdf7d20-6f2c-43bc-921a-9d8ad5ef33fc","name":"dfdf7d20-6f2c-43bc-921a-9d8ad5ef33fc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT2M35.9808223S","extendedInfo":{"tasksList":[],"propertyBag":{}},"isUserTriggered":true,"entityFriendlyName":"systemdb","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-06-28T09:48:31.4634226Z","activityId":"fd610ecc-d7f5-11eb-afe4-00155d657312"}}' headers: cache-control: - no-cache content-length: - - '812' + - '681' content-type: - application/json date: - - Mon, 21 Jun 2021 14:50:55 GMT + - Mon, 28 Jun 2021 09:51:07 GMT expires: - '-1' pragma: @@ -13898,7 +13988,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '140' + - '143' x-powered-by: - ASP.NET status: @@ -13918,27 +14008,24 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/c82f16d5-2777-4607-893d-beb6c69bc7c8?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/dfdf7d20-6f2c-43bc-921a-9d8ad5ef33fc?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/c82f16d5-2777-4607-893d-beb6c69bc7c8","name":"c82f16d5-2777-4607-893d-beb6c69bc7c8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SAPHanaDatabase","duration":"PT3M38.3752678S","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery - to the original database"}},"isUserTriggered":true,"entityFriendlyName":"SYSTEMDB - [hxehost]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-06-21T14:47:47.7043451Z","activityId":"a4b284ef-d29f-11eb-8eee-c8f750f92764"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/dfdf7d20-6f2c-43bc-921a-9d8ad5ef33fc","name":"dfdf7d20-6f2c-43bc-921a-9d8ad5ef33fc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT3M6.4483371S","extendedInfo":{"tasksList":[],"propertyBag":{}},"isUserTriggered":true,"entityFriendlyName":"systemdb","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-06-28T09:48:31.4634226Z","activityId":"fd610ecc-d7f5-11eb-afe4-00155d657312"}}' headers: cache-control: - no-cache content-length: - - '814' + - '680' content-type: - application/json date: - - Mon, 21 Jun 2021 14:51:26 GMT + - Mon, 28 Jun 2021 09:51:37 GMT expires: - '-1' pragma: @@ -13955,7 +14042,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '139' + - '142' x-powered-by: - ASP.NET status: @@ -13975,141 +14062,24 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/c82f16d5-2777-4607-893d-beb6c69bc7c8?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/dfdf7d20-6f2c-43bc-921a-9d8ad5ef33fc?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/c82f16d5-2777-4607-893d-beb6c69bc7c8","name":"c82f16d5-2777-4607-893d-beb6c69bc7c8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SAPHanaDatabase","duration":"PT4M8.7933935S","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery - to the original database"}},"isUserTriggered":true,"entityFriendlyName":"SYSTEMDB - [hxehost]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-06-21T14:47:47.7043451Z","activityId":"a4b284ef-d29f-11eb-8eee-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '813' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 14:51:56 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '138' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -v -g -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/c82f16d5-2777-4607-893d-beb6c69bc7c8?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/c82f16d5-2777-4607-893d-beb6c69bc7c8","name":"c82f16d5-2777-4607-893d-beb6c69bc7c8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SAPHanaDatabase","duration":"PT4M40.5966586S","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery - to the original database"}},"isUserTriggered":true,"entityFriendlyName":"SYSTEMDB - [hxehost]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-06-21T14:47:47.7043451Z","activityId":"a4b284ef-d29f-11eb-8eee-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '814' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 14:52:28 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '137' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -v -g -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/c82f16d5-2777-4607-893d-beb6c69bc7c8?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/c82f16d5-2777-4607-893d-beb6c69bc7c8","name":"c82f16d5-2777-4607-893d-beb6c69bc7c8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SAPHanaDatabase","duration":"PT5M11.1810802S","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery - to the original database"}},"isUserTriggered":true,"entityFriendlyName":"SYSTEMDB - [hxehost]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-06-21T14:47:47.7043451Z","activityId":"a4b284ef-d29f-11eb-8eee-c8f750f92764"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/dfdf7d20-6f2c-43bc-921a-9d8ad5ef33fc","name":"dfdf7d20-6f2c-43bc-921a-9d8ad5ef33fc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT3M36.9841707S","extendedInfo":{"tasksList":[],"propertyBag":{}},"isUserTriggered":true,"entityFriendlyName":"systemdb","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-06-28T09:48:31.4634226Z","activityId":"fd610ecc-d7f5-11eb-afe4-00155d657312"}}' headers: cache-control: - no-cache content-length: - - '814' + - '681' content-type: - application/json date: - - Mon, 21 Jun 2021 14:52:58 GMT + - Mon, 28 Jun 2021 09:52:08 GMT expires: - '-1' pragma: @@ -14126,7 +14096,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '136' + - '141' x-powered-by: - ASP.NET status: @@ -14146,27 +14116,24 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/c82f16d5-2777-4607-893d-beb6c69bc7c8?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/dfdf7d20-6f2c-43bc-921a-9d8ad5ef33fc?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/c82f16d5-2777-4607-893d-beb6c69bc7c8","name":"c82f16d5-2777-4607-893d-beb6c69bc7c8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SAPHanaDatabase","duration":"PT5M41.6643773S","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery - to the original database"}},"isUserTriggered":true,"entityFriendlyName":"SYSTEMDB - [hxehost]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-06-21T14:47:47.7043451Z","activityId":"a4b284ef-d29f-11eb-8eee-c8f750f92764"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/dfdf7d20-6f2c-43bc-921a-9d8ad5ef33fc","name":"dfdf7d20-6f2c-43bc-921a-9d8ad5ef33fc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT4M7.4199244S","extendedInfo":{"tasksList":[],"propertyBag":{}},"isUserTriggered":true,"entityFriendlyName":"systemdb","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-06-28T09:48:31.4634226Z","activityId":"fd610ecc-d7f5-11eb-afe4-00155d657312"}}' headers: cache-control: - no-cache content-length: - - '814' + - '680' content-type: - application/json date: - - Mon, 21 Jun 2021 14:53:29 GMT + - Mon, 28 Jun 2021 09:52:38 GMT expires: - '-1' pragma: @@ -14183,7 +14150,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '135' + - '140' x-powered-by: - ASP.NET status: @@ -14203,27 +14170,24 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/c82f16d5-2777-4607-893d-beb6c69bc7c8?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/dfdf7d20-6f2c-43bc-921a-9d8ad5ef33fc?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/c82f16d5-2777-4607-893d-beb6c69bc7c8","name":"c82f16d5-2777-4607-893d-beb6c69bc7c8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SAPHanaDatabase","duration":"PT6M12.2768843S","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery - to the original database"}},"isUserTriggered":true,"entityFriendlyName":"SYSTEMDB - [hxehost]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-06-21T14:47:47.7043451Z","activityId":"a4b284ef-d29f-11eb-8eee-c8f750f92764"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/dfdf7d20-6f2c-43bc-921a-9d8ad5ef33fc","name":"dfdf7d20-6f2c-43bc-921a-9d8ad5ef33fc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT4M37.8692949S","extendedInfo":{"tasksList":[],"propertyBag":{}},"isUserTriggered":true,"entityFriendlyName":"systemdb","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-06-28T09:48:31.4634226Z","activityId":"fd610ecc-d7f5-11eb-afe4-00155d657312"}}' headers: cache-control: - no-cache content-length: - - '814' + - '681' content-type: - application/json date: - - Mon, 21 Jun 2021 14:53:59 GMT + - Mon, 28 Jun 2021 09:53:08 GMT expires: - '-1' pragma: @@ -14240,7 +14204,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '134' + - '139' x-powered-by: - ASP.NET status: @@ -14260,27 +14224,24 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/c82f16d5-2777-4607-893d-beb6c69bc7c8?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/dfdf7d20-6f2c-43bc-921a-9d8ad5ef33fc?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/c82f16d5-2777-4607-893d-beb6c69bc7c8","name":"c82f16d5-2777-4607-893d-beb6c69bc7c8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SAPHanaDatabase","duration":"PT6M42.7561289S","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery - to the original database"}},"isUserTriggered":true,"entityFriendlyName":"SYSTEMDB - [hxehost]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-06-21T14:47:47.7043451Z","activityId":"a4b284ef-d29f-11eb-8eee-c8f750f92764"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/dfdf7d20-6f2c-43bc-921a-9d8ad5ef33fc","name":"dfdf7d20-6f2c-43bc-921a-9d8ad5ef33fc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT5M8.3407443S","extendedInfo":{"tasksList":[],"propertyBag":{}},"isUserTriggered":true,"entityFriendlyName":"systemdb","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-06-28T09:48:31.4634226Z","activityId":"fd610ecc-d7f5-11eb-afe4-00155d657312"}}' headers: cache-control: - no-cache content-length: - - '814' + - '680' content-type: - application/json date: - - Mon, 21 Jun 2021 14:54:30 GMT + - Mon, 28 Jun 2021 09:53:39 GMT expires: - '-1' pragma: @@ -14297,7 +14258,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '133' + - '138' x-powered-by: - ASP.NET status: @@ -14317,27 +14278,24 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/c82f16d5-2777-4607-893d-beb6c69bc7c8?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/dfdf7d20-6f2c-43bc-921a-9d8ad5ef33fc?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/c82f16d5-2777-4607-893d-beb6c69bc7c8","name":"c82f16d5-2777-4607-893d-beb6c69bc7c8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SAPHanaDatabase","duration":"PT7M13.1982868S","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery - to the original database"}},"isUserTriggered":true,"entityFriendlyName":"SYSTEMDB - [hxehost]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-06-21T14:47:47.7043451Z","activityId":"a4b284ef-d29f-11eb-8eee-c8f750f92764"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/dfdf7d20-6f2c-43bc-921a-9d8ad5ef33fc","name":"dfdf7d20-6f2c-43bc-921a-9d8ad5ef33fc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT5M38.7989239S","extendedInfo":{"tasksList":[],"propertyBag":{}},"isUserTriggered":true,"entityFriendlyName":"systemdb","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-06-28T09:48:31.4634226Z","activityId":"fd610ecc-d7f5-11eb-afe4-00155d657312"}}' headers: cache-control: - no-cache content-length: - - '814' + - '681' content-type: - application/json date: - - Mon, 21 Jun 2021 14:55:00 GMT + - Mon, 28 Jun 2021 09:54:09 GMT expires: - '-1' pragma: @@ -14354,7 +14312,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '132' + - '137' x-powered-by: - ASP.NET status: @@ -14374,28 +14332,28 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/c82f16d5-2777-4607-893d-beb6c69bc7c8?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/dfdf7d20-6f2c-43bc-921a-9d8ad5ef33fc?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/c82f16d5-2777-4607-893d-beb6c69bc7c8","name":"c82f16d5-2777-4607-893d-beb6c69bc7c8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SAPHanaDatabase","duration":"PT7M36.0024524S","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/dfdf7d20-6f2c-43bc-921a-9d8ad5ef33fc","name":"dfdf7d20-6f2c-43bc-921a-9d8ad5ef33fc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SAPHanaDatabase","duration":"PT6M3.7246002S","extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","status":"Completed"}],"propertyBag":{"Data Transferred (in - MB)":"1186.4766","Job Type":"Recovery to the original database","RestoreRecoveryPointTime":"2021-06-21 - 14:39:35Z","RestoreDestination":"hxehost/HXE/SYSTEMDB"}},"isUserTriggered":true,"entityFriendlyName":"SYSTEMDB - [hxehost]","backupManagementType":"AzureWorkload","operation":"Restore (Full)","status":"Completed","startTime":"2021-06-21T14:47:47.7043451Z","endTime":"2021-06-21T14:55:23.7067975Z","activityId":"a4b284ef-d29f-11eb-8eee-c8f750f92764"}}' + MB)":"1186.5234","Job Type":"Recovery to the original database","RestoreRecoveryPointTime":"2021-06-28 + 09:39:38Z","RestoreDestination":"hxehost/HXE/SYSTEMDB"}},"isUserTriggered":true,"entityFriendlyName":"SYSTEMDB + [hxehost]","backupManagementType":"AzureWorkload","operation":"Restore (Full)","status":"Completed","startTime":"2021-06-28T09:48:31.4634226Z","endTime":"2021-06-28T09:54:35.1880228Z","activityId":"fd610ecc-d7f5-11eb-afe4-00155d657312"}}' headers: cache-control: - no-cache content-length: - - '993' + - '992' content-type: - application/json date: - - Mon, 21 Jun 2021 14:55:31 GMT + - Mon, 28 Jun 2021 09:54:40 GMT expires: - '-1' pragma: @@ -14412,7 +14370,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '131' + - '136' x-powered-by: - ASP.NET status: @@ -14432,24 +14390,24 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/protectedItems/saphanadatabase%3Bhxe%3Bsystemdb?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;akneema;akneema-hana-ccy/protectedItems/SAPHanaDatabase;hxe;systemdb","name":"SAPHanaDatabase;hxe;systemdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]},"RestoreOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"systemdb","serverName":"hxehost","parentName":"HXE","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2021-06-21T14:42:23.3618424Z","protectedItemDataSourceId":"1649691440","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2021-06-21T14:39:35.398Z","recoveryPointCount":2,"policyState":"Consistent"},"protectedItemType":"AzureVmWorkloadSAPHanaDatabase","backupManagementType":"AzureWorkload","workloadType":"SAPHanaDatabase","containerName":"VMAppContainer;compute;akneema;akneema-hana-ccy","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.Compute/virtualMachines/akneema-hana-ccy","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupPolicies/hana-policy-ccy","lastRecoveryPoint":"2021-06-21T14:54:32.075Z","isArchiveEnabled":false}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;akneema;akneema-hana-ccy/protectedItems/SAPHanaDatabase;hxe;systemdb","name":"SAPHanaDatabase;hxe;systemdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]},"RestoreOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"systemdb","serverName":"hxehost","parentName":"HXE","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2021-06-28T09:42:26.6314624Z","protectedItemDataSourceId":"126764446","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2021-06-28T09:39:38.755Z","recoveryPointCount":1,"policyState":"Consistent"},"protectedItemType":"AzureVmWorkloadSAPHanaDatabase","backupManagementType":"AzureWorkload","workloadType":"SAPHanaDatabase","containerName":"VMAppContainer;compute;akneema;akneema-hana-ccy","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.Compute/virtualMachines/akneema-hana-ccy","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupPolicies/hana-policy-ccy","lastRecoveryPoint":"2021-06-28T09:39:38.755Z","isArchiveEnabled":false}}' headers: cache-control: - no-cache content-length: - - '1787' + - '1786' content-type: - application/json date: - - Mon, 21 Jun 2021 14:56:01 GMT + - Mon, 28 Jun 2021 09:55:11 GMT expires: - '-1' pragma: @@ -14465,7 +14423,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '148' x-powered-by: - ASP.NET status: @@ -14490,8 +14448,8 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: PUT @@ -14501,17 +14459,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;akneema;akneema-hana-ccy/protectedItems/SAPHanaDatabase;hxe;systemdb/operationsStatus/513c755d-ae0c-490d-883e-cb5750e0fc5c?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;akneema;akneema-hana-ccy/protectedItems/SAPHanaDatabase;hxe;systemdb/operationsStatus/fb5126b0-ea71-41f0-8cef-f3fc20a14bde?api-version=2021-01-01 cache-control: - no-cache content-length: - '0' date: - - Mon, 21 Jun 2021 14:56:03 GMT + - Mon, 28 Jun 2021 09:55:12 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;akneema;akneema-hana-ccy/protectedItems/SAPHanaDatabase;hxe;systemdb/operationResults/513c755d-ae0c-490d-883e-cb5750e0fc5c?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;akneema;akneema-hana-ccy/protectedItems/SAPHanaDatabase;hxe;systemdb/operationResults/fb5126b0-ea71-41f0-8cef-f3fc20a14bde?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -14519,7 +14477,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -14539,68 +14497,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/513c755d-ae0c-490d-883e-cb5750e0fc5c?api-version=2021-01-01 - response: - body: - string: '{"id":"513c755d-ae0c-490d-883e-cb5750e0fc5c","name":"513c755d-ae0c-490d-883e-cb5750e0fc5c","status":"InProgress","startTime":"2021-06-21T14:56:02.9464445Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Mon, 21 Jun 2021 14:56:03 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection disable - Connection: - - keep-alive - ParameterSetName: - - -v -g -c --backup-management-type --workload-type -i -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/513c755d-ae0c-490d-883e-cb5750e0fc5c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/fb5126b0-ea71-41f0-8cef-f3fc20a14bde?api-version=2021-01-01 response: body: - string: '{"id":"513c755d-ae0c-490d-883e-cb5750e0fc5c","name":"513c755d-ae0c-490d-883e-cb5750e0fc5c","status":"InProgress","startTime":"2021-06-21T14:56:02.9464445Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"fb5126b0-ea71-41f0-8cef-f3fc20a14bde","name":"fb5126b0-ea71-41f0-8cef-f3fc20a14bde","status":"InProgress","startTime":"2021-06-28T09:55:12.7012887Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14609,7 +14514,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:56:05 GMT + - Mon, 28 Jun 2021 09:55:14 GMT expires: - '-1' pragma: @@ -14625,7 +14530,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '147' x-powered-by: - ASP.NET status: @@ -14645,15 +14550,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/513c755d-ae0c-490d-883e-cb5750e0fc5c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/fb5126b0-ea71-41f0-8cef-f3fc20a14bde?api-version=2021-01-01 response: body: - string: '{"id":"513c755d-ae0c-490d-883e-cb5750e0fc5c","name":"513c755d-ae0c-490d-883e-cb5750e0fc5c","status":"InProgress","startTime":"2021-06-21T14:56:02.9464445Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"fb5126b0-ea71-41f0-8cef-f3fc20a14bde","name":"fb5126b0-ea71-41f0-8cef-f3fc20a14bde","status":"InProgress","startTime":"2021-06-28T09:55:12.7012887Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14662,7 +14567,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:56:06 GMT + - Mon, 28 Jun 2021 09:55:15 GMT expires: - '-1' pragma: @@ -14678,7 +14583,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '146' x-powered-by: - ASP.NET status: @@ -14698,15 +14603,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/513c755d-ae0c-490d-883e-cb5750e0fc5c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/fb5126b0-ea71-41f0-8cef-f3fc20a14bde?api-version=2021-01-01 response: body: - string: '{"id":"513c755d-ae0c-490d-883e-cb5750e0fc5c","name":"513c755d-ae0c-490d-883e-cb5750e0fc5c","status":"InProgress","startTime":"2021-06-21T14:56:02.9464445Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"fb5126b0-ea71-41f0-8cef-f3fc20a14bde","name":"fb5126b0-ea71-41f0-8cef-f3fc20a14bde","status":"InProgress","startTime":"2021-06-28T09:55:12.7012887Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14715,7 +14620,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:56:07 GMT + - Mon, 28 Jun 2021 09:55:17 GMT expires: - '-1' pragma: @@ -14731,7 +14636,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '145' x-powered-by: - ASP.NET status: @@ -14751,15 +14656,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/513c755d-ae0c-490d-883e-cb5750e0fc5c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/fb5126b0-ea71-41f0-8cef-f3fc20a14bde?api-version=2021-01-01 response: body: - string: '{"id":"513c755d-ae0c-490d-883e-cb5750e0fc5c","name":"513c755d-ae0c-490d-883e-cb5750e0fc5c","status":"InProgress","startTime":"2021-06-21T14:56:02.9464445Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"fb5126b0-ea71-41f0-8cef-f3fc20a14bde","name":"fb5126b0-ea71-41f0-8cef-f3fc20a14bde","status":"InProgress","startTime":"2021-06-28T09:55:12.7012887Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14768,7 +14673,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:56:09 GMT + - Mon, 28 Jun 2021 09:55:18 GMT expires: - '-1' pragma: @@ -14784,7 +14689,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '144' x-powered-by: - ASP.NET status: @@ -14804,15 +14709,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/513c755d-ae0c-490d-883e-cb5750e0fc5c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/fb5126b0-ea71-41f0-8cef-f3fc20a14bde?api-version=2021-01-01 response: body: - string: '{"id":"513c755d-ae0c-490d-883e-cb5750e0fc5c","name":"513c755d-ae0c-490d-883e-cb5750e0fc5c","status":"InProgress","startTime":"2021-06-21T14:56:02.9464445Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"fb5126b0-ea71-41f0-8cef-f3fc20a14bde","name":"fb5126b0-ea71-41f0-8cef-f3fc20a14bde","status":"InProgress","startTime":"2021-06-28T09:55:12.7012887Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14821,7 +14726,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:56:11 GMT + - Mon, 28 Jun 2021 09:55:20 GMT expires: - '-1' pragma: @@ -14837,7 +14742,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '143' x-powered-by: - ASP.NET status: @@ -14857,15 +14762,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/513c755d-ae0c-490d-883e-cb5750e0fc5c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/fb5126b0-ea71-41f0-8cef-f3fc20a14bde?api-version=2021-01-01 response: body: - string: '{"id":"513c755d-ae0c-490d-883e-cb5750e0fc5c","name":"513c755d-ae0c-490d-883e-cb5750e0fc5c","status":"InProgress","startTime":"2021-06-21T14:56:02.9464445Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"fb5126b0-ea71-41f0-8cef-f3fc20a14bde","name":"fb5126b0-ea71-41f0-8cef-f3fc20a14bde","status":"InProgress","startTime":"2021-06-28T09:55:12.7012887Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14874,7 +14779,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:56:12 GMT + - Mon, 28 Jun 2021 09:55:21 GMT expires: - '-1' pragma: @@ -14890,7 +14795,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '142' x-powered-by: - ASP.NET status: @@ -14910,15 +14815,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/513c755d-ae0c-490d-883e-cb5750e0fc5c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/fb5126b0-ea71-41f0-8cef-f3fc20a14bde?api-version=2021-01-01 response: body: - string: '{"id":"513c755d-ae0c-490d-883e-cb5750e0fc5c","name":"513c755d-ae0c-490d-883e-cb5750e0fc5c","status":"InProgress","startTime":"2021-06-21T14:56:02.9464445Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"fb5126b0-ea71-41f0-8cef-f3fc20a14bde","name":"fb5126b0-ea71-41f0-8cef-f3fc20a14bde","status":"InProgress","startTime":"2021-06-28T09:55:12.7012887Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14927,7 +14832,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:56:14 GMT + - Mon, 28 Jun 2021 09:55:22 GMT expires: - '-1' pragma: @@ -14943,7 +14848,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' + - '141' x-powered-by: - ASP.NET status: @@ -14963,15 +14868,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/513c755d-ae0c-490d-883e-cb5750e0fc5c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/fb5126b0-ea71-41f0-8cef-f3fc20a14bde?api-version=2021-01-01 response: body: - string: '{"id":"513c755d-ae0c-490d-883e-cb5750e0fc5c","name":"513c755d-ae0c-490d-883e-cb5750e0fc5c","status":"InProgress","startTime":"2021-06-21T14:56:02.9464445Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"fb5126b0-ea71-41f0-8cef-f3fc20a14bde","name":"fb5126b0-ea71-41f0-8cef-f3fc20a14bde","status":"InProgress","startTime":"2021-06-28T09:55:12.7012887Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -14980,7 +14885,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:56:15 GMT + - Mon, 28 Jun 2021 09:55:24 GMT expires: - '-1' pragma: @@ -14996,7 +14901,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '141' + - '140' x-powered-by: - ASP.NET status: @@ -15016,15 +14921,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/513c755d-ae0c-490d-883e-cb5750e0fc5c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/fb5126b0-ea71-41f0-8cef-f3fc20a14bde?api-version=2021-01-01 response: body: - string: '{"id":"513c755d-ae0c-490d-883e-cb5750e0fc5c","name":"513c755d-ae0c-490d-883e-cb5750e0fc5c","status":"InProgress","startTime":"2021-06-21T14:56:02.9464445Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"fb5126b0-ea71-41f0-8cef-f3fc20a14bde","name":"fb5126b0-ea71-41f0-8cef-f3fc20a14bde","status":"InProgress","startTime":"2021-06-28T09:55:12.7012887Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15033,7 +14938,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:56:17 GMT + - Mon, 28 Jun 2021 09:55:25 GMT expires: - '-1' pragma: @@ -15049,7 +14954,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '140' + - '139' x-powered-by: - ASP.NET status: @@ -15069,15 +14974,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/513c755d-ae0c-490d-883e-cb5750e0fc5c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/fb5126b0-ea71-41f0-8cef-f3fc20a14bde?api-version=2021-01-01 response: body: - string: '{"id":"513c755d-ae0c-490d-883e-cb5750e0fc5c","name":"513c755d-ae0c-490d-883e-cb5750e0fc5c","status":"InProgress","startTime":"2021-06-21T14:56:02.9464445Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"fb5126b0-ea71-41f0-8cef-f3fc20a14bde","name":"fb5126b0-ea71-41f0-8cef-f3fc20a14bde","status":"InProgress","startTime":"2021-06-28T09:55:12.7012887Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15086,7 +14991,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:56:18 GMT + - Mon, 28 Jun 2021 09:55:27 GMT expires: - '-1' pragma: @@ -15102,7 +15007,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '139' + - '138' x-powered-by: - ASP.NET status: @@ -15122,15 +15027,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/513c755d-ae0c-490d-883e-cb5750e0fc5c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/fb5126b0-ea71-41f0-8cef-f3fc20a14bde?api-version=2021-01-01 response: body: - string: '{"id":"513c755d-ae0c-490d-883e-cb5750e0fc5c","name":"513c755d-ae0c-490d-883e-cb5750e0fc5c","status":"InProgress","startTime":"2021-06-21T14:56:02.9464445Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"fb5126b0-ea71-41f0-8cef-f3fc20a14bde","name":"fb5126b0-ea71-41f0-8cef-f3fc20a14bde","status":"InProgress","startTime":"2021-06-28T09:55:12.7012887Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15139,7 +15044,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:56:20 GMT + - Mon, 28 Jun 2021 09:55:28 GMT expires: - '-1' pragma: @@ -15155,7 +15060,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '138' + - '137' x-powered-by: - ASP.NET status: @@ -15175,15 +15080,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/513c755d-ae0c-490d-883e-cb5750e0fc5c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/fb5126b0-ea71-41f0-8cef-f3fc20a14bde?api-version=2021-01-01 response: body: - string: '{"id":"513c755d-ae0c-490d-883e-cb5750e0fc5c","name":"513c755d-ae0c-490d-883e-cb5750e0fc5c","status":"InProgress","startTime":"2021-06-21T14:56:02.9464445Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"fb5126b0-ea71-41f0-8cef-f3fc20a14bde","name":"fb5126b0-ea71-41f0-8cef-f3fc20a14bde","status":"InProgress","startTime":"2021-06-28T09:55:12.7012887Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15192,7 +15097,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:56:21 GMT + - Mon, 28 Jun 2021 09:55:30 GMT expires: - '-1' pragma: @@ -15208,7 +15113,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '137' + - '136' x-powered-by: - ASP.NET status: @@ -15228,15 +15133,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/513c755d-ae0c-490d-883e-cb5750e0fc5c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/fb5126b0-ea71-41f0-8cef-f3fc20a14bde?api-version=2021-01-01 response: body: - string: '{"id":"513c755d-ae0c-490d-883e-cb5750e0fc5c","name":"513c755d-ae0c-490d-883e-cb5750e0fc5c","status":"InProgress","startTime":"2021-06-21T14:56:02.9464445Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"fb5126b0-ea71-41f0-8cef-f3fc20a14bde","name":"fb5126b0-ea71-41f0-8cef-f3fc20a14bde","status":"InProgress","startTime":"2021-06-28T09:55:12.7012887Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15245,7 +15150,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:56:23 GMT + - Mon, 28 Jun 2021 09:55:31 GMT expires: - '-1' pragma: @@ -15261,7 +15166,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '136' + - '135' x-powered-by: - ASP.NET status: @@ -15281,15 +15186,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/513c755d-ae0c-490d-883e-cb5750e0fc5c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/fb5126b0-ea71-41f0-8cef-f3fc20a14bde?api-version=2021-01-01 response: body: - string: '{"id":"513c755d-ae0c-490d-883e-cb5750e0fc5c","name":"513c755d-ae0c-490d-883e-cb5750e0fc5c","status":"InProgress","startTime":"2021-06-21T14:56:02.9464445Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"fb5126b0-ea71-41f0-8cef-f3fc20a14bde","name":"fb5126b0-ea71-41f0-8cef-f3fc20a14bde","status":"InProgress","startTime":"2021-06-28T09:55:12.7012887Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15298,7 +15203,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:56:24 GMT + - Mon, 28 Jun 2021 09:55:33 GMT expires: - '-1' pragma: @@ -15314,7 +15219,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '135' + - '134' x-powered-by: - ASP.NET status: @@ -15334,15 +15239,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/513c755d-ae0c-490d-883e-cb5750e0fc5c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/fb5126b0-ea71-41f0-8cef-f3fc20a14bde?api-version=2021-01-01 response: body: - string: '{"id":"513c755d-ae0c-490d-883e-cb5750e0fc5c","name":"513c755d-ae0c-490d-883e-cb5750e0fc5c","status":"InProgress","startTime":"2021-06-21T14:56:02.9464445Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"fb5126b0-ea71-41f0-8cef-f3fc20a14bde","name":"fb5126b0-ea71-41f0-8cef-f3fc20a14bde","status":"InProgress","startTime":"2021-06-28T09:55:12.7012887Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15351,7 +15256,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:56:25 GMT + - Mon, 28 Jun 2021 09:55:34 GMT expires: - '-1' pragma: @@ -15367,7 +15272,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '134' + - '133' x-powered-by: - ASP.NET status: @@ -15387,15 +15292,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/513c755d-ae0c-490d-883e-cb5750e0fc5c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/fb5126b0-ea71-41f0-8cef-f3fc20a14bde?api-version=2021-01-01 response: body: - string: '{"id":"513c755d-ae0c-490d-883e-cb5750e0fc5c","name":"513c755d-ae0c-490d-883e-cb5750e0fc5c","status":"InProgress","startTime":"2021-06-21T14:56:02.9464445Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"fb5126b0-ea71-41f0-8cef-f3fc20a14bde","name":"fb5126b0-ea71-41f0-8cef-f3fc20a14bde","status":"InProgress","startTime":"2021-06-28T09:55:12.7012887Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15404,7 +15309,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:56:27 GMT + - Mon, 28 Jun 2021 09:55:35 GMT expires: - '-1' pragma: @@ -15420,7 +15325,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '133' + - '132' x-powered-by: - ASP.NET status: @@ -15440,15 +15345,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/513c755d-ae0c-490d-883e-cb5750e0fc5c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/fb5126b0-ea71-41f0-8cef-f3fc20a14bde?api-version=2021-01-01 response: body: - string: '{"id":"513c755d-ae0c-490d-883e-cb5750e0fc5c","name":"513c755d-ae0c-490d-883e-cb5750e0fc5c","status":"InProgress","startTime":"2021-06-21T14:56:02.9464445Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"fb5126b0-ea71-41f0-8cef-f3fc20a14bde","name":"fb5126b0-ea71-41f0-8cef-f3fc20a14bde","status":"InProgress","startTime":"2021-06-28T09:55:12.7012887Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15457,7 +15362,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:56:29 GMT + - Mon, 28 Jun 2021 09:55:38 GMT expires: - '-1' pragma: @@ -15473,7 +15378,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '132' + - '131' x-powered-by: - ASP.NET status: @@ -15493,15 +15398,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/513c755d-ae0c-490d-883e-cb5750e0fc5c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/fb5126b0-ea71-41f0-8cef-f3fc20a14bde?api-version=2021-01-01 response: body: - string: '{"id":"513c755d-ae0c-490d-883e-cb5750e0fc5c","name":"513c755d-ae0c-490d-883e-cb5750e0fc5c","status":"InProgress","startTime":"2021-06-21T14:56:02.9464445Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"fb5126b0-ea71-41f0-8cef-f3fc20a14bde","name":"fb5126b0-ea71-41f0-8cef-f3fc20a14bde","status":"InProgress","startTime":"2021-06-28T09:55:12.7012887Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15510,7 +15415,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:56:31 GMT + - Mon, 28 Jun 2021 09:55:40 GMT expires: - '-1' pragma: @@ -15526,7 +15431,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '131' + - '130' x-powered-by: - ASP.NET status: @@ -15546,15 +15451,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/513c755d-ae0c-490d-883e-cb5750e0fc5c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/fb5126b0-ea71-41f0-8cef-f3fc20a14bde?api-version=2021-01-01 response: body: - string: '{"id":"513c755d-ae0c-490d-883e-cb5750e0fc5c","name":"513c755d-ae0c-490d-883e-cb5750e0fc5c","status":"InProgress","startTime":"2021-06-21T14:56:02.9464445Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"fb5126b0-ea71-41f0-8cef-f3fc20a14bde","name":"fb5126b0-ea71-41f0-8cef-f3fc20a14bde","status":"InProgress","startTime":"2021-06-28T09:55:12.7012887Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15563,7 +15468,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:56:32 GMT + - Mon, 28 Jun 2021 09:55:42 GMT expires: - '-1' pragma: @@ -15579,7 +15484,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '130' + - '129' x-powered-by: - ASP.NET status: @@ -15599,15 +15504,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/513c755d-ae0c-490d-883e-cb5750e0fc5c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/fb5126b0-ea71-41f0-8cef-f3fc20a14bde?api-version=2021-01-01 response: body: - string: '{"id":"513c755d-ae0c-490d-883e-cb5750e0fc5c","name":"513c755d-ae0c-490d-883e-cb5750e0fc5c","status":"InProgress","startTime":"2021-06-21T14:56:02.9464445Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"fb5126b0-ea71-41f0-8cef-f3fc20a14bde","name":"fb5126b0-ea71-41f0-8cef-f3fc20a14bde","status":"InProgress","startTime":"2021-06-28T09:55:12.7012887Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15616,7 +15521,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:56:34 GMT + - Mon, 28 Jun 2021 09:55:44 GMT expires: - '-1' pragma: @@ -15632,7 +15537,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '129' + - '128' x-powered-by: - ASP.NET status: @@ -15652,15 +15557,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/513c755d-ae0c-490d-883e-cb5750e0fc5c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/fb5126b0-ea71-41f0-8cef-f3fc20a14bde?api-version=2021-01-01 response: body: - string: '{"id":"513c755d-ae0c-490d-883e-cb5750e0fc5c","name":"513c755d-ae0c-490d-883e-cb5750e0fc5c","status":"Succeeded","startTime":"2021-06-21T14:56:02.9464445Z","endTime":"2021-06-21T14:56:02.9464445Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"ffc775fd-d625-41e7-bfab-5e2d3dd2281c"}}' + string: '{"id":"fb5126b0-ea71-41f0-8cef-f3fc20a14bde","name":"fb5126b0-ea71-41f0-8cef-f3fc20a14bde","status":"Succeeded","startTime":"2021-06-28T09:55:12.7012887Z","endTime":"2021-06-28T09:55:12.7012887Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"976bf53c-f4f9-4d24-9edd-1ad8fd941ea3"}}' headers: cache-control: - no-cache @@ -15669,7 +15574,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:56:35 GMT + - Mon, 28 Jun 2021 09:55:45 GMT expires: - '-1' pragma: @@ -15685,7 +15590,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '128' + - '127' x-powered-by: - ASP.NET status: @@ -15705,15 +15610,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/ffc775fd-d625-41e7-bfab-5e2d3dd2281c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/976bf53c-f4f9-4d24-9edd-1ad8fd941ea3?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/ffc775fd-d625-41e7-bfab-5e2d3dd2281c","name":"ffc775fd-d625-41e7-bfab-5e2d3dd2281c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT32.0922784S","extendedInfo":{"tasksList":[],"propertyBag":{}},"isUserTriggered":true,"entityFriendlyName":"systemdb","backupManagementType":"AzureWorkload","operation":"DisableBackup","status":"Completed","startTime":"2021-06-21T14:56:02.9464445Z","endTime":"2021-06-21T14:56:35.0387229Z","activityId":"cb5b6f1a-d2a0-11eb-a670-c8f750f92764"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/976bf53c-f4f9-4d24-9edd-1ad8fd941ea3","name":"976bf53c-f4f9-4d24-9edd-1ad8fd941ea3","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT32.3192162S","extendedInfo":{"tasksList":[],"propertyBag":{}},"isUserTriggered":true,"entityFriendlyName":"systemdb","backupManagementType":"AzureWorkload","operation":"DisableBackup","status":"Completed","startTime":"2021-06-28T09:55:12.7012887Z","endTime":"2021-06-28T09:55:45.0205049Z","activityId":"ed2c73ec-d7f6-11eb-b8c7-00155d657312"}}' headers: cache-control: - no-cache @@ -15722,7 +15627,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:56:37 GMT + - Mon, 28 Jun 2021 09:55:45 GMT expires: - '-1' pragma: @@ -15739,7 +15644,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '148' x-powered-by: - ASP.NET status: @@ -15759,24 +15664,24 @@ interactions: ParameterSetName: - -g -v -c -n --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/protectedItems/saphanadatabase%3Bhxe%3Bsystemdb?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;akneema;akneema-hana-ccy/protectedItems/SAPHanaDatabase;hxe;systemdb","name":"SAPHanaDatabase;hxe;systemdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]},"RestoreOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"systemdb","serverName":"hxehost","parentName":"HXE","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Healthy","protectionState":"ProtectionStopped","lastBackupStatus":"Healthy","lastBackupTime":"2021-06-21T14:42:23.3618424Z","protectedItemDataSourceId":"1649691440","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2021-06-21T14:39:35.398Z","recoveryPointCount":2,"policyState":"Consistent"},"protectedItemType":"AzureVmWorkloadSAPHanaDatabase","backupManagementType":"AzureWorkload","workloadType":"SAPHanaDatabase","containerName":"VMAppContainer;compute;akneema;akneema-hana-ccy","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.Compute/virtualMachines/akneema-hana-ccy","lastRecoveryPoint":"2021-06-21T14:54:32.075Z","isArchiveEnabled":false}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;akneema;akneema-hana-ccy/protectedItems/SAPHanaDatabase;hxe;systemdb","name":"SAPHanaDatabase;hxe;systemdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]},"RestoreOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"systemdb","serverName":"hxehost","parentName":"HXE","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Healthy","protectionState":"ProtectionStopped","lastBackupStatus":"Healthy","lastBackupTime":"2021-06-28T09:42:26.6314624Z","protectedItemDataSourceId":"126764446","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2021-06-28T09:39:38.755Z","recoveryPointCount":2,"policyState":"Consistent"},"protectedItemType":"AzureVmWorkloadSAPHanaDatabase","backupManagementType":"AzureWorkload","workloadType":"SAPHanaDatabase","containerName":"VMAppContainer;compute;akneema;akneema-hana-ccy","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.Compute/virtualMachines/akneema-hana-ccy","lastRecoveryPoint":"2021-06-28T09:53:14.394Z","isArchiveEnabled":false}}' headers: cache-control: - no-cache content-length: - - '1614' + - '1613' content-type: - application/json date: - - Mon, 21 Jun 2021 14:56:38 GMT + - Mon, 28 Jun 2021 09:55:46 GMT expires: - '-1' pragma: @@ -15792,7 +15697,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '147' x-powered-by: - ASP.NET status: @@ -15812,24 +15717,24 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/protectedItems/saphanadatabase%3Bhxe%3Bsystemdb?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;akneema;akneema-hana-ccy/protectedItems/SAPHanaDatabase;hxe;systemdb","name":"SAPHanaDatabase;hxe;systemdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]},"RestoreOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"systemdb","serverName":"hxehost","parentName":"HXE","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Healthy","protectionState":"ProtectionStopped","lastBackupStatus":"Healthy","lastBackupTime":"2021-06-21T14:42:23.3618424Z","protectedItemDataSourceId":"1649691440","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2021-06-21T14:39:35.398Z","recoveryPointCount":2,"policyState":"Consistent"},"protectedItemType":"AzureVmWorkloadSAPHanaDatabase","backupManagementType":"AzureWorkload","workloadType":"SAPHanaDatabase","containerName":"VMAppContainer;compute;akneema;akneema-hana-ccy","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.Compute/virtualMachines/akneema-hana-ccy","lastRecoveryPoint":"2021-06-21T14:54:32.075Z","isArchiveEnabled":false}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;akneema;akneema-hana-ccy/protectedItems/SAPHanaDatabase;hxe;systemdb","name":"SAPHanaDatabase;hxe;systemdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]},"RestoreOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"systemdb","serverName":"hxehost","parentName":"HXE","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Healthy","protectionState":"ProtectionStopped","lastBackupStatus":"Healthy","lastBackupTime":"2021-06-28T09:42:26.6314624Z","protectedItemDataSourceId":"126764446","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2021-06-28T09:39:38.755Z","recoveryPointCount":2,"policyState":"Consistent"},"protectedItemType":"AzureVmWorkloadSAPHanaDatabase","backupManagementType":"AzureWorkload","workloadType":"SAPHanaDatabase","containerName":"VMAppContainer;compute;akneema;akneema-hana-ccy","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.Compute/virtualMachines/akneema-hana-ccy","lastRecoveryPoint":"2021-06-28T09:53:14.394Z","isArchiveEnabled":false}}' headers: cache-control: - no-cache content-length: - - '1614' + - '1613' content-type: - application/json date: - - Mon, 21 Jun 2021 14:56:38 GMT + - Mon, 28 Jun 2021 09:55:47 GMT expires: - '-1' pragma: @@ -15845,7 +15750,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '149' x-powered-by: - ASP.NET status: @@ -15867,8 +15772,8 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: DELETE @@ -15878,17 +15783,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/2084d7ce-3459-4b20-93a7-81f4a36be84d?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/6f845a8b-2b7a-4879-9726-c0a1415ed11f?api-version=2021-01-01 cache-control: - no-cache content-length: - '0' date: - - Mon, 21 Jun 2021 14:56:39 GMT + - Mon, 28 Jun 2021 09:55:48 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperationResults/2084d7ce-3459-4b20-93a7-81f4a36be84d?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperationResults/6f845a8b-2b7a-4879-9726-c0a1415ed11f?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -15896,7 +15801,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14999' x-powered-by: - ASP.NET status: @@ -15916,24 +15821,24 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/2084d7ce-3459-4b20-93a7-81f4a36be84d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/6f845a8b-2b7a-4879-9726-c0a1415ed11f?api-version=2021-01-01 response: body: - string: '{"id":"2084d7ce-3459-4b20-93a7-81f4a36be84d","name":"2084d7ce-3459-4b20-93a7-81f4a36be84d","status":"InProgress","startTime":"2021-06-21T14:56:40.2403513Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"6f845a8b-2b7a-4879-9726-c0a1415ed11f","name":"6f845a8b-2b7a-4879-9726-c0a1415ed11f","status":"InProgress","startTime":"2021-06-28T09:55:48.706194Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 14:56:41 GMT + - Mon, 28 Jun 2021 09:55:49 GMT expires: - '-1' pragma: @@ -15949,7 +15854,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '99' + - '126' x-powered-by: - ASP.NET status: @@ -15969,24 +15874,24 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/2084d7ce-3459-4b20-93a7-81f4a36be84d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/6f845a8b-2b7a-4879-9726-c0a1415ed11f?api-version=2021-01-01 response: body: - string: '{"id":"2084d7ce-3459-4b20-93a7-81f4a36be84d","name":"2084d7ce-3459-4b20-93a7-81f4a36be84d","status":"InProgress","startTime":"2021-06-21T14:56:40.2403513Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"6f845a8b-2b7a-4879-9726-c0a1415ed11f","name":"6f845a8b-2b7a-4879-9726-c0a1415ed11f","status":"InProgress","startTime":"2021-06-28T09:55:48.706194Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 14:56:42 GMT + - Mon, 28 Jun 2021 09:55:50 GMT expires: - '-1' pragma: @@ -16002,7 +15907,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '98' + - '125' x-powered-by: - ASP.NET status: @@ -16022,24 +15927,24 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/2084d7ce-3459-4b20-93a7-81f4a36be84d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/6f845a8b-2b7a-4879-9726-c0a1415ed11f?api-version=2021-01-01 response: body: - string: '{"id":"2084d7ce-3459-4b20-93a7-81f4a36be84d","name":"2084d7ce-3459-4b20-93a7-81f4a36be84d","status":"InProgress","startTime":"2021-06-21T14:56:40.2403513Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"6f845a8b-2b7a-4879-9726-c0a1415ed11f","name":"6f845a8b-2b7a-4879-9726-c0a1415ed11f","status":"InProgress","startTime":"2021-06-28T09:55:48.706194Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 14:56:43 GMT + - Mon, 28 Jun 2021 09:55:52 GMT expires: - '-1' pragma: @@ -16055,7 +15960,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '97' + - '124' x-powered-by: - ASP.NET status: @@ -16075,24 +15980,24 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/2084d7ce-3459-4b20-93a7-81f4a36be84d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/6f845a8b-2b7a-4879-9726-c0a1415ed11f?api-version=2021-01-01 response: body: - string: '{"id":"2084d7ce-3459-4b20-93a7-81f4a36be84d","name":"2084d7ce-3459-4b20-93a7-81f4a36be84d","status":"InProgress","startTime":"2021-06-21T14:56:40.2403513Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"6f845a8b-2b7a-4879-9726-c0a1415ed11f","name":"6f845a8b-2b7a-4879-9726-c0a1415ed11f","status":"InProgress","startTime":"2021-06-28T09:55:48.706194Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 14:56:45 GMT + - Mon, 28 Jun 2021 09:55:53 GMT expires: - '-1' pragma: @@ -16108,7 +16013,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '96' + - '123' x-powered-by: - ASP.NET status: @@ -16128,24 +16033,24 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/2084d7ce-3459-4b20-93a7-81f4a36be84d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/6f845a8b-2b7a-4879-9726-c0a1415ed11f?api-version=2021-01-01 response: body: - string: '{"id":"2084d7ce-3459-4b20-93a7-81f4a36be84d","name":"2084d7ce-3459-4b20-93a7-81f4a36be84d","status":"InProgress","startTime":"2021-06-21T14:56:40.2403513Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"6f845a8b-2b7a-4879-9726-c0a1415ed11f","name":"6f845a8b-2b7a-4879-9726-c0a1415ed11f","status":"InProgress","startTime":"2021-06-28T09:55:48.706194Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 14:56:46 GMT + - Mon, 28 Jun 2021 09:55:55 GMT expires: - '-1' pragma: @@ -16161,7 +16066,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '95' + - '122' x-powered-by: - ASP.NET status: @@ -16181,24 +16086,24 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/2084d7ce-3459-4b20-93a7-81f4a36be84d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/6f845a8b-2b7a-4879-9726-c0a1415ed11f?api-version=2021-01-01 response: body: - string: '{"id":"2084d7ce-3459-4b20-93a7-81f4a36be84d","name":"2084d7ce-3459-4b20-93a7-81f4a36be84d","status":"InProgress","startTime":"2021-06-21T14:56:40.2403513Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"6f845a8b-2b7a-4879-9726-c0a1415ed11f","name":"6f845a8b-2b7a-4879-9726-c0a1415ed11f","status":"InProgress","startTime":"2021-06-28T09:55:48.706194Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 14:56:48 GMT + - Mon, 28 Jun 2021 09:55:56 GMT expires: - '-1' pragma: @@ -16214,7 +16119,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '94' + - '121' x-powered-by: - ASP.NET status: @@ -16234,24 +16139,24 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/2084d7ce-3459-4b20-93a7-81f4a36be84d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/6f845a8b-2b7a-4879-9726-c0a1415ed11f?api-version=2021-01-01 response: body: - string: '{"id":"2084d7ce-3459-4b20-93a7-81f4a36be84d","name":"2084d7ce-3459-4b20-93a7-81f4a36be84d","status":"InProgress","startTime":"2021-06-21T14:56:40.2403513Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"6f845a8b-2b7a-4879-9726-c0a1415ed11f","name":"6f845a8b-2b7a-4879-9726-c0a1415ed11f","status":"InProgress","startTime":"2021-06-28T09:55:48.706194Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 14:56:49 GMT + - Mon, 28 Jun 2021 09:55:58 GMT expires: - '-1' pragma: @@ -16267,7 +16172,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '93' + - '120' x-powered-by: - ASP.NET status: @@ -16287,24 +16192,24 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/2084d7ce-3459-4b20-93a7-81f4a36be84d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/6f845a8b-2b7a-4879-9726-c0a1415ed11f?api-version=2021-01-01 response: body: - string: '{"id":"2084d7ce-3459-4b20-93a7-81f4a36be84d","name":"2084d7ce-3459-4b20-93a7-81f4a36be84d","status":"InProgress","startTime":"2021-06-21T14:56:40.2403513Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"6f845a8b-2b7a-4879-9726-c0a1415ed11f","name":"6f845a8b-2b7a-4879-9726-c0a1415ed11f","status":"InProgress","startTime":"2021-06-28T09:55:48.706194Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 14:56:51 GMT + - Mon, 28 Jun 2021 09:55:59 GMT expires: - '-1' pragma: @@ -16320,7 +16225,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '92' + - '119' x-powered-by: - ASP.NET status: @@ -16340,24 +16245,24 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/2084d7ce-3459-4b20-93a7-81f4a36be84d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/6f845a8b-2b7a-4879-9726-c0a1415ed11f?api-version=2021-01-01 response: body: - string: '{"id":"2084d7ce-3459-4b20-93a7-81f4a36be84d","name":"2084d7ce-3459-4b20-93a7-81f4a36be84d","status":"InProgress","startTime":"2021-06-21T14:56:40.2403513Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"6f845a8b-2b7a-4879-9726-c0a1415ed11f","name":"6f845a8b-2b7a-4879-9726-c0a1415ed11f","status":"InProgress","startTime":"2021-06-28T09:55:48.706194Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 14:56:52 GMT + - Mon, 28 Jun 2021 09:56:01 GMT expires: - '-1' pragma: @@ -16373,7 +16278,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '91' + - '118' x-powered-by: - ASP.NET status: @@ -16393,24 +16298,24 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/2084d7ce-3459-4b20-93a7-81f4a36be84d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/6f845a8b-2b7a-4879-9726-c0a1415ed11f?api-version=2021-01-01 response: body: - string: '{"id":"2084d7ce-3459-4b20-93a7-81f4a36be84d","name":"2084d7ce-3459-4b20-93a7-81f4a36be84d","status":"InProgress","startTime":"2021-06-21T14:56:40.2403513Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"6f845a8b-2b7a-4879-9726-c0a1415ed11f","name":"6f845a8b-2b7a-4879-9726-c0a1415ed11f","status":"InProgress","startTime":"2021-06-28T09:55:48.706194Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 14:56:54 GMT + - Mon, 28 Jun 2021 09:56:02 GMT expires: - '-1' pragma: @@ -16426,7 +16331,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '90' + - '117' x-powered-by: - ASP.NET status: @@ -16446,24 +16351,24 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/2084d7ce-3459-4b20-93a7-81f4a36be84d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/6f845a8b-2b7a-4879-9726-c0a1415ed11f?api-version=2021-01-01 response: body: - string: '{"id":"2084d7ce-3459-4b20-93a7-81f4a36be84d","name":"2084d7ce-3459-4b20-93a7-81f4a36be84d","status":"InProgress","startTime":"2021-06-21T14:56:40.2403513Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"6f845a8b-2b7a-4879-9726-c0a1415ed11f","name":"6f845a8b-2b7a-4879-9726-c0a1415ed11f","status":"InProgress","startTime":"2021-06-28T09:55:48.706194Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 14:56:55 GMT + - Mon, 28 Jun 2021 09:56:04 GMT expires: - '-1' pragma: @@ -16479,7 +16384,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '89' + - '116' x-powered-by: - ASP.NET status: @@ -16499,24 +16404,24 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/2084d7ce-3459-4b20-93a7-81f4a36be84d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/6f845a8b-2b7a-4879-9726-c0a1415ed11f?api-version=2021-01-01 response: body: - string: '{"id":"2084d7ce-3459-4b20-93a7-81f4a36be84d","name":"2084d7ce-3459-4b20-93a7-81f4a36be84d","status":"InProgress","startTime":"2021-06-21T14:56:40.2403513Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"6f845a8b-2b7a-4879-9726-c0a1415ed11f","name":"6f845a8b-2b7a-4879-9726-c0a1415ed11f","status":"InProgress","startTime":"2021-06-28T09:55:48.706194Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 14:56:56 GMT + - Mon, 28 Jun 2021 09:56:05 GMT expires: - '-1' pragma: @@ -16532,7 +16437,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '88' + - '115' x-powered-by: - ASP.NET status: @@ -16552,24 +16457,24 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/2084d7ce-3459-4b20-93a7-81f4a36be84d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/6f845a8b-2b7a-4879-9726-c0a1415ed11f?api-version=2021-01-01 response: body: - string: '{"id":"2084d7ce-3459-4b20-93a7-81f4a36be84d","name":"2084d7ce-3459-4b20-93a7-81f4a36be84d","status":"InProgress","startTime":"2021-06-21T14:56:40.2403513Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"6f845a8b-2b7a-4879-9726-c0a1415ed11f","name":"6f845a8b-2b7a-4879-9726-c0a1415ed11f","status":"InProgress","startTime":"2021-06-28T09:55:48.706194Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 14:56:58 GMT + - Mon, 28 Jun 2021 09:56:06 GMT expires: - '-1' pragma: @@ -16585,7 +16490,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '87' + - '114' x-powered-by: - ASP.NET status: @@ -16605,24 +16510,24 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/2084d7ce-3459-4b20-93a7-81f4a36be84d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/6f845a8b-2b7a-4879-9726-c0a1415ed11f?api-version=2021-01-01 response: body: - string: '{"id":"2084d7ce-3459-4b20-93a7-81f4a36be84d","name":"2084d7ce-3459-4b20-93a7-81f4a36be84d","status":"InProgress","startTime":"2021-06-21T14:56:40.2403513Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"6f845a8b-2b7a-4879-9726-c0a1415ed11f","name":"6f845a8b-2b7a-4879-9726-c0a1415ed11f","status":"InProgress","startTime":"2021-06-28T09:55:48.706194Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 14:56:59 GMT + - Mon, 28 Jun 2021 09:56:08 GMT expires: - '-1' pragma: @@ -16638,7 +16543,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '86' + - '113' x-powered-by: - ASP.NET status: @@ -16658,24 +16563,24 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/2084d7ce-3459-4b20-93a7-81f4a36be84d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/6f845a8b-2b7a-4879-9726-c0a1415ed11f?api-version=2021-01-01 response: body: - string: '{"id":"2084d7ce-3459-4b20-93a7-81f4a36be84d","name":"2084d7ce-3459-4b20-93a7-81f4a36be84d","status":"InProgress","startTime":"2021-06-21T14:56:40.2403513Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"6f845a8b-2b7a-4879-9726-c0a1415ed11f","name":"6f845a8b-2b7a-4879-9726-c0a1415ed11f","status":"InProgress","startTime":"2021-06-28T09:55:48.706194Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 14:57:01 GMT + - Mon, 28 Jun 2021 09:56:09 GMT expires: - '-1' pragma: @@ -16691,7 +16596,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '85' + - '112' x-powered-by: - ASP.NET status: @@ -16711,24 +16616,289 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/2084d7ce-3459-4b20-93a7-81f4a36be84d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/6f845a8b-2b7a-4879-9726-c0a1415ed11f?api-version=2021-01-01 response: body: - string: '{"id":"2084d7ce-3459-4b20-93a7-81f4a36be84d","name":"2084d7ce-3459-4b20-93a7-81f4a36be84d","status":"InProgress","startTime":"2021-06-21T14:56:40.2403513Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"6f845a8b-2b7a-4879-9726-c0a1415ed11f","name":"6f845a8b-2b7a-4879-9726-c0a1415ed11f","status":"InProgress","startTime":"2021-06-28T09:55:48.706194Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' + content-type: + - application/json + date: + - Mon, 28 Jun 2021 09:56:11 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '111' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/6f845a8b-2b7a-4879-9726-c0a1415ed11f?api-version=2021-01-01 + response: + body: + string: '{"id":"6f845a8b-2b7a-4879-9726-c0a1415ed11f","name":"6f845a8b-2b7a-4879-9726-c0a1415ed11f","status":"InProgress","startTime":"2021-06-28T09:55:48.706194Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '187' + content-type: + - application/json + date: + - Mon, 28 Jun 2021 09:56:12 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '110' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/6f845a8b-2b7a-4879-9726-c0a1415ed11f?api-version=2021-01-01 + response: + body: + string: '{"id":"6f845a8b-2b7a-4879-9726-c0a1415ed11f","name":"6f845a8b-2b7a-4879-9726-c0a1415ed11f","status":"InProgress","startTime":"2021-06-28T09:55:48.706194Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '187' + content-type: + - application/json + date: + - Mon, 28 Jun 2021 09:56:14 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '109' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/6f845a8b-2b7a-4879-9726-c0a1415ed11f?api-version=2021-01-01 + response: + body: + string: '{"id":"6f845a8b-2b7a-4879-9726-c0a1415ed11f","name":"6f845a8b-2b7a-4879-9726-c0a1415ed11f","status":"InProgress","startTime":"2021-06-28T09:55:48.706194Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '187' + content-type: + - application/json + date: + - Mon, 28 Jun 2021 09:56:15 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '108' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/6f845a8b-2b7a-4879-9726-c0a1415ed11f?api-version=2021-01-01 + response: + body: + string: '{"id":"6f845a8b-2b7a-4879-9726-c0a1415ed11f","name":"6f845a8b-2b7a-4879-9726-c0a1415ed11f","status":"InProgress","startTime":"2021-06-28T09:55:48.706194Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '187' + content-type: + - application/json + date: + - Mon, 28 Jun 2021 09:56:17 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '107' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/6f845a8b-2b7a-4879-9726-c0a1415ed11f?api-version=2021-01-01 + response: + body: + string: '{"id":"6f845a8b-2b7a-4879-9726-c0a1415ed11f","name":"6f845a8b-2b7a-4879-9726-c0a1415ed11f","status":"InProgress","startTime":"2021-06-28T09:55:48.706194Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 14:57:02 GMT + - Mon, 28 Jun 2021 09:56:18 GMT expires: - '-1' pragma: @@ -16744,12 +16914,753 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '84' + - '106' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/6f845a8b-2b7a-4879-9726-c0a1415ed11f?api-version=2021-01-01 + response: + body: + string: '{"id":"6f845a8b-2b7a-4879-9726-c0a1415ed11f","name":"6f845a8b-2b7a-4879-9726-c0a1415ed11f","status":"InProgress","startTime":"2021-06-28T09:55:48.706194Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '187' + content-type: + - application/json + date: + - Mon, 28 Jun 2021 09:56:20 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '105' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/6f845a8b-2b7a-4879-9726-c0a1415ed11f?api-version=2021-01-01 + response: + body: + string: '{"id":"6f845a8b-2b7a-4879-9726-c0a1415ed11f","name":"6f845a8b-2b7a-4879-9726-c0a1415ed11f","status":"Succeeded","startTime":"2021-06-28T09:55:48.706194Z","endTime":"2021-06-28T09:55:48.706194Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"b803415d-20cb-461d-9edc-92a429c8a8ec"}}' + headers: + cache-control: + - no-cache + content-length: + - '302' + content-type: + - application/json + date: + - Mon, 28 Jun 2021 09:56:21 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '104' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/b803415d-20cb-461d-9edc-92a429c8a8ec?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/b803415d-20cb-461d-9edc-92a429c8a8ec","name":"b803415d-20cb-461d-9edc-92a429c8a8ec","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT32.0568646S","extendedInfo":{"tasksList":[],"propertyBag":{}},"isUserTriggered":true,"entityFriendlyName":"systemdb","backupManagementType":"AzureWorkload","operation":"DeleteBackupData","status":"Completed","startTime":"2021-06-28T09:55:48.706194Z","endTime":"2021-06-28T09:56:20.7630586Z","activityId":"02d62fca-d7f7-11eb-90b9-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '727' + content-type: + - application/json + date: + - Mon, 28 Jun 2021 09:56:21 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -v -g -c -y + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy?api-version=2021-01-01 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/operationsStatus/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '0' + date: + - Mon, 28 Jun 2021 09:56:23 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperationResults/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?fabricName=Azure?api-version=2021-01-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -c -y + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2021-01-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 28 Jun 2021 09:56:25 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2021-01-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -c -y + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2021-01-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 28 Jun 2021 09:56:26 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2021-01-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '148' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -c -y + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2021-01-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 28 Jun 2021 09:56:28 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2021-01-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '147' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -c -y + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2021-01-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 28 Jun 2021 09:56:29 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2021-01-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '146' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -c -y + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2021-01-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 28 Jun 2021 09:56:30 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2021-01-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '145' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -c -y + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2021-01-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 28 Jun 2021 09:56:32 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2021-01-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '144' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -c -y + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2021-01-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 28 Jun 2021 09:56:33 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2021-01-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '143' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -c -y + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2021-01-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 28 Jun 2021 09:56:35 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2021-01-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '142' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -c -y + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2021-01-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 28 Jun 2021 09:56:36 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2021-01-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '141' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -c -y + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2021-01-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 28 Jun 2021 09:56:38 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2021-01-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '140' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -16758,51 +17669,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup container unregister Connection: - keep-alive ParameterSetName: - - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + - -v -g -c -y User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/2084d7ce-3459-4b20-93a7-81f4a36be84d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2021-01-01 response: body: - string: '{"id":"2084d7ce-3459-4b20-93a7-81f4a36be84d","name":"2084d7ce-3459-4b20-93a7-81f4a36be84d","status":"InProgress","startTime":"2021-06-21T14:56:40.2403513Z","endTime":"0001-01-01T00:00:00"}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Mon, 21 Jun 2021 14:57:04 GMT + - Mon, 28 Jun 2021 09:56:39 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2021-01-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '83' + - '139' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -16811,51 +17722,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup container unregister Connection: - keep-alive ParameterSetName: - - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + - -v -g -c -y User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/2084d7ce-3459-4b20-93a7-81f4a36be84d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2021-01-01 response: body: - string: '{"id":"2084d7ce-3459-4b20-93a7-81f4a36be84d","name":"2084d7ce-3459-4b20-93a7-81f4a36be84d","status":"InProgress","startTime":"2021-06-21T14:56:40.2403513Z","endTime":"0001-01-01T00:00:00"}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Mon, 21 Jun 2021 14:57:05 GMT + - Mon, 28 Jun 2021 09:56:41 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2021-01-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '82' + - '138' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -16864,51 +17775,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup container unregister Connection: - keep-alive ParameterSetName: - - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + - -v -g -c -y User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/2084d7ce-3459-4b20-93a7-81f4a36be84d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2021-01-01 response: body: - string: '{"id":"2084d7ce-3459-4b20-93a7-81f4a36be84d","name":"2084d7ce-3459-4b20-93a7-81f4a36be84d","status":"InProgress","startTime":"2021-06-21T14:56:40.2403513Z","endTime":"0001-01-01T00:00:00"}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Mon, 21 Jun 2021 14:57:06 GMT + - Mon, 28 Jun 2021 09:56:42 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2021-01-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '81' + - '137' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -16917,51 +17828,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup container unregister Connection: - keep-alive ParameterSetName: - - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + - -v -g -c -y User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/2084d7ce-3459-4b20-93a7-81f4a36be84d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2021-01-01 response: body: - string: '{"id":"2084d7ce-3459-4b20-93a7-81f4a36be84d","name":"2084d7ce-3459-4b20-93a7-81f4a36be84d","status":"InProgress","startTime":"2021-06-21T14:56:40.2403513Z","endTime":"0001-01-01T00:00:00"}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Mon, 21 Jun 2021 14:57:08 GMT + - Mon, 28 Jun 2021 09:56:43 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2021-01-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '80' + - '136' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -16970,51 +17881,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup container unregister Connection: - keep-alive ParameterSetName: - - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + - -v -g -c -y User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/2084d7ce-3459-4b20-93a7-81f4a36be84d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2021-01-01 response: body: - string: '{"id":"2084d7ce-3459-4b20-93a7-81f4a36be84d","name":"2084d7ce-3459-4b20-93a7-81f4a36be84d","status":"InProgress","startTime":"2021-06-21T14:56:40.2403513Z","endTime":"0001-01-01T00:00:00"}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Mon, 21 Jun 2021 14:57:09 GMT + - Mon, 28 Jun 2021 09:56:45 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2021-01-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '79' + - '135' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -17023,51 +17934,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup container unregister Connection: - keep-alive ParameterSetName: - - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + - -v -g -c -y User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/2084d7ce-3459-4b20-93a7-81f4a36be84d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2021-01-01 response: body: - string: '{"id":"2084d7ce-3459-4b20-93a7-81f4a36be84d","name":"2084d7ce-3459-4b20-93a7-81f4a36be84d","status":"InProgress","startTime":"2021-06-21T14:56:40.2403513Z","endTime":"0001-01-01T00:00:00"}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Mon, 21 Jun 2021 14:57:11 GMT + - Mon, 28 Jun 2021 09:56:46 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2021-01-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '78' + - '134' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -17076,51 +17987,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup container unregister Connection: - keep-alive ParameterSetName: - - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + - -v -g -c -y User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/2084d7ce-3459-4b20-93a7-81f4a36be84d?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2021-01-01 response: body: - string: '{"id":"2084d7ce-3459-4b20-93a7-81f4a36be84d","name":"2084d7ce-3459-4b20-93a7-81f4a36be84d","status":"Succeeded","startTime":"2021-06-21T14:56:40.2403513Z","endTime":"2021-06-21T14:56:40.2403513Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"be5d695c-5373-4e03-9c4e-7b1c432446dd"}}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '304' + - '2' content-type: - application/json date: - - Mon, 21 Jun 2021 14:57:12 GMT + - Mon, 28 Jun 2021 09:56:48 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2021-01-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '77' + - '133' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -17129,52 +18040,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup container unregister Connection: - keep-alive ParameterSetName: - - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + - -v -g -c -y User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/be5d695c-5373-4e03-9c4e-7b1c432446dd?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/be5d695c-5373-4e03-9c4e-7b1c432446dd","name":"be5d695c-5373-4e03-9c4e-7b1c432446dd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT32.1161781S","extendedInfo":{"tasksList":[],"propertyBag":{}},"isUserTriggered":true,"entityFriendlyName":"systemdb","backupManagementType":"AzureWorkload","operation":"DeleteBackupData","status":"Completed","startTime":"2021-06-21T14:56:40.2403513Z","endTime":"2021-06-21T14:57:12.3565294Z","activityId":"e1a679bb-d2a0-11eb-ac4f-c8f750f92764"}}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '728' + - '2' content-type: - application/json date: - - Mon, 21 Jun 2021 14:57:15 GMT + - Mon, 28 Jun 2021 09:56:49 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2021-01-01 pragma: - no-cache server: - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '132' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -17186,41 +18096,43 @@ interactions: - backup container unregister Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - -v -g -c -y User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy?api-version=2021-01-01 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2021-01-01 response: body: - string: '' + string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/operationsStatus/310e96ae-2587-4b5d-8e34-77c71c89f64a?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '0' + - '2' + content-type: + - application/json date: - - Mon, 21 Jun 2021 14:57:17 GMT + - Mon, 28 Jun 2021 09:56:51 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperationResults/310e96ae-2587-4b5d-8e34-77c71c89f64a?fabricName=Azure?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2021-01-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '131' x-powered-by: - ASP.NET status: @@ -17240,18 +18152,18 @@ interactions: ParameterSetName: - -v -g -c -y User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/310e96ae-2587-4b5d-8e34-77c71c89f64a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/310e96ae-2587-4b5d-8e34-77c71c89f64a?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -17259,11 +18171,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:57:19 GMT + - Mon, 28 Jun 2021 09:56:52 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/310e96ae-2587-4b5d-8e34-77c71c89f64a?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2021-01-01 pragma: - no-cache server: @@ -17273,7 +18185,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '130' x-powered-by: - ASP.NET status: @@ -17293,18 +18205,18 @@ interactions: ParameterSetName: - -v -g -c -y User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/310e96ae-2587-4b5d-8e34-77c71c89f64a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/310e96ae-2587-4b5d-8e34-77c71c89f64a?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -17312,11 +18224,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:57:20 GMT + - Mon, 28 Jun 2021 09:56:54 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/310e96ae-2587-4b5d-8e34-77c71c89f64a?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2021-01-01 pragma: - no-cache server: @@ -17326,7 +18238,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '129' x-powered-by: - ASP.NET status: @@ -17346,18 +18258,18 @@ interactions: ParameterSetName: - -v -g -c -y User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/310e96ae-2587-4b5d-8e34-77c71c89f64a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/310e96ae-2587-4b5d-8e34-77c71c89f64a?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -17365,11 +18277,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:57:22 GMT + - Mon, 28 Jun 2021 09:56:55 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/310e96ae-2587-4b5d-8e34-77c71c89f64a?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2021-01-01 pragma: - no-cache server: @@ -17379,7 +18291,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '128' x-powered-by: - ASP.NET status: @@ -17399,18 +18311,18 @@ interactions: ParameterSetName: - -v -g -c -y User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/310e96ae-2587-4b5d-8e34-77c71c89f64a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/310e96ae-2587-4b5d-8e34-77c71c89f64a?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -17418,11 +18330,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:57:23 GMT + - Mon, 28 Jun 2021 09:56:56 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/310e96ae-2587-4b5d-8e34-77c71c89f64a?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2021-01-01 pragma: - no-cache server: @@ -17432,7 +18344,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '127' x-powered-by: - ASP.NET status: @@ -17452,18 +18364,18 @@ interactions: ParameterSetName: - -v -g -c -y User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/310e96ae-2587-4b5d-8e34-77c71c89f64a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/310e96ae-2587-4b5d-8e34-77c71c89f64a?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -17471,11 +18383,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:57:26 GMT + - Mon, 28 Jun 2021 09:56:58 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/310e96ae-2587-4b5d-8e34-77c71c89f64a?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2021-01-01 pragma: - no-cache server: @@ -17485,7 +18397,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '126' x-powered-by: - ASP.NET status: @@ -17505,18 +18417,18 @@ interactions: ParameterSetName: - -v -g -c -y User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/310e96ae-2587-4b5d-8e34-77c71c89f64a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/310e96ae-2587-4b5d-8e34-77c71c89f64a?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -17524,11 +18436,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:57:27 GMT + - Mon, 28 Jun 2021 09:56:59 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/310e96ae-2587-4b5d-8e34-77c71c89f64a?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2021-01-01 pragma: - no-cache server: @@ -17538,7 +18450,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '125' x-powered-by: - ASP.NET status: @@ -17558,18 +18470,18 @@ interactions: ParameterSetName: - -v -g -c -y User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/310e96ae-2587-4b5d-8e34-77c71c89f64a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/310e96ae-2587-4b5d-8e34-77c71c89f64a?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -17577,11 +18489,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:57:28 GMT + - Mon, 28 Jun 2021 09:57:01 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/310e96ae-2587-4b5d-8e34-77c71c89f64a?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2021-01-01 pragma: - no-cache server: @@ -17591,7 +18503,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '124' x-powered-by: - ASP.NET status: @@ -17611,18 +18523,18 @@ interactions: ParameterSetName: - -v -g -c -y User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/310e96ae-2587-4b5d-8e34-77c71c89f64a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/310e96ae-2587-4b5d-8e34-77c71c89f64a?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -17630,11 +18542,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:57:30 GMT + - Mon, 28 Jun 2021 09:57:02 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/310e96ae-2587-4b5d-8e34-77c71c89f64a?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2021-01-01 pragma: - no-cache server: @@ -17644,7 +18556,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' + - '123' x-powered-by: - ASP.NET status: @@ -17664,18 +18576,18 @@ interactions: ParameterSetName: - -v -g -c -y User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/310e96ae-2587-4b5d-8e34-77c71c89f64a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/310e96ae-2587-4b5d-8e34-77c71c89f64a?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -17683,11 +18595,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:57:31 GMT + - Mon, 28 Jun 2021 09:57:04 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/310e96ae-2587-4b5d-8e34-77c71c89f64a?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2021-01-01 pragma: - no-cache server: @@ -17697,7 +18609,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '141' + - '122' x-powered-by: - ASP.NET status: @@ -17717,18 +18629,18 @@ interactions: ParameterSetName: - -v -g -c -y User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/310e96ae-2587-4b5d-8e34-77c71c89f64a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/310e96ae-2587-4b5d-8e34-77c71c89f64a?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -17736,11 +18648,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:57:33 GMT + - Mon, 28 Jun 2021 09:57:05 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/310e96ae-2587-4b5d-8e34-77c71c89f64a?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2021-01-01 pragma: - no-cache server: @@ -17750,7 +18662,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '140' + - '121' x-powered-by: - ASP.NET status: @@ -17770,18 +18682,18 @@ interactions: ParameterSetName: - -v -g -c -y User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/310e96ae-2587-4b5d-8e34-77c71c89f64a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/310e96ae-2587-4b5d-8e34-77c71c89f64a?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -17789,11 +18701,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:57:34 GMT + - Mon, 28 Jun 2021 09:57:07 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/310e96ae-2587-4b5d-8e34-77c71c89f64a?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2021-01-01 pragma: - no-cache server: @@ -17803,7 +18715,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '139' + - '120' x-powered-by: - ASP.NET status: @@ -17823,18 +18735,18 @@ interactions: ParameterSetName: - -v -g -c -y User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/310e96ae-2587-4b5d-8e34-77c71c89f64a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/310e96ae-2587-4b5d-8e34-77c71c89f64a?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -17842,11 +18754,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:57:35 GMT + - Mon, 28 Jun 2021 09:57:08 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/310e96ae-2587-4b5d-8e34-77c71c89f64a?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2021-01-01 pragma: - no-cache server: @@ -17856,7 +18768,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '138' + - '119' x-powered-by: - ASP.NET status: @@ -17876,18 +18788,18 @@ interactions: ParameterSetName: - -v -g -c -y User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/310e96ae-2587-4b5d-8e34-77c71c89f64a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/310e96ae-2587-4b5d-8e34-77c71c89f64a?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -17895,11 +18807,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:57:37 GMT + - Mon, 28 Jun 2021 09:57:10 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/310e96ae-2587-4b5d-8e34-77c71c89f64a?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2021-01-01 pragma: - no-cache server: @@ -17909,7 +18821,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '137' + - '118' x-powered-by: - ASP.NET status: @@ -17929,18 +18841,18 @@ interactions: ParameterSetName: - -v -g -c -y User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/310e96ae-2587-4b5d-8e34-77c71c89f64a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/310e96ae-2587-4b5d-8e34-77c71c89f64a?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -17948,11 +18860,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:57:38 GMT + - Mon, 28 Jun 2021 09:57:11 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/310e96ae-2587-4b5d-8e34-77c71c89f64a?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2021-01-01 pragma: - no-cache server: @@ -17962,7 +18874,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '136' + - '117' x-powered-by: - ASP.NET status: @@ -17982,18 +18894,18 @@ interactions: ParameterSetName: - -v -g -c -y User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/310e96ae-2587-4b5d-8e34-77c71c89f64a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/310e96ae-2587-4b5d-8e34-77c71c89f64a?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -18001,11 +18913,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:57:40 GMT + - Mon, 28 Jun 2021 09:57:13 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/310e96ae-2587-4b5d-8e34-77c71c89f64a?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2021-01-01 pragma: - no-cache server: @@ -18015,7 +18927,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '135' + - '116' x-powered-by: - ASP.NET status: @@ -18035,18 +18947,18 @@ interactions: ParameterSetName: - -v -g -c -y User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/310e96ae-2587-4b5d-8e34-77c71c89f64a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/310e96ae-2587-4b5d-8e34-77c71c89f64a?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -18054,11 +18966,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:57:41 GMT + - Mon, 28 Jun 2021 09:57:14 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/310e96ae-2587-4b5d-8e34-77c71c89f64a?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2021-01-01 pragma: - no-cache server: @@ -18068,7 +18980,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '134' + - '115' x-powered-by: - ASP.NET status: @@ -18088,18 +19000,18 @@ interactions: ParameterSetName: - -v -g -c -y User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/310e96ae-2587-4b5d-8e34-77c71c89f64a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/310e96ae-2587-4b5d-8e34-77c71c89f64a?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -18107,11 +19019,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:57:43 GMT + - Mon, 28 Jun 2021 09:57:16 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/310e96ae-2587-4b5d-8e34-77c71c89f64a?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2021-01-01 pragma: - no-cache server: @@ -18121,7 +19033,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '133' + - '114' x-powered-by: - ASP.NET status: @@ -18141,18 +19053,18 @@ interactions: ParameterSetName: - -v -g -c -y User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/310e96ae-2587-4b5d-8e34-77c71c89f64a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/310e96ae-2587-4b5d-8e34-77c71c89f64a?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -18160,11 +19072,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:57:44 GMT + - Mon, 28 Jun 2021 09:57:17 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/310e96ae-2587-4b5d-8e34-77c71c89f64a?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2021-01-01 pragma: - no-cache server: @@ -18174,7 +19086,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '132' + - '113' x-powered-by: - ASP.NET status: @@ -18194,18 +19106,18 @@ interactions: ParameterSetName: - -v -g -c -y User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/310e96ae-2587-4b5d-8e34-77c71c89f64a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/310e96ae-2587-4b5d-8e34-77c71c89f64a?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -18213,11 +19125,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:57:45 GMT + - Mon, 28 Jun 2021 09:57:18 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/310e96ae-2587-4b5d-8e34-77c71c89f64a?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2021-01-01 pragma: - no-cache server: @@ -18227,7 +19139,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '131' + - '112' x-powered-by: - ASP.NET status: @@ -18247,18 +19159,18 @@ interactions: ParameterSetName: - -v -g -c -y User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/310e96ae-2587-4b5d-8e34-77c71c89f64a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/310e96ae-2587-4b5d-8e34-77c71c89f64a?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -18266,11 +19178,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:57:47 GMT + - Mon, 28 Jun 2021 09:57:20 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/310e96ae-2587-4b5d-8e34-77c71c89f64a?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2021-01-01 pragma: - no-cache server: @@ -18280,7 +19192,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '130' + - '111' x-powered-by: - ASP.NET status: @@ -18300,18 +19212,18 @@ interactions: ParameterSetName: - -v -g -c -y User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/310e96ae-2587-4b5d-8e34-77c71c89f64a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/310e96ae-2587-4b5d-8e34-77c71c89f64a?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -18319,11 +19231,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:57:48 GMT + - Mon, 28 Jun 2021 09:57:21 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/310e96ae-2587-4b5d-8e34-77c71c89f64a?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2021-01-01 pragma: - no-cache server: @@ -18333,7 +19245,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '129' + - '110' x-powered-by: - ASP.NET status: @@ -18353,18 +19265,18 @@ interactions: ParameterSetName: - -v -g -c -y User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/310e96ae-2587-4b5d-8e34-77c71c89f64a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/310e96ae-2587-4b5d-8e34-77c71c89f64a?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -18372,11 +19284,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:57:49 GMT + - Mon, 28 Jun 2021 09:57:23 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/310e96ae-2587-4b5d-8e34-77c71c89f64a?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2021-01-01 pragma: - no-cache server: @@ -18386,7 +19298,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '128' + - '109' x-powered-by: - ASP.NET status: @@ -18406,18 +19318,18 @@ interactions: ParameterSetName: - -v -g -c -y User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/310e96ae-2587-4b5d-8e34-77c71c89f64a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/310e96ae-2587-4b5d-8e34-77c71c89f64a?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -18425,11 +19337,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:57:51 GMT + - Mon, 28 Jun 2021 09:57:24 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/310e96ae-2587-4b5d-8e34-77c71c89f64a?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2021-01-01 pragma: - no-cache server: @@ -18439,7 +19351,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '127' + - '108' x-powered-by: - ASP.NET status: @@ -18459,18 +19371,18 @@ interactions: ParameterSetName: - -v -g -c -y User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/310e96ae-2587-4b5d-8e34-77c71c89f64a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/310e96ae-2587-4b5d-8e34-77c71c89f64a?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -18478,11 +19390,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:57:52 GMT + - Mon, 28 Jun 2021 09:57:26 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/310e96ae-2587-4b5d-8e34-77c71c89f64a?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2021-01-01 pragma: - no-cache server: @@ -18492,7 +19404,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '126' + - '107' x-powered-by: - ASP.NET status: @@ -18512,18 +19424,18 @@ interactions: ParameterSetName: - -v -g -c -y User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/310e96ae-2587-4b5d-8e34-77c71c89f64a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/310e96ae-2587-4b5d-8e34-77c71c89f64a?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -18531,11 +19443,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:57:54 GMT + - Mon, 28 Jun 2021 09:57:27 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/310e96ae-2587-4b5d-8e34-77c71c89f64a?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2021-01-01 pragma: - no-cache server: @@ -18545,7 +19457,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '125' + - '106' x-powered-by: - ASP.NET status: @@ -18565,18 +19477,18 @@ interactions: ParameterSetName: - -v -g -c -y User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/310e96ae-2587-4b5d-8e34-77c71c89f64a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/310e96ae-2587-4b5d-8e34-77c71c89f64a?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -18584,11 +19496,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:57:56 GMT + - Mon, 28 Jun 2021 09:57:29 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/310e96ae-2587-4b5d-8e34-77c71c89f64a?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2021-01-01 pragma: - no-cache server: @@ -18598,7 +19510,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '124' + - '105' x-powered-by: - ASP.NET status: @@ -18618,18 +19530,18 @@ interactions: ParameterSetName: - -v -g -c -y User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/310e96ae-2587-4b5d-8e34-77c71c89f64a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/310e96ae-2587-4b5d-8e34-77c71c89f64a?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -18637,11 +19549,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:57:57 GMT + - Mon, 28 Jun 2021 09:57:30 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/310e96ae-2587-4b5d-8e34-77c71c89f64a?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2021-01-01 pragma: - no-cache server: @@ -18651,7 +19563,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '123' + - '104' x-powered-by: - ASP.NET status: @@ -18671,18 +19583,18 @@ interactions: ParameterSetName: - -v -g -c -y User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/310e96ae-2587-4b5d-8e34-77c71c89f64a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/310e96ae-2587-4b5d-8e34-77c71c89f64a?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -18690,11 +19602,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:57:59 GMT + - Mon, 28 Jun 2021 09:57:32 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/310e96ae-2587-4b5d-8e34-77c71c89f64a?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2021-01-01 pragma: - no-cache server: @@ -18704,7 +19616,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '122' + - '103' x-powered-by: - ASP.NET status: @@ -18724,18 +19636,18 @@ interactions: ParameterSetName: - -v -g -c -y User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/310e96ae-2587-4b5d-8e34-77c71c89f64a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/310e96ae-2587-4b5d-8e34-77c71c89f64a?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -18743,11 +19655,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:58:00 GMT + - Mon, 28 Jun 2021 09:57:33 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/310e96ae-2587-4b5d-8e34-77c71c89f64a?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2021-01-01 pragma: - no-cache server: @@ -18757,7 +19669,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '121' + - '102' x-powered-by: - ASP.NET status: @@ -18777,18 +19689,18 @@ interactions: ParameterSetName: - -v -g -c -y User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/310e96ae-2587-4b5d-8e34-77c71c89f64a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/310e96ae-2587-4b5d-8e34-77c71c89f64a?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -18796,11 +19708,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:58:01 GMT + - Mon, 28 Jun 2021 09:57:34 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/310e96ae-2587-4b5d-8e34-77c71c89f64a?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2021-01-01 pragma: - no-cache server: @@ -18810,7 +19722,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '120' + - '101' x-powered-by: - ASP.NET status: @@ -18830,18 +19742,18 @@ interactions: ParameterSetName: - -v -g -c -y User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/310e96ae-2587-4b5d-8e34-77c71c89f64a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/310e96ae-2587-4b5d-8e34-77c71c89f64a?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -18849,11 +19761,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:58:03 GMT + - Mon, 28 Jun 2021 09:57:36 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/310e96ae-2587-4b5d-8e34-77c71c89f64a?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2021-01-01 pragma: - no-cache server: @@ -18863,7 +19775,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '119' + - '100' x-powered-by: - ASP.NET status: @@ -18883,18 +19795,18 @@ interactions: ParameterSetName: - -v -g -c -y User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/310e96ae-2587-4b5d-8e34-77c71c89f64a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/310e96ae-2587-4b5d-8e34-77c71c89f64a?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -18902,11 +19814,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:58:04 GMT + - Mon, 28 Jun 2021 09:57:37 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/310e96ae-2587-4b5d-8e34-77c71c89f64a?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2021-01-01 pragma: - no-cache server: @@ -18916,7 +19828,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '118' + - '99' x-powered-by: - ASP.NET status: @@ -18936,18 +19848,18 @@ interactions: ParameterSetName: - -v -g -c -y User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/310e96ae-2587-4b5d-8e34-77c71c89f64a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/310e96ae-2587-4b5d-8e34-77c71c89f64a?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -18955,11 +19867,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:58:06 GMT + - Mon, 28 Jun 2021 09:57:39 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/310e96ae-2587-4b5d-8e34-77c71c89f64a?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2021-01-01 pragma: - no-cache server: @@ -18969,7 +19881,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '117' + - '98' x-powered-by: - ASP.NET status: @@ -18989,18 +19901,18 @@ interactions: ParameterSetName: - -v -g -c -y User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/310e96ae-2587-4b5d-8e34-77c71c89f64a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/310e96ae-2587-4b5d-8e34-77c71c89f64a?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -19008,11 +19920,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:58:07 GMT + - Mon, 28 Jun 2021 09:57:40 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/310e96ae-2587-4b5d-8e34-77c71c89f64a?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2021-01-01 pragma: - no-cache server: @@ -19022,7 +19934,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '116' + - '97' x-powered-by: - ASP.NET status: @@ -19042,18 +19954,18 @@ interactions: ParameterSetName: - -v -g -c -y User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/310e96ae-2587-4b5d-8e34-77c71c89f64a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/310e96ae-2587-4b5d-8e34-77c71c89f64a?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -19061,11 +19973,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:58:08 GMT + - Mon, 28 Jun 2021 09:57:42 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/310e96ae-2587-4b5d-8e34-77c71c89f64a?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2021-01-01 pragma: - no-cache server: @@ -19075,7 +19987,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '115' + - '96' x-powered-by: - ASP.NET status: @@ -19095,18 +20007,18 @@ interactions: ParameterSetName: - -v -g -c -y User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/310e96ae-2587-4b5d-8e34-77c71c89f64a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/310e96ae-2587-4b5d-8e34-77c71c89f64a?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -19114,11 +20026,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:58:10 GMT + - Mon, 28 Jun 2021 09:57:43 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/310e96ae-2587-4b5d-8e34-77c71c89f64a?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2021-01-01 pragma: - no-cache server: @@ -19128,7 +20040,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '114' + - '95' x-powered-by: - ASP.NET status: @@ -19148,18 +20060,18 @@ interactions: ParameterSetName: - -v -g -c -y User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/310e96ae-2587-4b5d-8e34-77c71c89f64a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/310e96ae-2587-4b5d-8e34-77c71c89f64a?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -19167,11 +20079,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:58:11 GMT + - Mon, 28 Jun 2021 09:57:45 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/310e96ae-2587-4b5d-8e34-77c71c89f64a?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2021-01-01 pragma: - no-cache server: @@ -19181,7 +20093,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '113' + - '94' x-powered-by: - ASP.NET status: @@ -19201,18 +20113,18 @@ interactions: ParameterSetName: - -v -g -c -y User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/310e96ae-2587-4b5d-8e34-77c71c89f64a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2021-01-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/310e96ae-2587-4b5d-8e34-77c71c89f64a?api-version=2019-05-13-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -19220,11 +20132,11 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:58:13 GMT + - Mon, 28 Jun 2021 09:57:46 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/310e96ae-2587-4b5d-8e34-77c71c89f64a?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationResults/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2021-01-01 pragma: - no-cache server: @@ -19234,7 +20146,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '112' + - '93' x-powered-by: - ASP.NET status: @@ -19254,12 +20166,12 @@ interactions: ParameterSetName: - -v -g -c -y User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/310e96ae-2587-4b5d-8e34-77c71c89f64a?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/a364ca7d-3a18-43a7-b745-85dfb6d7bfc7?api-version=2021-01-01 response: body: string: '' @@ -19269,7 +20181,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Jun 2021 14:58:14 GMT + - Mon, 28 Jun 2021 09:57:47 GMT expires: - '-1' pragma: @@ -19279,7 +20191,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '111' + - '92' x-powered-by: - ASP.NET status: @@ -19299,8 +20211,8 @@ interactions: ParameterSetName: - -v -g --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET @@ -19337,7 +20249,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 14:58:16 GMT + - Mon, 28 Jun 2021 09:57:49 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_sql_archive.yaml b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_sql_archive.yaml new file mode 100644 index 00000000000..46d7801a325 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_sql_archive.yaml @@ -0,0 +1,23453 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup recoverypoint list + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Barchiveresourcegroup%3Barchsqlccyvm2/protectedItems/SQLDataBase%3Bmssqlserver%3Bmsdb?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;archiveresourcegroup;archsqlccyvm2/protectedItems/SQLDataBase;mssqlserver;msdb","name":"SQLDataBase;mssqlserver;msdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"RestoreOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]},"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"msdb","serverName":"archsqlccyvm2","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2021-06-21T15:02:32.0930431Z","protectedItemDataSourceId":"17593935020011","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2021-05-16T15:02:28Z","recoveryPointCount":13,"policyState":"Inconsistent","recoveryModel":"SIMPLE"},"protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;archiveresourcegroup;archsqlccyvm2","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/archiveresourcegroup/providers/Microsoft.Compute/virtualMachines/archsqlccyvm2","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupPolicies/sql7day","lastRecoveryPoint":"2021-06-21T15:01:52Z","isArchiveEnabled":false}}' + headers: + cache-control: + - no-cache + content-length: + - '1857' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 06:30:24 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '148' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup recoverypoint list + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Barchiveresourcegroup%3Barchsqlccyvm2/protectedItems/SQLDataBase%3Bmssqlserver%3Bmsdb/recoveryPoints?api-version=2021-01-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;archiveresourcegroup;archsqlccyvm2/protectedItems/SQLDataBase;mssqlserver;msdb/recoveryPoints/113028097037696","name":"113028097037696","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2021-06-21T15:01:52Z","type":"Full","recoveryPointTierDetails":[{"type":2,"status":1}],"recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":false,"additionalInfo":"Recovery-Point + having active dependencies for restore is not eligible for Archive Move. "}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;archiveresourcegroup;archsqlccyvm2/protectedItems/SQLDataBase;mssqlserver;msdb/recoveryPoints/107688244086371","name":"107688244086371","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2021-06-20T15:01:52Z","type":"Full","recoveryPointTierDetails":[{"type":2,"status":1}],"recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":true,"additionalInfo":""}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;archiveresourcegroup;archsqlccyvm2/protectedItems/SQLDataBase;mssqlserver;msdb/recoveryPoints/106528682398779","name":"106528682398779","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2021-06-19T15:02:38Z","type":"Full","recoveryPointTierDetails":[{"type":3,"status":1}],"recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":false,"additionalInfo":"Recovery-Point + is not eligible for archive move as it has already been moved to archive tier. + "}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;archiveresourcegroup;archsqlccyvm2/protectedItems/SQLDataBase;mssqlserver;msdb/recoveryPoints/110058443760392","name":"110058443760392","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2021-06-18T15:02:40Z","type":"Full","recoveryPointTierDetails":[{"type":3,"status":1}],"recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":false,"additionalInfo":"Recovery-Point + is not eligible for archive move as it has already been moved to archive tier. + "}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;archiveresourcegroup;archsqlccyvm2/protectedItems/SQLDataBase;mssqlserver;msdb/recoveryPoints/121092026883482","name":"121092026883482","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2021-06-17T15:01:55Z","type":"Full","recoveryPointTierDetails":[{"type":3,"status":4,"extendedInfo":{"RehydratedRPExpiryTime":"2021-07-06T14:58:52.6325184Z"}}],"recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":false,"additionalInfo":"Recovery-Point + is not eligible for archive move as it has already been moved to archive tier. + "}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;archiveresourcegroup;archsqlccyvm2/protectedItems/SQLDataBase;mssqlserver;msdb/recoveryPoints/119927206096474","name":"119927206096474","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2021-06-16T15:01:58Z","type":"Full","recoveryPointTierDetails":[{"type":3,"status":4,"extendedInfo":{"RehydratedRPExpiryTime":"2021-07-06T11:55:17.5615738Z"}}],"recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":false,"additionalInfo":"Recovery-Point + is not eligible for archive move as it has already been moved to archive tier. + "}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;archiveresourcegroup;archsqlccyvm2/protectedItems/SQLDataBase;mssqlserver;msdb/recoveryPoints/114931020798392","name":"114931020798392","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2021-06-15T15:01:55Z","type":"Full","recoveryPointTierDetails":[{"type":2,"status":1}],"recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":true,"additionalInfo":""}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;archiveresourcegroup;archsqlccyvm2/protectedItems/SQLDataBase;mssqlserver;msdb/recoveryPoints/122908806868763","name":"122908806868763","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2021-06-13T15:02:39Z","type":"Full","recoveryPointTierDetails":[{"type":3,"status":1}],"recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":false,"additionalInfo":"Recovery-Point + is not eligible for archive move as it has already been moved to archive tier. + "}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;archiveresourcegroup;archsqlccyvm2/protectedItems/SQLDataBase;mssqlserver;msdb/recoveryPoints/118894569617991","name":"118894569617991","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2021-06-09T15:02:48Z","type":"Full","recoveryPointTierDetails":[{"type":3,"status":4,"extendedInfo":{"RehydratedRPExpiryTime":"2021-06-30T12:20:47.5386756Z"}}],"recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":false,"additionalInfo":"Recovery-Point + is not eligible for archive move as it has already been moved to archive tier. + "}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;archiveresourcegroup;archsqlccyvm2/protectedItems/SQLDataBase;mssqlserver;msdb/recoveryPoints/111630170706000","name":"111630170706000","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2021-06-06T15:02:52Z","type":"Full","recoveryPointTierDetails":[{"type":3,"status":1}],"recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":false,"additionalInfo":"Recovery-Point + is not eligible for archive move as it has already been moved to archive tier. + "}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;archiveresourcegroup;archsqlccyvm2/protectedItems/SQLDataBase;mssqlserver;msdb/recoveryPoints/120978448161550","name":"120978448161550","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2021-05-30T15:02:30Z","type":"Full","recoveryPointTierDetails":[{"type":3,"status":4,"extendedInfo":{"RehydratedRPExpiryTime":"2021-07-05T16:03:55.1407578Z"}}],"recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":false,"additionalInfo":"Recovery-Point + is not eligible for archive move as it has already been moved to archive tier. + "}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;archiveresourcegroup;archsqlccyvm2/protectedItems/SQLDataBase;mssqlserver;msdb/recoveryPoints/110281635160638","name":"110281635160638","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2021-05-23T15:01:56Z","type":"Full","recoveryPointTierDetails":[{"type":3,"status":1}],"recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":false,"additionalInfo":"Recovery-Point + is not eligible for archive move as it has already been moved to archive tier. + "}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;archiveresourcegroup;archsqlccyvm2/protectedItems/SQLDataBase;mssqlserver;msdb/recoveryPoints/119009025353023","name":"119009025353023","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2021-05-16T15:02:28Z","type":"Full","recoveryPointTierDetails":[{"type":3,"status":4,"extendedInfo":{"RehydratedRPExpiryTime":"2021-07-01T20:43:05.7038435Z"}}],"recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":false,"additionalInfo":"Recovery-Point + is not eligible for archive move as it has already been moved to archive tier. + "}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;archiveresourcegroup;archsqlccyvm2/protectedItems/SQLDataBase;mssqlserver;msdb/recoveryPoints/DefaultRangeRecoveryPoint","name":"DefaultRangeRecoveryPoint","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLPointInTimeRecoveryPoint","timeRanges":[],"type":"Log"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '11490' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 06:30:26 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' + x-powered-by: + - ASP.NET + 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 -i -c --backup-management-type --is-ready-for-move --target-tier --query + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Barchiveresourcegroup%3Barchsqlccyvm2/protectedItems/SQLDataBase%3Bmssqlserver%3Bmsdb?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;archiveresourcegroup;archsqlccyvm2/protectedItems/SQLDataBase;mssqlserver;msdb","name":"SQLDataBase;mssqlserver;msdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"RestoreOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]},"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"msdb","serverName":"archsqlccyvm2","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2021-06-21T15:02:32.0930431Z","protectedItemDataSourceId":"17593935020011","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2021-05-16T15:02:28Z","recoveryPointCount":13,"policyState":"Inconsistent","recoveryModel":"SIMPLE"},"protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;archiveresourcegroup;archsqlccyvm2","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/archiveresourcegroup/providers/Microsoft.Compute/virtualMachines/archsqlccyvm2","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupPolicies/sql7day","lastRecoveryPoint":"2021-06-21T15:01:52Z","isArchiveEnabled":false}}' + headers: + cache-control: + - no-cache + content-length: + - '1857' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 06:30:27 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '148' + x-powered-by: + - ASP.NET + 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 -i -c --backup-management-type --is-ready-for-move --target-tier --query + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Barchiveresourcegroup%3Barchsqlccyvm2/protectedItems/SQLDataBase%3Bmssqlserver%3Bmsdb/recoveryPoints?api-version=2021-01-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;archiveresourcegroup;archsqlccyvm2/protectedItems/SQLDataBase;mssqlserver;msdb/recoveryPoints/113028097037696","name":"113028097037696","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2021-06-21T15:01:52Z","type":"Full","recoveryPointTierDetails":[{"type":2,"status":1}],"recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":false,"additionalInfo":"Recovery-Point + having active dependencies for restore is not eligible for Archive Move. "}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;archiveresourcegroup;archsqlccyvm2/protectedItems/SQLDataBase;mssqlserver;msdb/recoveryPoints/107688244086371","name":"107688244086371","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2021-06-20T15:01:52Z","type":"Full","recoveryPointTierDetails":[{"type":2,"status":1}],"recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":true,"additionalInfo":""}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;archiveresourcegroup;archsqlccyvm2/protectedItems/SQLDataBase;mssqlserver;msdb/recoveryPoints/106528682398779","name":"106528682398779","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2021-06-19T15:02:38Z","type":"Full","recoveryPointTierDetails":[{"type":3,"status":1}],"recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":false,"additionalInfo":"Recovery-Point + is not eligible for archive move as it has already been moved to archive tier. + "}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;archiveresourcegroup;archsqlccyvm2/protectedItems/SQLDataBase;mssqlserver;msdb/recoveryPoints/110058443760392","name":"110058443760392","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2021-06-18T15:02:40Z","type":"Full","recoveryPointTierDetails":[{"type":3,"status":1}],"recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":false,"additionalInfo":"Recovery-Point + is not eligible for archive move as it has already been moved to archive tier. + "}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;archiveresourcegroup;archsqlccyvm2/protectedItems/SQLDataBase;mssqlserver;msdb/recoveryPoints/121092026883482","name":"121092026883482","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2021-06-17T15:01:55Z","type":"Full","recoveryPointTierDetails":[{"type":3,"status":4,"extendedInfo":{"RehydratedRPExpiryTime":"2021-07-06T14:58:52.6325184Z"}}],"recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":false,"additionalInfo":"Recovery-Point + is not eligible for archive move as it has already been moved to archive tier. + "}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;archiveresourcegroup;archsqlccyvm2/protectedItems/SQLDataBase;mssqlserver;msdb/recoveryPoints/119927206096474","name":"119927206096474","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2021-06-16T15:01:58Z","type":"Full","recoveryPointTierDetails":[{"type":3,"status":4,"extendedInfo":{"RehydratedRPExpiryTime":"2021-07-06T11:55:17.5615738Z"}}],"recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":false,"additionalInfo":"Recovery-Point + is not eligible for archive move as it has already been moved to archive tier. + "}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;archiveresourcegroup;archsqlccyvm2/protectedItems/SQLDataBase;mssqlserver;msdb/recoveryPoints/114931020798392","name":"114931020798392","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2021-06-15T15:01:55Z","type":"Full","recoveryPointTierDetails":[{"type":2,"status":1}],"recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":true,"additionalInfo":""}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;archiveresourcegroup;archsqlccyvm2/protectedItems/SQLDataBase;mssqlserver;msdb/recoveryPoints/122908806868763","name":"122908806868763","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2021-06-13T15:02:39Z","type":"Full","recoveryPointTierDetails":[{"type":3,"status":1}],"recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":false,"additionalInfo":"Recovery-Point + is not eligible for archive move as it has already been moved to archive tier. + "}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;archiveresourcegroup;archsqlccyvm2/protectedItems/SQLDataBase;mssqlserver;msdb/recoveryPoints/118894569617991","name":"118894569617991","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2021-06-09T15:02:48Z","type":"Full","recoveryPointTierDetails":[{"type":3,"status":4,"extendedInfo":{"RehydratedRPExpiryTime":"2021-06-30T12:20:47.5386756Z"}}],"recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":false,"additionalInfo":"Recovery-Point + is not eligible for archive move as it has already been moved to archive tier. + "}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;archiveresourcegroup;archsqlccyvm2/protectedItems/SQLDataBase;mssqlserver;msdb/recoveryPoints/111630170706000","name":"111630170706000","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2021-06-06T15:02:52Z","type":"Full","recoveryPointTierDetails":[{"type":3,"status":1}],"recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":false,"additionalInfo":"Recovery-Point + is not eligible for archive move as it has already been moved to archive tier. + "}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;archiveresourcegroup;archsqlccyvm2/protectedItems/SQLDataBase;mssqlserver;msdb/recoveryPoints/120978448161550","name":"120978448161550","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2021-05-30T15:02:30Z","type":"Full","recoveryPointTierDetails":[{"type":3,"status":4,"extendedInfo":{"RehydratedRPExpiryTime":"2021-07-05T16:03:55.1407578Z"}}],"recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":false,"additionalInfo":"Recovery-Point + is not eligible for archive move as it has already been moved to archive tier. + "}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;archiveresourcegroup;archsqlccyvm2/protectedItems/SQLDataBase;mssqlserver;msdb/recoveryPoints/110281635160638","name":"110281635160638","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2021-05-23T15:01:56Z","type":"Full","recoveryPointTierDetails":[{"type":3,"status":1}],"recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":false,"additionalInfo":"Recovery-Point + is not eligible for archive move as it has already been moved to archive tier. + "}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;archiveresourcegroup;archsqlccyvm2/protectedItems/SQLDataBase;mssqlserver;msdb/recoveryPoints/119009025353023","name":"119009025353023","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2021-05-16T15:02:28Z","type":"Full","recoveryPointTierDetails":[{"type":3,"status":4,"extendedInfo":{"RehydratedRPExpiryTime":"2021-07-01T20:43:05.7038435Z"}}],"recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":false,"additionalInfo":"Recovery-Point + is not eligible for archive move as it has already been moved to archive tier. + "}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;archiveresourcegroup;archsqlccyvm2/protectedItems/SQLDataBase;mssqlserver;msdb/recoveryPoints/DefaultRangeRecoveryPoint","name":"DefaultRangeRecoveryPoint","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLPointInTimeRecoveryPoint","timeRanges":[],"type":"Log"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '11490' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 06:30:28 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '148' + x-powered-by: + - ASP.NET + 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 -i -c --backup-management-type --tier --query + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Barchiveresourcegroup%3Barchsqlccyvm2/protectedItems/SQLDataBase%3Bmssqlserver%3Bmsdb?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;archiveresourcegroup;archsqlccyvm2/protectedItems/SQLDataBase;mssqlserver;msdb","name":"SQLDataBase;mssqlserver;msdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"RestoreOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]},"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"msdb","serverName":"archsqlccyvm2","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2021-06-21T15:02:32.0930431Z","protectedItemDataSourceId":"17593935020011","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2021-05-16T15:02:28Z","recoveryPointCount":13,"policyState":"Inconsistent","recoveryModel":"SIMPLE"},"protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;archiveresourcegroup;archsqlccyvm2","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/archiveresourcegroup/providers/Microsoft.Compute/virtualMachines/archsqlccyvm2","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupPolicies/sql7day","lastRecoveryPoint":"2021-06-21T15:01:52Z","isArchiveEnabled":false}}' + headers: + cache-control: + - no-cache + content-length: + - '1857' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 06:30:30 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' + x-powered-by: + - ASP.NET + 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 -i -c --backup-management-type --tier --query + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Barchiveresourcegroup%3Barchsqlccyvm2/protectedItems/SQLDataBase%3Bmssqlserver%3Bmsdb/recoveryPoints?api-version=2021-01-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;archiveresourcegroup;archsqlccyvm2/protectedItems/SQLDataBase;mssqlserver;msdb/recoveryPoints/113028097037696","name":"113028097037696","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2021-06-21T15:01:52Z","type":"Full","recoveryPointTierDetails":[{"type":2,"status":1}],"recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":false,"additionalInfo":"Recovery-Point + having active dependencies for restore is not eligible for Archive Move. "}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;archiveresourcegroup;archsqlccyvm2/protectedItems/SQLDataBase;mssqlserver;msdb/recoveryPoints/107688244086371","name":"107688244086371","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2021-06-20T15:01:52Z","type":"Full","recoveryPointTierDetails":[{"type":2,"status":1}],"recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":true,"additionalInfo":""}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;archiveresourcegroup;archsqlccyvm2/protectedItems/SQLDataBase;mssqlserver;msdb/recoveryPoints/106528682398779","name":"106528682398779","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2021-06-19T15:02:38Z","type":"Full","recoveryPointTierDetails":[{"type":3,"status":1}],"recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":false,"additionalInfo":"Recovery-Point + is not eligible for archive move as it has already been moved to archive tier. + "}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;archiveresourcegroup;archsqlccyvm2/protectedItems/SQLDataBase;mssqlserver;msdb/recoveryPoints/110058443760392","name":"110058443760392","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2021-06-18T15:02:40Z","type":"Full","recoveryPointTierDetails":[{"type":3,"status":1}],"recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":false,"additionalInfo":"Recovery-Point + is not eligible for archive move as it has already been moved to archive tier. + "}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;archiveresourcegroup;archsqlccyvm2/protectedItems/SQLDataBase;mssqlserver;msdb/recoveryPoints/121092026883482","name":"121092026883482","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2021-06-17T15:01:55Z","type":"Full","recoveryPointTierDetails":[{"type":3,"status":4,"extendedInfo":{"RehydratedRPExpiryTime":"2021-07-06T14:58:52.6325184Z"}}],"recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":false,"additionalInfo":"Recovery-Point + is not eligible for archive move as it has already been moved to archive tier. + "}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;archiveresourcegroup;archsqlccyvm2/protectedItems/SQLDataBase;mssqlserver;msdb/recoveryPoints/119927206096474","name":"119927206096474","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2021-06-16T15:01:58Z","type":"Full","recoveryPointTierDetails":[{"type":3,"status":4,"extendedInfo":{"RehydratedRPExpiryTime":"2021-07-06T11:55:17.5615738Z"}}],"recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":false,"additionalInfo":"Recovery-Point + is not eligible for archive move as it has already been moved to archive tier. + "}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;archiveresourcegroup;archsqlccyvm2/protectedItems/SQLDataBase;mssqlserver;msdb/recoveryPoints/114931020798392","name":"114931020798392","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2021-06-15T15:01:55Z","type":"Full","recoveryPointTierDetails":[{"type":2,"status":1}],"recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":true,"additionalInfo":""}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;archiveresourcegroup;archsqlccyvm2/protectedItems/SQLDataBase;mssqlserver;msdb/recoveryPoints/122908806868763","name":"122908806868763","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2021-06-13T15:02:39Z","type":"Full","recoveryPointTierDetails":[{"type":3,"status":1}],"recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":false,"additionalInfo":"Recovery-Point + is not eligible for archive move as it has already been moved to archive tier. + "}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;archiveresourcegroup;archsqlccyvm2/protectedItems/SQLDataBase;mssqlserver;msdb/recoveryPoints/118894569617991","name":"118894569617991","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2021-06-09T15:02:48Z","type":"Full","recoveryPointTierDetails":[{"type":3,"status":4,"extendedInfo":{"RehydratedRPExpiryTime":"2021-06-30T12:20:47.5386756Z"}}],"recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":false,"additionalInfo":"Recovery-Point + is not eligible for archive move as it has already been moved to archive tier. + "}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;archiveresourcegroup;archsqlccyvm2/protectedItems/SQLDataBase;mssqlserver;msdb/recoveryPoints/111630170706000","name":"111630170706000","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2021-06-06T15:02:52Z","type":"Full","recoveryPointTierDetails":[{"type":3,"status":1}],"recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":false,"additionalInfo":"Recovery-Point + is not eligible for archive move as it has already been moved to archive tier. + "}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;archiveresourcegroup;archsqlccyvm2/protectedItems/SQLDataBase;mssqlserver;msdb/recoveryPoints/120978448161550","name":"120978448161550","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2021-05-30T15:02:30Z","type":"Full","recoveryPointTierDetails":[{"type":3,"status":4,"extendedInfo":{"RehydratedRPExpiryTime":"2021-07-05T16:03:55.1407578Z"}}],"recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":false,"additionalInfo":"Recovery-Point + is not eligible for archive move as it has already been moved to archive tier. + "}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;archiveresourcegroup;archsqlccyvm2/protectedItems/SQLDataBase;mssqlserver;msdb/recoveryPoints/110281635160638","name":"110281635160638","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2021-05-23T15:01:56Z","type":"Full","recoveryPointTierDetails":[{"type":3,"status":1}],"recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":false,"additionalInfo":"Recovery-Point + is not eligible for archive move as it has already been moved to archive tier. + "}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;archiveresourcegroup;archsqlccyvm2/protectedItems/SQLDataBase;mssqlserver;msdb/recoveryPoints/119009025353023","name":"119009025353023","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2021-05-16T15:02:28Z","type":"Full","recoveryPointTierDetails":[{"type":3,"status":4,"extendedInfo":{"RehydratedRPExpiryTime":"2021-07-01T20:43:05.7038435Z"}}],"recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":false,"additionalInfo":"Recovery-Point + is not eligible for archive move as it has already been moved to archive tier. + "}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;archiveresourcegroup;archsqlccyvm2/protectedItems/SQLDataBase;mssqlserver;msdb/recoveryPoints/DefaultRangeRecoveryPoint","name":"DefaultRangeRecoveryPoint","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLPointInTimeRecoveryPoint","timeRanges":[],"type":"Log"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '11490' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 06:30:31 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup recoverypoint move + Connection: + - keep-alive + ParameterSetName: + - -g -v -i -c --source-tier --destination-tier --rp-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Barchiveresourcegroup%3Barchsqlccyvm2/protectedItems/SQLDataBase%3Bmssqlserver%3Bmsdb?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;archiveresourcegroup;archsqlccyvm2/protectedItems/SQLDataBase;mssqlserver;msdb","name":"SQLDataBase;mssqlserver;msdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"RestoreOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]},"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"msdb","serverName":"archsqlccyvm2","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2021-06-21T15:02:32.0930431Z","protectedItemDataSourceId":"17593935020011","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2021-05-16T15:02:28Z","recoveryPointCount":13,"policyState":"Inconsistent","recoveryModel":"SIMPLE"},"protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;archiveresourcegroup;archsqlccyvm2","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/archiveresourcegroup/providers/Microsoft.Compute/virtualMachines/archsqlccyvm2","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupPolicies/sql7day","lastRecoveryPoint":"2021-06-21T15:01:52Z","isArchiveEnabled":false}}' + headers: + cache-control: + - no-cache + content-length: + - '1857' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 06:30:32 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"sourceTierType": "HardenedRP", "targetTierType": "ArchivedRP"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup recoverypoint move + Connection: + - keep-alive + Content-Length: + - '64' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -v -i -c --source-tier --destination-tier --rp-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Barchiveresourcegroup%3Barchsqlccyvm2/protectedItems/SQLDataBase%3Bmssqlserver%3Bmsdb/recoveryPoints/107688244086371/move?api-version=2021-01-01 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;archiveresourcegroup;archsqlccyvm2/protectedItems/SQLDataBase;mssqlserver;msdb/operationsStatus/25949a0f-4400-4eff-a689-2b130bba05b8?api-version=2021-01-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Tue, 22 Jun 2021 06:30:34 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;archiveresourcegroup;archsqlccyvm2/protectedItems/SQLDataBase;mssqlserver;msdb/operationResults/25949a0f-4400-4eff-a689-2b130bba05b8?api-version=2021-01-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup recoverypoint move + Connection: + - keep-alive + ParameterSetName: + - -g -v -i -c --source-tier --destination-tier --rp-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupOperations/25949a0f-4400-4eff-a689-2b130bba05b8?api-version=2021-01-01 + response: + body: + string: '{"id":"25949a0f-4400-4eff-a689-2b130bba05b8","name":"25949a0f-4400-4eff-a689-2b130bba05b8","status":"InProgress","startTime":"2021-06-22T06:30:34.7713075Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 06:30:35 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup recoverypoint move + Connection: + - keep-alive + ParameterSetName: + - -g -v -i -c --source-tier --destination-tier --rp-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupOperations/25949a0f-4400-4eff-a689-2b130bba05b8?api-version=2021-01-01 + response: + body: + string: '{"id":"25949a0f-4400-4eff-a689-2b130bba05b8","name":"25949a0f-4400-4eff-a689-2b130bba05b8","status":"Succeeded","startTime":"2021-06-22T06:30:34.7713075Z","endTime":"2021-06-22T06:30:34.7713075Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"25949a0f-4400-4eff-a689-2b130bba05b8"}}' + headers: + cache-control: + - no-cache + content-length: + - '304' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 06:30:36 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '148' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup recoverypoint move + Connection: + - keep-alive + ParameterSetName: + - -g -v -i -c --source-tier --destination-tier --rp-id + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/25949a0f-4400-4eff-a689-2b130bba05b8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/25949a0f-4400-4eff-a689-2b130bba05b8","name":"25949a0f-4400-4eff-a689-2b130bba05b8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1.6085901S","extendedInfo":{"tasksList":[],"propertyBag":{"Recovery + Point Time":"20/06/2021 15:01:52"}},"isUserTriggered":true,"entityFriendlyName":"msdb + [archsqlccyvm2]","backupManagementType":"AzureWorkload","operation":"MoveRecoveryPoint","status":"Completed","startTime":"2021-06-22T06:30:34.7713075Z","endTime":"2021-06-22T06:30:36.3798976Z","activityId":"57ed9e02-d323-11eb-81ca-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '791' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 06:30:37 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup recoveryconfig show + Connection: + - keep-alive + ParameterSetName: + - --vault-name -g --restore-mode --item-name --container-name --rp-name + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Barchiveresourcegroup%3Barchsqlccyvm2/protectedItems/SQLDataBase%3Bmssqlserver%3Bmsdb?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;archiveresourcegroup;archsqlccyvm2/protectedItems/SQLDataBase;mssqlserver;msdb","name":"SQLDataBase;mssqlserver;msdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"RestoreOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]},"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"msdb","serverName":"archsqlccyvm2","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2021-06-21T15:02:32.0930431Z","protectedItemDataSourceId":"17593935020011","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2021-05-16T15:02:28Z","recoveryPointCount":13,"policyState":"Inconsistent","recoveryModel":"SIMPLE"},"protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;archiveresourcegroup;archsqlccyvm2","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/archiveresourcegroup/providers/Microsoft.Compute/virtualMachines/archsqlccyvm2","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupPolicies/sql7day","lastRecoveryPoint":"2021-06-21T15:01:52Z","isArchiveEnabled":false}}' + headers: + cache-control: + - no-cache + content-length: + - '1857' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 06:30:38 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup recoveryconfig show + Connection: + - keep-alive + ParameterSetName: + - --vault-name -g --restore-mode --item-name --container-name --rp-name + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Barchiveresourcegroup%3Barchsqlccyvm2/protectedItems/SQLDataBase%3Bmssqlserver%3Bmsdb?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;archiveresourcegroup;archsqlccyvm2/protectedItems/SQLDataBase;mssqlserver;msdb","name":"SQLDataBase;mssqlserver;msdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"RestoreOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]},"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"msdb","serverName":"archsqlccyvm2","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2021-06-21T15:02:32.0930431Z","protectedItemDataSourceId":"17593935020011","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2021-05-16T15:02:28Z","recoveryPointCount":13,"policyState":"Inconsistent","recoveryModel":"SIMPLE"},"protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;archiveresourcegroup;archsqlccyvm2","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/archiveresourcegroup/providers/Microsoft.Compute/virtualMachines/archsqlccyvm2","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupPolicies/sql7day","lastRecoveryPoint":"2021-06-21T15:01:52Z","isArchiveEnabled":false}}' + headers: + cache-control: + - no-cache + content-length: + - '1857' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 06:30:39 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '147' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup recoveryconfig show + Connection: + - keep-alive + ParameterSetName: + - --vault-name -g --restore-mode --item-name --container-name --rp-name + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Barchiveresourcegroup%3Barchsqlccyvm2/protectedItems/SQLDataBase%3Bmssqlserver%3Bmsdb/recoveryPoints/106528682398779?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;archiveresourcegroup;archsqlccyvm2/protectedItems/SQLDataBase;mssqlserver;msdb/recoveryPoints/106528682398779","name":"106528682398779","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","extendedInfo":{"dataDirectoryTimeInUTC":"2021-06-19T15:02:38Z","dataDirectoryPaths":[{"type":"Data","path":"C:\\Program + Files\\Microsoft SQL Server\\MSSQL13.MSSQLSERVER\\MSSQL\\DATA\\MSDBData.mdf","logicalName":"MSDBData"},{"type":"Log","path":"C:\\Program + Files\\Microsoft SQL Server\\MSSQL13.MSSQLSERVER\\MSSQL\\DATA\\MSDBLog.ldf","logicalName":"MSDBLog"}]},"recoveryPointTimeInUTC":"2021-06-19T15:02:38Z","type":"Full","recoveryPointTierDetails":[{"type":3,"status":1}],"recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":false,"additionalInfo":"Recovery-Point + is not eligible for archive move as it has already been moved to archive tier. + "}}}}' + headers: + cache-control: + - no-cache + content-length: + - '1185' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 06:30:39 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '148' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup restore restore-azurewl + Connection: + - keep-alive + ParameterSetName: + - -g -v --recovery-config --rehydration-priority + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Barchiveresourcegroup%3Barchsqlccyvm2/protectedItems/SQLDataBase%3Bmssqlserver%3Bmsdb?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;archiveresourcegroup;archsqlccyvm2/protectedItems/SQLDataBase;mssqlserver;msdb","name":"SQLDataBase;mssqlserver;msdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"RestoreOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]},"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"msdb","serverName":"archsqlccyvm2","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2021-06-21T15:02:32.0930431Z","protectedItemDataSourceId":"17593935020011","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2021-05-16T15:02:28Z","recoveryPointCount":13,"policyState":"Inconsistent","recoveryModel":"SIMPLE"},"protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;archiveresourcegroup;archsqlccyvm2","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/archiveresourcegroup/providers/Microsoft.Compute/virtualMachines/archsqlccyvm2","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupPolicies/sql7day","lastRecoveryPoint":"2021-06-21T15:01:52Z","isArchiveEnabled":false}}' + headers: + cache-control: + - no-cache + content-length: + - '1857' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 06:30:41 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '148' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup restore restore-azurewl + Connection: + - keep-alive + ParameterSetName: + - -g -v --recovery-config --rehydration-priority + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Barchiveresourcegroup%3Barchsqlccyvm2/protectedItems/SQLDataBase%3Bmssqlserver%3Bmsdb/recoveryPoints/106528682398779?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;archiveresourcegroup;archsqlccyvm2/protectedItems/SQLDataBase;mssqlserver;msdb/recoveryPoints/106528682398779","name":"106528682398779","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","extendedInfo":{"dataDirectoryTimeInUTC":"2021-06-19T15:02:38Z","dataDirectoryPaths":[{"type":"Data","path":"C:\\Program + Files\\Microsoft SQL Server\\MSSQL13.MSSQLSERVER\\MSSQL\\DATA\\MSDBData.mdf","logicalName":"MSDBData"},{"type":"Log","path":"C:\\Program + Files\\Microsoft SQL Server\\MSSQL13.MSSQLSERVER\\MSSQL\\DATA\\MSDBLog.ldf","logicalName":"MSDBLog"}]},"recoveryPointTimeInUTC":"2021-06-19T15:02:38Z","type":"Full","recoveryPointTierDetails":[{"type":3,"status":1}],"recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":false,"additionalInfo":"Recovery-Point + is not eligible for archive move as it has already been moved to archive tier. + "}}}}' + headers: + cache-control: + - no-cache + content-length: + - '1185' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 06:30:42 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '148' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"properties": {"objectType": "AzureWorkloadSQLRestoreWithRehydrateRequest", + "recoveryType": "OriginalLocation", "shouldUseAlternateTargetLocation": true, + "isNonRecoverable": false, "recoveryPointRehydrationInfo": {"rehydrationRetentionDuration": + "P15D", "rehydrationPriority": "High"}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup restore restore-azurewl + Connection: + - keep-alive + Content-Length: + - '287' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -v --recovery-config --rehydration-priority + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Barchiveresourcegroup%3Barchsqlccyvm2/protectedItems/SQLDataBase%3Bmssqlserver%3Bmsdb/recoveryPoints/106528682398779/restore?api-version=2021-01-01 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;archiveresourcegroup;archsqlccyvm2/protectedItems/SQLDataBase;mssqlserver;msdb/operationsStatus/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Tue, 22 Jun 2021 06:30:43 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;archiveresourcegroup;archsqlccyvm2/protectedItems/SQLDataBase;mssqlserver;msdb/operationResults/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1198' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup restore restore-azurewl + Connection: + - keep-alive + ParameterSetName: + - -g -v --recovery-config --rehydration-priority + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupOperations/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","status":"Succeeded","startTime":"2021-06-22T06:30:44.2075183Z","endTime":"0001-01-01T00:00:00","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8"}}' + headers: + cache-control: + - no-cache + content-length: + - '295' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 06:30:44 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup restore restore-azurewl + Connection: + - keep-alive + ParameterSetName: + - -g -v --recovery-config --rehydration-priority + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2.5969634S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '834' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 06:30:46 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT3.2935352S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '834' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 06:30:47 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT3.7467008S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '834' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 06:30:47 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '148' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT34.2295083S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '835' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 06:31:17 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '147' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1M4.6948609S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '836' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 06:31:48 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '146' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1M36.354227S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '836' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 06:32:20 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '145' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2M6.8578849S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '836' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 06:32:50 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '144' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2M37.3424303S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '837' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 06:33:21 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '143' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT3M7.7923601S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '836' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 06:33:51 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '142' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT3M38.2758062S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '837' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 06:34:21 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '141' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT4M8.7588984S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '836' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 06:34:52 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '140' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT4M39.3293884S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '837' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 06:35:23 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '139' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT5M9.836774S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '835' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 06:35:53 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '138' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT5M40.3075065S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '837' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 06:36:24 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '137' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT6M10.8020376S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '837' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 06:36:54 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '136' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT6M41.330594S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '836' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 06:37:24 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '135' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT7M11.7863503S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '837' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 06:37:56 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '134' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT7M42.2545982S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '837' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 06:38:26 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '133' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT8M12.7149094S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '837' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 06:38:56 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '132' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT8M43.1733906S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '837' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 06:39:26 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '131' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT9M13.6594558S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '837' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 06:39:57 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '130' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT9M44.1316592S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '837' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 06:40:28 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '129' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT10M14.5986762S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '838' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 06:40:58 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '128' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT10M45.0915164S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '838' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 06:41:29 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '127' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT11M16.598486S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '837' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 06:42:00 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '126' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT11M47.0379005S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '838' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 06:42:30 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '125' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT12M17.4950232S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '838' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 06:43:01 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '124' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT12M47.9609563S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '838' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 06:43:31 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '123' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT13M18.4310058S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '838' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 06:44:02 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '122' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT13M48.8960153S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '838' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 06:44:32 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '121' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT14M19.3454217S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '838' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 06:45:03 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '120' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT14M49.7684304S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '838' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 06:45:33 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '119' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT15M20.3229406S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '838' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 06:46:03 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '118' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT15M50.779705S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '837' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 06:46:34 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '117' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT16M21.3405062S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '838' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 06:47:05 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '116' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT16M51.7946619S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '838' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 06:47:35 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '115' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT17M22.4058375S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '838' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 06:48:06 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '114' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT17M52.8662698S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '838' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 06:48:36 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '113' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT18M23.3122279S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '838' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 06:49:07 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '112' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT18M53.8073716S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '838' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 06:49:37 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '111' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT19M24.2967703S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '838' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 06:50:07 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '110' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT19M54.7816624S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '838' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 06:50:39 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '109' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT20M25.2364457S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '838' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 06:51:09 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '108' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT20M55.7238954S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '838' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 06:51:40 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '107' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT21M26.183309S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '837' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 06:52:10 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '106' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT21M56.7335692S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '838' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 06:52:40 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '105' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT22M27.1651592S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '838' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 06:53:11 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '104' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT22M57.6259718S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '838' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 06:53:41 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '103' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT23M28.0989886S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '838' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 06:54:11 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '102' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT23M59.561517S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '837' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 06:54:43 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '101' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT24M30.0030917S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '838' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 06:55:13 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '100' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT25M0.4784045S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '837' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 06:55:44 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '99' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT25M30.9067469S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '838' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 06:56:15 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '98' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT26M1.3425553S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '837' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 06:56:45 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '97' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT26M31.7963872S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '838' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 06:57:15 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '96' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT27M2.2615383S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '837' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 06:57:45 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '95' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT27M32.7487886S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '838' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 06:58:16 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '94' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT28M3.2272734S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '837' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 06:58:47 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '93' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT28M33.739496S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '837' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 06:59:17 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '92' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT29M4.2210248S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '837' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 06:59:48 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '91' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT29M34.6900642S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '838' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 07:00:18 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '90' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT30M5.183885S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '836' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 07:00:48 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '89' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT30M35.6255847S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '838' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 07:01:19 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '88' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT31M6.1347539S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '837' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 07:01:50 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '87' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT31M37.7978425S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '838' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 07:02:21 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '86' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT32M8.2664413S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '837' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 07:02:51 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '85' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT32M38.6988204S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '838' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 07:03:22 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '84' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT33M9.1773764S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '837' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 07:03:53 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '83' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT33M39.627017S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '837' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 07:04:23 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '82' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT34M10.0792215S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '838' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 07:04:53 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '81' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT34M40.6144509S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '838' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 07:05:24 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '80' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT35M11.0521324S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '838' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 07:05:54 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '79' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT35M42.5166848S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '838' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 07:06:26 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '78' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT36M13.044508S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '837' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 07:06:57 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '77' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT36M43.545026S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '837' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 07:07:27 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '76' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT37M14.0541671S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '838' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 07:07:58 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '75' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT37M44.5057253S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '838' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 07:08:28 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '74' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT38M14.944961S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '837' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 07:08:58 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '73' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT38M45.4442345S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '838' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 07:09:29 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '72' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT39M15.9154772S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '838' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 07:09:59 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '71' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT39M46.4121319S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '838' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 07:10:29 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '70' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT40M16.8745057S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '838' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 07:11:01 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '69' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT40M47.3518395S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '838' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 07:11:30 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '68' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT41M17.7975606S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '838' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 07:12:02 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '67' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT41M49.7511829S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '838' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 07:12:33 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '66' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT42M20.2462922S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '838' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 07:13:03 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '65' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT42M50.7608699S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '838' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 07:13:34 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '64' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT43M21.341938S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '837' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 07:14:04 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '63' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT43M51.7818464S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '838' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 07:14:36 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '62' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT44M22.2351685S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '838' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 07:15:06 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '61' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT44M52.6830792S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '838' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 07:15:36 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '60' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT45M23.6742727S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '838' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 07:16:07 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '59' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT45M54.2015337S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '838' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 07:16:37 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '58' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT46M24.6712459S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '838' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 07:17:08 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '57' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT46M55.1119144S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '838' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 07:17:39 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '56' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT47M25.6250605S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '838' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 07:18:09 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '55' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT47M56.0668248S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '838' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 07:18:39 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '54' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT48M26.529083S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '837' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 07:19:10 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '53' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT48M57.1437957S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '838' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 07:19:40 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '52' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT49M27.6037553S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '838' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 07:20:10 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '51' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT49M58.080068S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '837' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 07:20:41 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '50' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT50M28.5354781S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '838' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 07:21:12 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '49' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT50M59.0312835S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '838' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 07:21:43 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '48' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT51M30.7116537S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '838' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 07:22:14 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '47' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT52M1.1818164S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '837' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 07:22:45 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '46' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT52M31.6312037S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '838' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 07:23:15 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '45' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT53M2.2093681S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '837' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 07:23:45 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '44' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT53M32.6845202S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '838' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 07:24:16 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '43' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT54M3.1823267S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '837' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 07:24:46 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '42' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT54M33.6110242S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '838' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 07:25:17 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '41' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT55M4.0997048S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '837' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 07:25:48 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '40' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT55M35.4537677S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '838' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 07:26:19 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '39' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT56M5.8952899S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '837' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 07:26:49 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '38' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT56M36.3328666S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '838' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 07:27:20 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '37' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT57M6.7891249S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '837' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 07:27:50 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '36' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT57M37.2895583S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '838' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 07:28:20 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '35' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT58M7.7305488S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '837' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 07:28:51 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '34' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT58M38.1880658S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '838' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 07:29:21 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '33' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT59M8.5895784S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '837' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 07:29:52 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '32' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT59M39.0153984S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '838' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 07:30:22 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '31' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1H9.5381771S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '836' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 07:30:53 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '30' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1H39.9874649S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '837' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 07:31:24 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '29' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1H1M10.4474366S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '839' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 07:31:54 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '28' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1H1M40.9602882S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '839' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 07:32:25 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '27' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1H2M12.7582527S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '839' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 07:32:56 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '26' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1H2M43.2853301S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '839' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 07:33:26 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '25' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1H3M13.7350858S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '839' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 07:33:57 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '24' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1H3M44.1826409S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '839' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 07:34:28 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '23' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1H4M14.6261709S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '839' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 07:34:58 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '22' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1H4M45.1364831S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '839' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 07:35:29 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '31' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1H5M15.5855568S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '839' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 07:35:59 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '30' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1H5M46.0757107S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '839' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 07:36:29 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '29' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1H6M16.5605731S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '839' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 07:37:00 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '28' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1H6M47.1072496S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '839' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 07:37:31 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '27' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1H7M17.5386198S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '839' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 07:38:01 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '26' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1H7M48.0138167S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '839' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 07:38:31 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '25' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1H8M18.4653962S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '839' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 07:39:02 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '24' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1H8M48.933753S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '838' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 07:39:32 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '23' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1H9M19.4096133S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '839' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 07:40:03 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '32' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1H9M49.8681296S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '839' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 07:40:34 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '31' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1H10M20.2915769S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 07:41:04 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '30' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1H10M50.742812S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '839' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 07:41:34 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '29' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1H11M21.2264209S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 07:42:05 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '28' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1H11M51.6848921S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 07:42:35 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '27' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1H12M22.1937479S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 07:43:05 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '26' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1H12M52.7238392S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 07:43:36 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '25' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1H13M23.136729S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '839' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 07:44:07 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '24' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1H13M53.5976582S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 07:44:37 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '23' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1H14M24.0600771S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 07:45:08 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '31' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1H14M54.5268707S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 07:45:38 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '30' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1H15M24.9619175S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 07:46:08 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '29' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1H15M55.4016521S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 07:46:38 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '28' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1H16M25.8960284S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 07:47:10 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '27' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1H16M57.2399356S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 07:47:41 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '26' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1H17M27.8117519S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 07:48:11 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '25' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1H17M58.2581973S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 07:48:42 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '24' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1H18M28.7208059S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 07:49:12 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '23' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1H18M59.2554182S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 07:49:42 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '22' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1H19M29.6838531S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 07:50:13 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '31' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1H20M0.1445003S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '839' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 07:50:43 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '30' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1H20M30.6135063S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 07:51:15 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '29' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1H21M1.128086S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '838' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 07:51:45 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '28' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1H21M31.5618573S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 07:52:15 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '27' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1H22M2.0631377S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '839' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 07:52:46 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '26' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1H22M32.5227344S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 07:53:16 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '25' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1H23M3.218118S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '838' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 07:53:47 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '24' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1H23M34.8502252S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 07:54:19 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '23' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1H24M5.3161318S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '839' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 07:54:49 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '22' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1H24M35.9369645S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 07:55:19 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '31' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1H25M6.3883169S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '839' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 07:55:50 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '30' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1H25M36.8716619S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 07:56:20 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '29' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1H26M7.3392474S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '839' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 07:56:50 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '28' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1H26M37.8630584S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 07:57:22 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '27' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1H27M8.3073285S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '839' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 07:57:52 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '26' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1H27M38.759756S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '839' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 07:58:22 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '25' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1H28M9.3231501S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '839' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 07:58:53 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '24' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1H28M39.7517209S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 07:59:23 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '23' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1H29M11.3608964S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 07:59:55 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '22' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1H29M43.0105267S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 08:00:26 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '31' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1H30M13.4802849S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 08:00:57 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '30' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1H30M44.8114994S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 08:01:29 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '29' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1H31M15.2804292S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 08:01:59 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '28' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1H31M45.7217728S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 08:02:29 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '27' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1H32M16.1778786S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 08:03:00 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '26' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1H32M46.636276S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '839' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 08:03:30 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '25' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1H33M17.184286S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '839' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 08:04:00 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '24' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1H33M48.8386613S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 08:04:32 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '23' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1H34M19.2946761S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 08:05:02 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '32' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1H34M49.7330471S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 08:05:33 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '31' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1H35M21.5032182S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 08:06:05 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '30' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1H35M53.1314674S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 08:06:37 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '29' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1H36M24.8924158S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 08:07:08 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '28' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1H36M55.3636557S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 08:07:38 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '27' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1H37M25.8290622S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 08:08:10 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '26' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1H37M56.3398082S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 08:08:40 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '25' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1H38M26.8079495S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 08:09:11 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '24' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1H38M57.2417528S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 08:09:41 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '23' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1H39M28.6908862S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 08:10:12 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '32' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1H39M59.2658791S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 08:10:43 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '31' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1H40M29.6872385S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 08:11:13 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '30' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1H41M0.1255881S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '839' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 08:11:43 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '29' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1H41M30.5870794S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 08:12:14 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '28' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1H42M1.0708942S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '839' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 08:12:44 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '27' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1H42M31.5237962S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 08:13:15 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '26' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1H43M1.9680042S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '839' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 08:13:45 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '25' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1H43M32.433543S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '839' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 08:14:16 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '24' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1H44M2.8757301S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '839' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 08:14:47 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '23' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1H44M33.3177978S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 08:15:17 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '31' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1H45M3.8074876S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '839' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 08:15:47 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '30' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1H45M34.2953887S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 08:16:17 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '29' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1H46M4.7318817S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '839' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 08:16:48 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '28' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1H46M35.1840263S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 08:17:18 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '27' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1H47M5.6620875S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '839' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 08:17:49 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '26' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1H47M36.1077947S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 08:18:20 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '25' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1H48M6.6406908S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '839' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 08:18:50 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '24' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1H48M37.1264961S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 08:19:21 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '23' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1H49M7.5726297S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '839' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 08:19:51 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '22' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1H49M38.0115554S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 08:20:21 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '31' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1H50M8.5020672S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '839' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 08:20:52 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '30' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1H50M38.9465284S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 08:21:22 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '29' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1H51M9.4100782S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '839' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 08:21:53 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '28' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1H51M39.8424318S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 08:22:23 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '27' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1H52M10.2933301S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 08:22:54 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '26' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1H52M40.7191711S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 08:23:24 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '25' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1H53M11.1960909S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 08:23:54 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '24' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1H53M41.7050993S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 08:24:26 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '23' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1H54M12.1884814S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 08:24:56 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '22' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1H54M42.759919S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '839' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 08:25:26 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '31' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1H55M13.2177392S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 08:25:57 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '30' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1H55M43.7241111S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 08:26:27 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '29' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1H56M14.2227034S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 08:26:57 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '28' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1H56M44.6747516S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 08:27:28 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '27' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1H57M15.1477552S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 08:27:58 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '26' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1H57M45.5912316S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 08:28:29 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '25' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1H58M16.0656534S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 08:28:59 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '24' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1H58M46.5127524S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 08:29:30 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '23' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1H59M16.9937992S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 08:30:01 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '32' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1H59M47.4948355S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 08:30:31 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '31' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2H17.9421101S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '837' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 08:31:01 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '30' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2H48.3803661S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '837' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 08:31:32 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '29' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2H1M18.8442436S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '839' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 08:32:02 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '28' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2H1M49.3060792S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '839' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 08:32:33 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '27' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2H2M20.5842408S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '839' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 08:33:04 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '26' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2H2M51.0019573S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '839' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 08:33:34 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '25' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2H3M21.4586969S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '839' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 08:34:05 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '24' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2H3M51.8897013S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '839' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 08:34:35 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '23' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2H4M22.357339S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '838' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 08:35:05 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '32' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2H4M52.8092044S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '839' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 08:35:36 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '31' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2H5M24.4949348S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '839' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 08:36:08 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '30' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2H5M55.0064478S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '839' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 08:36:39 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '29' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2H6M25.4600344S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '839' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 08:37:09 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '28' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2H6M55.9323102S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '839' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 08:37:39 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '27' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2H7M26.4280365S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '839' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 08:38:10 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '26' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2H7M56.8995879S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '839' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 08:38:40 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '25' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2H8M28.5702715S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '839' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 08:39:12 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '24' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2H8M59.0196243S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '839' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 08:39:42 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '23' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2H9M29.4959192S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '839' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 08:40:13 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '31' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2H9M59.9441653S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '839' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 08:40:44 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '30' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2H10M30.4410037S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 08:41:14 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '29' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2H11M2.0480883S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '839' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 08:41:46 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '28' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2H11M32.5085523S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 08:42:16 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '27' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2H12M2.9371654S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '839' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 08:42:46 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '26' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2H12M34.6869626S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 08:43:18 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '25' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2H13M5.1757071S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '839' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 08:43:48 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '24' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2H13M35.6160852S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 08:44:19 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '23' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2H14M7.289671S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '838' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 08:44:51 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '22' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2H14M37.7440657S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 08:45:22 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '31' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2H15M8.1939607S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '839' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 08:45:52 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '30' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2H15M38.7354192S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 08:46:22 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '29' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2H16M9.2115665S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '839' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 08:46:53 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '28' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2H16M39.7429418S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 08:47:23 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '27' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2H17M10.1918038S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 08:47:54 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '26' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2H17M40.6960081S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 08:48:24 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '25' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2H18M12.3843724S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 08:48:56 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '24' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2H18M42.8193077S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 08:49:26 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '23' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2H19M13.284846S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '839' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 08:49:56 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '22' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2H19M43.7240061S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 08:50:27 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '31' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2H20M14.1817028S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 08:50:57 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '30' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2H20M44.6276675S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 08:51:28 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '29' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2H21M15.0807767S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 08:51:59 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '28' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2H21M45.521568S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '839' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 08:52:29 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '27' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2H22M16.018847S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '839' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 08:53:00 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '26' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2H22M46.509156S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '839' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 08:53:30 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '25' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2H23M16.979472S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '839' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 08:54:00 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '24' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2H23M47.4554888S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 08:54:31 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '23' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2H24M17.8953992S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 08:55:01 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '32' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2H24M48.4199677S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 08:55:31 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '31' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2H25M18.9192729S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 08:56:03 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '30' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2H25M50.3010548S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 08:56:34 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '29' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2H26M20.7159302S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 08:57:04 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '28' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2H26M51.2070032S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 08:57:35 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '27' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2H27M21.6615493S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 08:58:05 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '26' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2H27M52.0853388S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 08:58:35 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '25' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2H28M22.5426952S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 08:59:06 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '24' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2H28M53.0567486S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 08:59:36 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '23' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2H29M23.5352257S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 09:00:07 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '32' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2H29M53.9774285S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 09:00:37 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '31' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2H30M24.4460229S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 09:01:08 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '30' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2H30M55.097246S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '839' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 09:01:39 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '29' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2H31M25.5633197S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 09:02:09 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '28' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2H31M55.9961719S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 09:02:40 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '27' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2H32M26.4343157S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 09:03:10 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '26' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2H32M56.9534539S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 09:03:40 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '25' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2H33M27.531744S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '839' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 09:04:11 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '24' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2H33M58.0141009S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 09:04:41 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '23' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2H34M28.6214261S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 09:05:12 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '31' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2H34M59.0546091S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 09:05:43 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '30' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2H35M29.5487295S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 09:06:13 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '29' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2H36M0.0038184S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '839' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 09:06:43 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '28' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2H36M30.5229413S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 09:07:14 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '27' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2H37M1.0110812S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '839' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 09:07:44 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '26' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2H37M31.4563041S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 09:08:14 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '25' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2H38M1.8977415S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '839' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 09:08:45 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '24' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2H38M32.3471242S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 09:09:15 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '23' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2H39M4.0374108S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '839' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 09:09:48 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '22' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2H39M34.5587394S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 09:10:18 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '31' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2H40M5.0359643S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '839' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 09:10:48 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '30' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2H40M35.521684S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '839' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 09:11:19 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '29' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2H41M5.9931172S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '839' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 09:11:49 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '28' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2H41M36.4500926S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 09:12:20 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '27' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2H42M6.8870057S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '839' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 09:12:50 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '26' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2H42M37.3755387S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 09:13:21 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '25' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2H43M7.9280775S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '839' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 09:13:51 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '24' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2H43M38.3904047S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 09:14:21 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '23' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2H44M8.8570566S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '839' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 09:14:53 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '22' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2H44M39.328192S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '839' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 09:15:23 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '31' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2H45M9.8595126S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '839' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 09:15:53 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '30' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2H45M40.305892S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '839' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 09:16:23 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '29' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2H46M10.7582299S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 09:16:54 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '28' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2H46M41.2117729S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 09:17:24 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '27' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2H47M11.6526285S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 09:17:55 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '26' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2H47M42.1783475S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 09:18:26 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '25' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2H48M12.6181206S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 09:18:56 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '24' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2H48M44.3943853S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 09:19:27 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '23' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2H49M14.8829723S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 09:19:59 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '22' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2H49M45.3670148S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 09:20:29 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '31' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2H50M15.830002S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '839' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 09:20:59 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '30' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2H50M46.4046864S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 09:21:30 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '29' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2H51M16.8478633S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 09:22:00 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '28' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2H51M47.3603668S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 09:22:31 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '27' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2H52M17.8376615S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 09:23:01 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '26' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2H52M48.2731829S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 09:23:31 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '25' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2H53M18.7198089S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 09:24:03 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '24' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2H53M50.3844484S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 09:24:34 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '23' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2H54M20.8865333S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 09:25:04 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '32' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2H54M51.3449963S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 09:25:35 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '31' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2H55M21.7587196S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 09:26:05 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '30' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2H55M53.6790978S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 09:26:37 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '29' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2H56M24.1594379S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 09:27:07 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '28' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2H56M54.603239S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '839' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 09:27:38 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '27' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2H57M25.0698338S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 09:28:09 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '26' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2H57M55.498801S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '839' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 09:28:39 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '25' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2H58M25.9333237S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 09:29:10 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '24' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2H58M56.3792179S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 09:29:39 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '23' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2H59M26.8626906S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 09:30:10 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '31' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2H59M57.3998963S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 09:30:41 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '30' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT3H27.8728773S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '837' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 09:31:11 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '29' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT3H59.6006435S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '837' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 09:31:43 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '28' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT3H1M30.0550612S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '839' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 09:32:13 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '27' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT3H2M0.5143784S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '838' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 09:32:44 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '26' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT3H2M31.0216393S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '839' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 09:33:15 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '25' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT3H3M1.4822348S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '838' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 09:33:45 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '24' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT3H3M31.9347789S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '839' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 09:34:15 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '23' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT3H4M2.4889452S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '838' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 09:34:46 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '22' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT3H4M32.9261466S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '839' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 09:35:16 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '31' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT3H5M3.346558S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '837' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 09:35:46 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '30' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT3H5M33.8067541S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '839' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 09:36:18 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '29' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT3H6M4.3055227S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '838' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 09:36:48 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '28' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT3H6M35.9063597S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '839' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 09:37:19 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '27' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT3H7M6.3605146S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '838' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 09:37:50 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '26' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT3H7M36.8439496S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '839' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 09:38:20 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '25' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT3H8M7.3236419S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '838' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 09:38:50 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '24' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT3H8M37.7872894S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '839' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 09:39:22 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '23' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT3H9M8.298013S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '837' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 09:39:52 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '22' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT3H9M38.736388S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '838' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 09:40:22 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '31' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT3H10M9.1825008S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '839' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 09:40:53 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '30' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT3H10M39.6378066S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 09:41:23 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '29' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT3H11M10.0773648S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 09:41:53 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '28' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT3H11M41.5283296S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 09:42:25 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '27' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT3H12M11.9826456S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 09:42:55 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '26' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT3H12M42.4451858S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 09:43:26 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '25' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT3H13M12.9560897S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 09:43:56 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '24' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT3H13M43.4647297S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 09:44:27 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '23' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT3H14M13.9781622S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 09:44:58 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '22' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT3H14M44.4123946S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 09:45:28 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '31' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT3H15M14.8318363S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 09:45:58 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '30' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT3H15M46.5237645S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 09:46:30 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '29' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT3H16M17.0138425S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 09:47:00 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '28' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT3H16M47.5410321S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 09:47:31 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '27' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT3H17M18.017802S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '839' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 09:48:01 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '26' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT3H17M48.4637707S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"InProgress"}],"propertyBag":{"Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '840' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 09:48:32 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '25' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT3H18M19.0256171S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"Completed"}],"propertyBag":{"Rehydration Priority":"High","Rehydrated + Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"17593935020011","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '849' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 09:49:02 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '24' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SQLDataBase","duration":"PT3H18M49.5130231S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"Completed"},{"taskId":"Transfer data from + vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery to the + original database","Rehydration Priority":"High","Rehydrated Recovery Point + Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb [archsqlccyvm2]","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '980' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 09:49:32 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '23' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SQLDataBase","duration":"PT3H19M19.9840935S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"Completed"},{"taskId":"Transfer data from + vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery to the + original database","Rehydration Priority":"High","Rehydrated Recovery Point + Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb [archsqlccyvm2]","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '980' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 09:50:04 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '32' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SQLDataBase","duration":"PT3H19M50.4262438S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"Completed"},{"taskId":"Transfer data from + vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery to the + original database","Rehydration Priority":"High","Rehydrated Recovery Point + Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb [archsqlccyvm2]","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '980' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 09:50:34 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '31' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SQLDataBase","duration":"PT3H20M20.8495483S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"Completed"},{"taskId":"Transfer data from + vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery to the + original database","Rehydration Priority":"High","Rehydrated Recovery Point + Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb [archsqlccyvm2]","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '980' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 09:51:04 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '30' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SQLDataBase","duration":"PT3H20M52.1518529S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"Completed"},{"taskId":"Transfer data from + vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery to the + original database","Rehydration Priority":"High","Rehydrated Recovery Point + Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb [archsqlccyvm2]","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '980' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 09:51:36 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '29' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SQLDataBase","duration":"PT3H21M22.6485086S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"Completed"},{"taskId":"Transfer data from + vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery to the + original database","Rehydration Priority":"High","Rehydrated Recovery Point + Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb [archsqlccyvm2]","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"InProgress","startTime":"2021-06-22T06:30:44.2075183Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '980' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 09:52:06 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '28' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SQLDataBase","duration":"PT3H21M34.9651499S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"Completed"},{"taskId":"Transfer data from + vault","status":"Completed"}],"propertyBag":{"Data Transferred (in MB)":"20.1147","Job + Type":"Recovery to the original database","RestoreRecoveryPointTime":"2021-06-19 + 15:02:38Z","RestoreDestination":"archsqlccyvm2/MSSQLSERVER/msdb","Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb + [archsqlccyvm2]","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"Completed","startTime":"2021-06-22T06:30:44.2075183Z","endTime":"2021-06-22T09:52:19.1726682Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '1160' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 09:52:36 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '27' + x-powered-by: + - ASP.NET + 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: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArchiveResourceGroup/providers/Microsoft.RecoveryServices/vaults/archiveccyvault1/backupJobs/b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","name":"b0c262d7-1ca3-4b86-8c32-05a5c859cfc8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SQLDataBase","duration":"PT3H21M34.9651499S","extendedInfo":{"tasksList":[{"taskId":"Rehydrate + from Archive storage","status":"Completed"},{"taskId":"Transfer data from + vault","status":"Completed"}],"propertyBag":{"Data Transferred (in MB)":"20.1147","Job + Type":"Recovery to the original database","RestoreRecoveryPointTime":"2021-06-19 + 15:02:38Z","RestoreDestination":"archsqlccyvm2/MSSQLSERVER/msdb","Rehydration + Priority":"High","Rehydrated Recovery Point Retention":"P15D"}},"isUserTriggered":true,"entityFriendlyName":"msdb + [archsqlccyvm2]","backupManagementType":"AzureWorkload","operation":"RestoreWithRehydrate","status":"Completed","startTime":"2021-06-22T06:30:44.2075183Z","endTime":"2021-06-22T09:52:19.1726682Z","activityId":"5cf05e48-d323-11eb-8790-00155d657312"}}' + headers: + cache-control: + - no-cache + content-length: + - '1160' + content-type: + - application/json + date: + - Tue, 22 Jun 2021 09:53:07 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +version: 1 \ No newline at end of file diff --git a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_sql_restore.yaml b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_sql_restore.yaml index 37e23d366da..924984efc1a 100644 --- a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_sql_restore.yaml +++ b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_sql_restore.yaml @@ -13,8 +13,8 @@ interactions: ParameterSetName: - -v -g --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET @@ -60,7 +60,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 15:38:17 GMT + - Mon, 28 Jun 2021 09:14:03 GMT expires: - '-1' pragma: @@ -96,8 +96,8 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET @@ -117,7 +117,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 15:38:17 GMT + - Mon, 28 Jun 2021 09:14:03 GMT expires: - '-1' pragma: @@ -153,8 +153,8 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET @@ -170,7 +170,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 15:38:18 GMT + - Mon, 28 Jun 2021 09:14:04 GMT expires: - '-1' pragma: @@ -212,8 +212,8 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: PUT @@ -223,17 +223,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;sarath-rg;sarathvm/protectedItems/sqldatabase;mssqlserver;msdb/operationsStatus/f722dac3-c3d8-4d48-ad83-065943799ab1?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;sarath-rg;sarathvm/protectedItems/sqldatabase;mssqlserver;msdb/operationsStatus/c03a10d3-cd27-4229-ac66-397458d9654b?api-version=2021-01-01 cache-control: - no-cache content-length: - '0' date: - - Mon, 21 Jun 2021 15:38:19 GMT + - Mon, 28 Jun 2021 09:14:06 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;sarath-rg;sarathvm/protectedItems/sqldatabase;mssqlserver;msdb/operationResults/f722dac3-c3d8-4d48-ad83-065943799ab1?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;sarath-rg;sarathvm/protectedItems/sqldatabase;mssqlserver;msdb/operationResults/c03a10d3-cd27-4229-ac66-397458d9654b?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -261,24 +261,24 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/f722dac3-c3d8-4d48-ad83-065943799ab1?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/c03a10d3-cd27-4229-ac66-397458d9654b?api-version=2021-01-01 response: body: - string: '{"id":"f722dac3-c3d8-4d48-ad83-065943799ab1","name":"f722dac3-c3d8-4d48-ad83-065943799ab1","status":"InProgress","startTime":"2021-06-21T15:38:19.4379564Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c03a10d3-cd27-4229-ac66-397458d9654b","name":"c03a10d3-cd27-4229-ac66-397458d9654b","status":"InProgress","startTime":"2021-06-28T09:14:06.300517Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 15:38:19 GMT + - Mon, 28 Jun 2021 09:14:06 GMT expires: - '-1' pragma: @@ -314,24 +314,24 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/f722dac3-c3d8-4d48-ad83-065943799ab1?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/c03a10d3-cd27-4229-ac66-397458d9654b?api-version=2021-01-01 response: body: - string: '{"id":"f722dac3-c3d8-4d48-ad83-065943799ab1","name":"f722dac3-c3d8-4d48-ad83-065943799ab1","status":"InProgress","startTime":"2021-06-21T15:38:19.4379564Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c03a10d3-cd27-4229-ac66-397458d9654b","name":"c03a10d3-cd27-4229-ac66-397458d9654b","status":"InProgress","startTime":"2021-06-28T09:14:06.300517Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 15:38:20 GMT + - Mon, 28 Jun 2021 09:14:07 GMT expires: - '-1' pragma: @@ -367,24 +367,24 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/f722dac3-c3d8-4d48-ad83-065943799ab1?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/c03a10d3-cd27-4229-ac66-397458d9654b?api-version=2021-01-01 response: body: - string: '{"id":"f722dac3-c3d8-4d48-ad83-065943799ab1","name":"f722dac3-c3d8-4d48-ad83-065943799ab1","status":"InProgress","startTime":"2021-06-21T15:38:19.4379564Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c03a10d3-cd27-4229-ac66-397458d9654b","name":"c03a10d3-cd27-4229-ac66-397458d9654b","status":"InProgress","startTime":"2021-06-28T09:14:06.300517Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 15:38:21 GMT + - Mon, 28 Jun 2021 09:14:08 GMT expires: - '-1' pragma: @@ -420,24 +420,24 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/f722dac3-c3d8-4d48-ad83-065943799ab1?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/c03a10d3-cd27-4229-ac66-397458d9654b?api-version=2021-01-01 response: body: - string: '{"id":"f722dac3-c3d8-4d48-ad83-065943799ab1","name":"f722dac3-c3d8-4d48-ad83-065943799ab1","status":"InProgress","startTime":"2021-06-21T15:38:19.4379564Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c03a10d3-cd27-4229-ac66-397458d9654b","name":"c03a10d3-cd27-4229-ac66-397458d9654b","status":"InProgress","startTime":"2021-06-28T09:14:06.300517Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 15:38:23 GMT + - Mon, 28 Jun 2021 09:14:10 GMT expires: - '-1' pragma: @@ -473,24 +473,24 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/f722dac3-c3d8-4d48-ad83-065943799ab1?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/c03a10d3-cd27-4229-ac66-397458d9654b?api-version=2021-01-01 response: body: - string: '{"id":"f722dac3-c3d8-4d48-ad83-065943799ab1","name":"f722dac3-c3d8-4d48-ad83-065943799ab1","status":"InProgress","startTime":"2021-06-21T15:38:19.4379564Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c03a10d3-cd27-4229-ac66-397458d9654b","name":"c03a10d3-cd27-4229-ac66-397458d9654b","status":"InProgress","startTime":"2021-06-28T09:14:06.300517Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 15:38:24 GMT + - Mon, 28 Jun 2021 09:14:11 GMT expires: - '-1' pragma: @@ -526,24 +526,24 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/f722dac3-c3d8-4d48-ad83-065943799ab1?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/c03a10d3-cd27-4229-ac66-397458d9654b?api-version=2021-01-01 response: body: - string: '{"id":"f722dac3-c3d8-4d48-ad83-065943799ab1","name":"f722dac3-c3d8-4d48-ad83-065943799ab1","status":"InProgress","startTime":"2021-06-21T15:38:19.4379564Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c03a10d3-cd27-4229-ac66-397458d9654b","name":"c03a10d3-cd27-4229-ac66-397458d9654b","status":"InProgress","startTime":"2021-06-28T09:14:06.300517Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 15:38:26 GMT + - Mon, 28 Jun 2021 09:14:12 GMT expires: - '-1' pragma: @@ -579,24 +579,24 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/f722dac3-c3d8-4d48-ad83-065943799ab1?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/c03a10d3-cd27-4229-ac66-397458d9654b?api-version=2021-01-01 response: body: - string: '{"id":"f722dac3-c3d8-4d48-ad83-065943799ab1","name":"f722dac3-c3d8-4d48-ad83-065943799ab1","status":"InProgress","startTime":"2021-06-21T15:38:19.4379564Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c03a10d3-cd27-4229-ac66-397458d9654b","name":"c03a10d3-cd27-4229-ac66-397458d9654b","status":"InProgress","startTime":"2021-06-28T09:14:06.300517Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 15:38:27 GMT + - Mon, 28 Jun 2021 09:14:13 GMT expires: - '-1' pragma: @@ -632,24 +632,24 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/f722dac3-c3d8-4d48-ad83-065943799ab1?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/c03a10d3-cd27-4229-ac66-397458d9654b?api-version=2021-01-01 response: body: - string: '{"id":"f722dac3-c3d8-4d48-ad83-065943799ab1","name":"f722dac3-c3d8-4d48-ad83-065943799ab1","status":"InProgress","startTime":"2021-06-21T15:38:19.4379564Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c03a10d3-cd27-4229-ac66-397458d9654b","name":"c03a10d3-cd27-4229-ac66-397458d9654b","status":"InProgress","startTime":"2021-06-28T09:14:06.300517Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 15:38:28 GMT + - Mon, 28 Jun 2021 09:14:15 GMT expires: - '-1' pragma: @@ -685,24 +685,24 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/f722dac3-c3d8-4d48-ad83-065943799ab1?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/c03a10d3-cd27-4229-ac66-397458d9654b?api-version=2021-01-01 response: body: - string: '{"id":"f722dac3-c3d8-4d48-ad83-065943799ab1","name":"f722dac3-c3d8-4d48-ad83-065943799ab1","status":"InProgress","startTime":"2021-06-21T15:38:19.4379564Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c03a10d3-cd27-4229-ac66-397458d9654b","name":"c03a10d3-cd27-4229-ac66-397458d9654b","status":"InProgress","startTime":"2021-06-28T09:14:06.300517Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 15:38:30 GMT + - Mon, 28 Jun 2021 09:14:16 GMT expires: - '-1' pragma: @@ -738,24 +738,24 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/f722dac3-c3d8-4d48-ad83-065943799ab1?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/c03a10d3-cd27-4229-ac66-397458d9654b?api-version=2021-01-01 response: body: - string: '{"id":"f722dac3-c3d8-4d48-ad83-065943799ab1","name":"f722dac3-c3d8-4d48-ad83-065943799ab1","status":"InProgress","startTime":"2021-06-21T15:38:19.4379564Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c03a10d3-cd27-4229-ac66-397458d9654b","name":"c03a10d3-cd27-4229-ac66-397458d9654b","status":"InProgress","startTime":"2021-06-28T09:14:06.300517Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 15:38:32 GMT + - Mon, 28 Jun 2021 09:14:17 GMT expires: - '-1' pragma: @@ -791,24 +791,24 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/f722dac3-c3d8-4d48-ad83-065943799ab1?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/c03a10d3-cd27-4229-ac66-397458d9654b?api-version=2021-01-01 response: body: - string: '{"id":"f722dac3-c3d8-4d48-ad83-065943799ab1","name":"f722dac3-c3d8-4d48-ad83-065943799ab1","status":"InProgress","startTime":"2021-06-21T15:38:19.4379564Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c03a10d3-cd27-4229-ac66-397458d9654b","name":"c03a10d3-cd27-4229-ac66-397458d9654b","status":"InProgress","startTime":"2021-06-28T09:14:06.300517Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 15:38:33 GMT + - Mon, 28 Jun 2021 09:14:18 GMT expires: - '-1' pragma: @@ -844,24 +844,24 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/f722dac3-c3d8-4d48-ad83-065943799ab1?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/c03a10d3-cd27-4229-ac66-397458d9654b?api-version=2021-01-01 response: body: - string: '{"id":"f722dac3-c3d8-4d48-ad83-065943799ab1","name":"f722dac3-c3d8-4d48-ad83-065943799ab1","status":"InProgress","startTime":"2021-06-21T15:38:19.4379564Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c03a10d3-cd27-4229-ac66-397458d9654b","name":"c03a10d3-cd27-4229-ac66-397458d9654b","status":"InProgress","startTime":"2021-06-28T09:14:06.300517Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 15:38:34 GMT + - Mon, 28 Jun 2021 09:14:20 GMT expires: - '-1' pragma: @@ -897,24 +897,24 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/f722dac3-c3d8-4d48-ad83-065943799ab1?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/c03a10d3-cd27-4229-ac66-397458d9654b?api-version=2021-01-01 response: body: - string: '{"id":"f722dac3-c3d8-4d48-ad83-065943799ab1","name":"f722dac3-c3d8-4d48-ad83-065943799ab1","status":"InProgress","startTime":"2021-06-21T15:38:19.4379564Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c03a10d3-cd27-4229-ac66-397458d9654b","name":"c03a10d3-cd27-4229-ac66-397458d9654b","status":"InProgress","startTime":"2021-06-28T09:14:06.300517Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 15:38:35 GMT + - Mon, 28 Jun 2021 09:14:21 GMT expires: - '-1' pragma: @@ -950,24 +950,24 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/f722dac3-c3d8-4d48-ad83-065943799ab1?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/c03a10d3-cd27-4229-ac66-397458d9654b?api-version=2021-01-01 response: body: - string: '{"id":"f722dac3-c3d8-4d48-ad83-065943799ab1","name":"f722dac3-c3d8-4d48-ad83-065943799ab1","status":"InProgress","startTime":"2021-06-21T15:38:19.4379564Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c03a10d3-cd27-4229-ac66-397458d9654b","name":"c03a10d3-cd27-4229-ac66-397458d9654b","status":"InProgress","startTime":"2021-06-28T09:14:06.300517Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 15:38:37 GMT + - Mon, 28 Jun 2021 09:14:22 GMT expires: - '-1' pragma: @@ -1003,24 +1003,24 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/f722dac3-c3d8-4d48-ad83-065943799ab1?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/c03a10d3-cd27-4229-ac66-397458d9654b?api-version=2021-01-01 response: body: - string: '{"id":"f722dac3-c3d8-4d48-ad83-065943799ab1","name":"f722dac3-c3d8-4d48-ad83-065943799ab1","status":"InProgress","startTime":"2021-06-21T15:38:19.4379564Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c03a10d3-cd27-4229-ac66-397458d9654b","name":"c03a10d3-cd27-4229-ac66-397458d9654b","status":"InProgress","startTime":"2021-06-28T09:14:06.300517Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 15:38:38 GMT + - Mon, 28 Jun 2021 09:14:23 GMT expires: - '-1' pragma: @@ -1056,24 +1056,24 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/f722dac3-c3d8-4d48-ad83-065943799ab1?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/c03a10d3-cd27-4229-ac66-397458d9654b?api-version=2021-01-01 response: body: - string: '{"id":"f722dac3-c3d8-4d48-ad83-065943799ab1","name":"f722dac3-c3d8-4d48-ad83-065943799ab1","status":"InProgress","startTime":"2021-06-21T15:38:19.4379564Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c03a10d3-cd27-4229-ac66-397458d9654b","name":"c03a10d3-cd27-4229-ac66-397458d9654b","status":"InProgress","startTime":"2021-06-28T09:14:06.300517Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 15:38:39 GMT + - Mon, 28 Jun 2021 09:14:24 GMT expires: - '-1' pragma: @@ -1109,24 +1109,24 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/f722dac3-c3d8-4d48-ad83-065943799ab1?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/c03a10d3-cd27-4229-ac66-397458d9654b?api-version=2021-01-01 response: body: - string: '{"id":"f722dac3-c3d8-4d48-ad83-065943799ab1","name":"f722dac3-c3d8-4d48-ad83-065943799ab1","status":"InProgress","startTime":"2021-06-21T15:38:19.4379564Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c03a10d3-cd27-4229-ac66-397458d9654b","name":"c03a10d3-cd27-4229-ac66-397458d9654b","status":"InProgress","startTime":"2021-06-28T09:14:06.300517Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 15:38:40 GMT + - Mon, 28 Jun 2021 09:14:26 GMT expires: - '-1' pragma: @@ -1162,24 +1162,24 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/f722dac3-c3d8-4d48-ad83-065943799ab1?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/c03a10d3-cd27-4229-ac66-397458d9654b?api-version=2021-01-01 response: body: - string: '{"id":"f722dac3-c3d8-4d48-ad83-065943799ab1","name":"f722dac3-c3d8-4d48-ad83-065943799ab1","status":"InProgress","startTime":"2021-06-21T15:38:19.4379564Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c03a10d3-cd27-4229-ac66-397458d9654b","name":"c03a10d3-cd27-4229-ac66-397458d9654b","status":"InProgress","startTime":"2021-06-28T09:14:06.300517Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 15:38:41 GMT + - Mon, 28 Jun 2021 09:14:27 GMT expires: - '-1' pragma: @@ -1215,24 +1215,24 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/f722dac3-c3d8-4d48-ad83-065943799ab1?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/c03a10d3-cd27-4229-ac66-397458d9654b?api-version=2021-01-01 response: body: - string: '{"id":"f722dac3-c3d8-4d48-ad83-065943799ab1","name":"f722dac3-c3d8-4d48-ad83-065943799ab1","status":"InProgress","startTime":"2021-06-21T15:38:19.4379564Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c03a10d3-cd27-4229-ac66-397458d9654b","name":"c03a10d3-cd27-4229-ac66-397458d9654b","status":"InProgress","startTime":"2021-06-28T09:14:06.300517Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 15:38:43 GMT + - Mon, 28 Jun 2021 09:14:28 GMT expires: - '-1' pragma: @@ -1268,24 +1268,24 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/f722dac3-c3d8-4d48-ad83-065943799ab1?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/c03a10d3-cd27-4229-ac66-397458d9654b?api-version=2021-01-01 response: body: - string: '{"id":"f722dac3-c3d8-4d48-ad83-065943799ab1","name":"f722dac3-c3d8-4d48-ad83-065943799ab1","status":"InProgress","startTime":"2021-06-21T15:38:19.4379564Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c03a10d3-cd27-4229-ac66-397458d9654b","name":"c03a10d3-cd27-4229-ac66-397458d9654b","status":"InProgress","startTime":"2021-06-28T09:14:06.300517Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 15:38:44 GMT + - Mon, 28 Jun 2021 09:14:30 GMT expires: - '-1' pragma: @@ -1321,24 +1321,24 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/f722dac3-c3d8-4d48-ad83-065943799ab1?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/c03a10d3-cd27-4229-ac66-397458d9654b?api-version=2021-01-01 response: body: - string: '{"id":"f722dac3-c3d8-4d48-ad83-065943799ab1","name":"f722dac3-c3d8-4d48-ad83-065943799ab1","status":"InProgress","startTime":"2021-06-21T15:38:19.4379564Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c03a10d3-cd27-4229-ac66-397458d9654b","name":"c03a10d3-cd27-4229-ac66-397458d9654b","status":"InProgress","startTime":"2021-06-28T09:14:06.300517Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 15:38:45 GMT + - Mon, 28 Jun 2021 09:14:32 GMT expires: - '-1' pragma: @@ -1374,24 +1374,24 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/f722dac3-c3d8-4d48-ad83-065943799ab1?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/c03a10d3-cd27-4229-ac66-397458d9654b?api-version=2021-01-01 response: body: - string: '{"id":"f722dac3-c3d8-4d48-ad83-065943799ab1","name":"f722dac3-c3d8-4d48-ad83-065943799ab1","status":"InProgress","startTime":"2021-06-21T15:38:19.4379564Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c03a10d3-cd27-4229-ac66-397458d9654b","name":"c03a10d3-cd27-4229-ac66-397458d9654b","status":"InProgress","startTime":"2021-06-28T09:14:06.300517Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 15:38:46 GMT + - Mon, 28 Jun 2021 09:14:33 GMT expires: - '-1' pragma: @@ -1427,24 +1427,24 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/f722dac3-c3d8-4d48-ad83-065943799ab1?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/c03a10d3-cd27-4229-ac66-397458d9654b?api-version=2021-01-01 response: body: - string: '{"id":"f722dac3-c3d8-4d48-ad83-065943799ab1","name":"f722dac3-c3d8-4d48-ad83-065943799ab1","status":"InProgress","startTime":"2021-06-21T15:38:19.4379564Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c03a10d3-cd27-4229-ac66-397458d9654b","name":"c03a10d3-cd27-4229-ac66-397458d9654b","status":"InProgress","startTime":"2021-06-28T09:14:06.300517Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 15:38:47 GMT + - Mon, 28 Jun 2021 09:14:34 GMT expires: - '-1' pragma: @@ -1480,24 +1480,24 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/f722dac3-c3d8-4d48-ad83-065943799ab1?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/c03a10d3-cd27-4229-ac66-397458d9654b?api-version=2021-01-01 response: body: - string: '{"id":"f722dac3-c3d8-4d48-ad83-065943799ab1","name":"f722dac3-c3d8-4d48-ad83-065943799ab1","status":"InProgress","startTime":"2021-06-21T15:38:19.4379564Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c03a10d3-cd27-4229-ac66-397458d9654b","name":"c03a10d3-cd27-4229-ac66-397458d9654b","status":"InProgress","startTime":"2021-06-28T09:14:06.300517Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 15:38:49 GMT + - Mon, 28 Jun 2021 09:14:35 GMT expires: - '-1' pragma: @@ -1533,24 +1533,24 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/f722dac3-c3d8-4d48-ad83-065943799ab1?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/c03a10d3-cd27-4229-ac66-397458d9654b?api-version=2021-01-01 response: body: - string: '{"id":"f722dac3-c3d8-4d48-ad83-065943799ab1","name":"f722dac3-c3d8-4d48-ad83-065943799ab1","status":"InProgress","startTime":"2021-06-21T15:38:19.4379564Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c03a10d3-cd27-4229-ac66-397458d9654b","name":"c03a10d3-cd27-4229-ac66-397458d9654b","status":"InProgress","startTime":"2021-06-28T09:14:06.300517Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 15:38:50 GMT + - Mon, 28 Jun 2021 09:14:36 GMT expires: - '-1' pragma: @@ -1586,24 +1586,24 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/f722dac3-c3d8-4d48-ad83-065943799ab1?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/c03a10d3-cd27-4229-ac66-397458d9654b?api-version=2021-01-01 response: body: - string: '{"id":"f722dac3-c3d8-4d48-ad83-065943799ab1","name":"f722dac3-c3d8-4d48-ad83-065943799ab1","status":"InProgress","startTime":"2021-06-21T15:38:19.4379564Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c03a10d3-cd27-4229-ac66-397458d9654b","name":"c03a10d3-cd27-4229-ac66-397458d9654b","status":"InProgress","startTime":"2021-06-28T09:14:06.300517Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 15:38:51 GMT + - Mon, 28 Jun 2021 09:14:38 GMT expires: - '-1' pragma: @@ -1639,24 +1639,24 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/f722dac3-c3d8-4d48-ad83-065943799ab1?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/c03a10d3-cd27-4229-ac66-397458d9654b?api-version=2021-01-01 response: body: - string: '{"id":"f722dac3-c3d8-4d48-ad83-065943799ab1","name":"f722dac3-c3d8-4d48-ad83-065943799ab1","status":"InProgress","startTime":"2021-06-21T15:38:19.4379564Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c03a10d3-cd27-4229-ac66-397458d9654b","name":"c03a10d3-cd27-4229-ac66-397458d9654b","status":"InProgress","startTime":"2021-06-28T09:14:06.300517Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 15:38:52 GMT + - Mon, 28 Jun 2021 09:14:39 GMT expires: - '-1' pragma: @@ -1692,24 +1692,24 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/f722dac3-c3d8-4d48-ad83-065943799ab1?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/c03a10d3-cd27-4229-ac66-397458d9654b?api-version=2021-01-01 response: body: - string: '{"id":"f722dac3-c3d8-4d48-ad83-065943799ab1","name":"f722dac3-c3d8-4d48-ad83-065943799ab1","status":"InProgress","startTime":"2021-06-21T15:38:19.4379564Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c03a10d3-cd27-4229-ac66-397458d9654b","name":"c03a10d3-cd27-4229-ac66-397458d9654b","status":"InProgress","startTime":"2021-06-28T09:14:06.300517Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 15:38:53 GMT + - Mon, 28 Jun 2021 09:14:40 GMT expires: - '-1' pragma: @@ -1745,24 +1745,24 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/f722dac3-c3d8-4d48-ad83-065943799ab1?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/c03a10d3-cd27-4229-ac66-397458d9654b?api-version=2021-01-01 response: body: - string: '{"id":"f722dac3-c3d8-4d48-ad83-065943799ab1","name":"f722dac3-c3d8-4d48-ad83-065943799ab1","status":"InProgress","startTime":"2021-06-21T15:38:19.4379564Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c03a10d3-cd27-4229-ac66-397458d9654b","name":"c03a10d3-cd27-4229-ac66-397458d9654b","status":"InProgress","startTime":"2021-06-28T09:14:06.300517Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 15:38:55 GMT + - Mon, 28 Jun 2021 09:14:42 GMT expires: - '-1' pragma: @@ -1798,24 +1798,24 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/f722dac3-c3d8-4d48-ad83-065943799ab1?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/c03a10d3-cd27-4229-ac66-397458d9654b?api-version=2021-01-01 response: body: - string: '{"id":"f722dac3-c3d8-4d48-ad83-065943799ab1","name":"f722dac3-c3d8-4d48-ad83-065943799ab1","status":"InProgress","startTime":"2021-06-21T15:38:19.4379564Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c03a10d3-cd27-4229-ac66-397458d9654b","name":"c03a10d3-cd27-4229-ac66-397458d9654b","status":"InProgress","startTime":"2021-06-28T09:14:06.300517Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 15:38:56 GMT + - Mon, 28 Jun 2021 09:14:43 GMT expires: - '-1' pragma: @@ -1851,24 +1851,24 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/f722dac3-c3d8-4d48-ad83-065943799ab1?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/c03a10d3-cd27-4229-ac66-397458d9654b?api-version=2021-01-01 response: body: - string: '{"id":"f722dac3-c3d8-4d48-ad83-065943799ab1","name":"f722dac3-c3d8-4d48-ad83-065943799ab1","status":"InProgress","startTime":"2021-06-21T15:38:19.4379564Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c03a10d3-cd27-4229-ac66-397458d9654b","name":"c03a10d3-cd27-4229-ac66-397458d9654b","status":"InProgress","startTime":"2021-06-28T09:14:06.300517Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 15:38:57 GMT + - Mon, 28 Jun 2021 09:14:44 GMT expires: - '-1' pragma: @@ -1904,24 +1904,24 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/f722dac3-c3d8-4d48-ad83-065943799ab1?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/c03a10d3-cd27-4229-ac66-397458d9654b?api-version=2021-01-01 response: body: - string: '{"id":"f722dac3-c3d8-4d48-ad83-065943799ab1","name":"f722dac3-c3d8-4d48-ad83-065943799ab1","status":"InProgress","startTime":"2021-06-21T15:38:19.4379564Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c03a10d3-cd27-4229-ac66-397458d9654b","name":"c03a10d3-cd27-4229-ac66-397458d9654b","status":"InProgress","startTime":"2021-06-28T09:14:06.300517Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 15:38:58 GMT + - Mon, 28 Jun 2021 09:14:45 GMT expires: - '-1' pragma: @@ -1957,24 +1957,24 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/f722dac3-c3d8-4d48-ad83-065943799ab1?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/c03a10d3-cd27-4229-ac66-397458d9654b?api-version=2021-01-01 response: body: - string: '{"id":"f722dac3-c3d8-4d48-ad83-065943799ab1","name":"f722dac3-c3d8-4d48-ad83-065943799ab1","status":"InProgress","startTime":"2021-06-21T15:38:19.4379564Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c03a10d3-cd27-4229-ac66-397458d9654b","name":"c03a10d3-cd27-4229-ac66-397458d9654b","status":"InProgress","startTime":"2021-06-28T09:14:06.300517Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 15:38:59 GMT + - Mon, 28 Jun 2021 09:14:47 GMT expires: - '-1' pragma: @@ -2010,24 +2010,24 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/f722dac3-c3d8-4d48-ad83-065943799ab1?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/c03a10d3-cd27-4229-ac66-397458d9654b?api-version=2021-01-01 response: body: - string: '{"id":"f722dac3-c3d8-4d48-ad83-065943799ab1","name":"f722dac3-c3d8-4d48-ad83-065943799ab1","status":"InProgress","startTime":"2021-06-21T15:38:19.4379564Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c03a10d3-cd27-4229-ac66-397458d9654b","name":"c03a10d3-cd27-4229-ac66-397458d9654b","status":"InProgress","startTime":"2021-06-28T09:14:06.300517Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 15:39:01 GMT + - Mon, 28 Jun 2021 09:14:48 GMT expires: - '-1' pragma: @@ -2063,24 +2063,24 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/f722dac3-c3d8-4d48-ad83-065943799ab1?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/c03a10d3-cd27-4229-ac66-397458d9654b?api-version=2021-01-01 response: body: - string: '{"id":"f722dac3-c3d8-4d48-ad83-065943799ab1","name":"f722dac3-c3d8-4d48-ad83-065943799ab1","status":"InProgress","startTime":"2021-06-21T15:38:19.4379564Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c03a10d3-cd27-4229-ac66-397458d9654b","name":"c03a10d3-cd27-4229-ac66-397458d9654b","status":"InProgress","startTime":"2021-06-28T09:14:06.300517Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 15:39:02 GMT + - Mon, 28 Jun 2021 09:14:49 GMT expires: - '-1' pragma: @@ -2116,24 +2116,24 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/f722dac3-c3d8-4d48-ad83-065943799ab1?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/c03a10d3-cd27-4229-ac66-397458d9654b?api-version=2021-01-01 response: body: - string: '{"id":"f722dac3-c3d8-4d48-ad83-065943799ab1","name":"f722dac3-c3d8-4d48-ad83-065943799ab1","status":"InProgress","startTime":"2021-06-21T15:38:19.4379564Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c03a10d3-cd27-4229-ac66-397458d9654b","name":"c03a10d3-cd27-4229-ac66-397458d9654b","status":"InProgress","startTime":"2021-06-28T09:14:06.300517Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 15:39:03 GMT + - Mon, 28 Jun 2021 09:14:50 GMT expires: - '-1' pragma: @@ -2169,24 +2169,24 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/f722dac3-c3d8-4d48-ad83-065943799ab1?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/c03a10d3-cd27-4229-ac66-397458d9654b?api-version=2021-01-01 response: body: - string: '{"id":"f722dac3-c3d8-4d48-ad83-065943799ab1","name":"f722dac3-c3d8-4d48-ad83-065943799ab1","status":"InProgress","startTime":"2021-06-21T15:38:19.4379564Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c03a10d3-cd27-4229-ac66-397458d9654b","name":"c03a10d3-cd27-4229-ac66-397458d9654b","status":"InProgress","startTime":"2021-06-28T09:14:06.300517Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 15:39:04 GMT + - Mon, 28 Jun 2021 09:14:51 GMT expires: - '-1' pragma: @@ -2222,24 +2222,24 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/f722dac3-c3d8-4d48-ad83-065943799ab1?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/c03a10d3-cd27-4229-ac66-397458d9654b?api-version=2021-01-01 response: body: - string: '{"id":"f722dac3-c3d8-4d48-ad83-065943799ab1","name":"f722dac3-c3d8-4d48-ad83-065943799ab1","status":"InProgress","startTime":"2021-06-21T15:38:19.4379564Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c03a10d3-cd27-4229-ac66-397458d9654b","name":"c03a10d3-cd27-4229-ac66-397458d9654b","status":"InProgress","startTime":"2021-06-28T09:14:06.300517Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 15:39:05 GMT + - Mon, 28 Jun 2021 09:14:53 GMT expires: - '-1' pragma: @@ -2275,24 +2275,24 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/f722dac3-c3d8-4d48-ad83-065943799ab1?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/c03a10d3-cd27-4229-ac66-397458d9654b?api-version=2021-01-01 response: body: - string: '{"id":"f722dac3-c3d8-4d48-ad83-065943799ab1","name":"f722dac3-c3d8-4d48-ad83-065943799ab1","status":"InProgress","startTime":"2021-06-21T15:38:19.4379564Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c03a10d3-cd27-4229-ac66-397458d9654b","name":"c03a10d3-cd27-4229-ac66-397458d9654b","status":"InProgress","startTime":"2021-06-28T09:14:06.300517Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 15:39:07 GMT + - Mon, 28 Jun 2021 09:14:54 GMT expires: - '-1' pragma: @@ -2328,24 +2328,24 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/f722dac3-c3d8-4d48-ad83-065943799ab1?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/c03a10d3-cd27-4229-ac66-397458d9654b?api-version=2021-01-01 response: body: - string: '{"id":"f722dac3-c3d8-4d48-ad83-065943799ab1","name":"f722dac3-c3d8-4d48-ad83-065943799ab1","status":"InProgress","startTime":"2021-06-21T15:38:19.4379564Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c03a10d3-cd27-4229-ac66-397458d9654b","name":"c03a10d3-cd27-4229-ac66-397458d9654b","status":"InProgress","startTime":"2021-06-28T09:14:06.300517Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 15:39:08 GMT + - Mon, 28 Jun 2021 09:14:55 GMT expires: - '-1' pragma: @@ -2381,24 +2381,24 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/f722dac3-c3d8-4d48-ad83-065943799ab1?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/c03a10d3-cd27-4229-ac66-397458d9654b?api-version=2021-01-01 response: body: - string: '{"id":"f722dac3-c3d8-4d48-ad83-065943799ab1","name":"f722dac3-c3d8-4d48-ad83-065943799ab1","status":"InProgress","startTime":"2021-06-21T15:38:19.4379564Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c03a10d3-cd27-4229-ac66-397458d9654b","name":"c03a10d3-cd27-4229-ac66-397458d9654b","status":"InProgress","startTime":"2021-06-28T09:14:06.300517Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 15:39:09 GMT + - Mon, 28 Jun 2021 09:14:56 GMT expires: - '-1' pragma: @@ -2434,24 +2434,24 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/f722dac3-c3d8-4d48-ad83-065943799ab1?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/c03a10d3-cd27-4229-ac66-397458d9654b?api-version=2021-01-01 response: body: - string: '{"id":"f722dac3-c3d8-4d48-ad83-065943799ab1","name":"f722dac3-c3d8-4d48-ad83-065943799ab1","status":"InProgress","startTime":"2021-06-21T15:38:19.4379564Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c03a10d3-cd27-4229-ac66-397458d9654b","name":"c03a10d3-cd27-4229-ac66-397458d9654b","status":"InProgress","startTime":"2021-06-28T09:14:06.300517Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 15:39:10 GMT + - Mon, 28 Jun 2021 09:14:57 GMT expires: - '-1' pragma: @@ -2487,24 +2487,24 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/f722dac3-c3d8-4d48-ad83-065943799ab1?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/c03a10d3-cd27-4229-ac66-397458d9654b?api-version=2021-01-01 response: body: - string: '{"id":"f722dac3-c3d8-4d48-ad83-065943799ab1","name":"f722dac3-c3d8-4d48-ad83-065943799ab1","status":"InProgress","startTime":"2021-06-21T15:38:19.4379564Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c03a10d3-cd27-4229-ac66-397458d9654b","name":"c03a10d3-cd27-4229-ac66-397458d9654b","status":"InProgress","startTime":"2021-06-28T09:14:06.300517Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 15:39:11 GMT + - Mon, 28 Jun 2021 09:14:59 GMT expires: - '-1' pragma: @@ -2540,24 +2540,24 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/f722dac3-c3d8-4d48-ad83-065943799ab1?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/c03a10d3-cd27-4229-ac66-397458d9654b?api-version=2021-01-01 response: body: - string: '{"id":"f722dac3-c3d8-4d48-ad83-065943799ab1","name":"f722dac3-c3d8-4d48-ad83-065943799ab1","status":"InProgress","startTime":"2021-06-21T15:38:19.4379564Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c03a10d3-cd27-4229-ac66-397458d9654b","name":"c03a10d3-cd27-4229-ac66-397458d9654b","status":"InProgress","startTime":"2021-06-28T09:14:06.300517Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 15:39:13 GMT + - Mon, 28 Jun 2021 09:15:00 GMT expires: - '-1' pragma: @@ -2593,24 +2593,24 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/f722dac3-c3d8-4d48-ad83-065943799ab1?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/c03a10d3-cd27-4229-ac66-397458d9654b?api-version=2021-01-01 response: body: - string: '{"id":"f722dac3-c3d8-4d48-ad83-065943799ab1","name":"f722dac3-c3d8-4d48-ad83-065943799ab1","status":"InProgress","startTime":"2021-06-21T15:38:19.4379564Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c03a10d3-cd27-4229-ac66-397458d9654b","name":"c03a10d3-cd27-4229-ac66-397458d9654b","status":"InProgress","startTime":"2021-06-28T09:14:06.300517Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 15:39:14 GMT + - Mon, 28 Jun 2021 09:15:01 GMT expires: - '-1' pragma: @@ -2646,24 +2646,24 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/f722dac3-c3d8-4d48-ad83-065943799ab1?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/c03a10d3-cd27-4229-ac66-397458d9654b?api-version=2021-01-01 response: body: - string: '{"id":"f722dac3-c3d8-4d48-ad83-065943799ab1","name":"f722dac3-c3d8-4d48-ad83-065943799ab1","status":"InProgress","startTime":"2021-06-21T15:38:19.4379564Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c03a10d3-cd27-4229-ac66-397458d9654b","name":"c03a10d3-cd27-4229-ac66-397458d9654b","status":"InProgress","startTime":"2021-06-28T09:14:06.300517Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 15:39:15 GMT + - Mon, 28 Jun 2021 09:15:02 GMT expires: - '-1' pragma: @@ -2699,24 +2699,24 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/f722dac3-c3d8-4d48-ad83-065943799ab1?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/c03a10d3-cd27-4229-ac66-397458d9654b?api-version=2021-01-01 response: body: - string: '{"id":"f722dac3-c3d8-4d48-ad83-065943799ab1","name":"f722dac3-c3d8-4d48-ad83-065943799ab1","status":"InProgress","startTime":"2021-06-21T15:38:19.4379564Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c03a10d3-cd27-4229-ac66-397458d9654b","name":"c03a10d3-cd27-4229-ac66-397458d9654b","status":"InProgress","startTime":"2021-06-28T09:14:06.300517Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 15:39:16 GMT + - Mon, 28 Jun 2021 09:15:03 GMT expires: - '-1' pragma: @@ -2752,24 +2752,24 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/f722dac3-c3d8-4d48-ad83-065943799ab1?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/c03a10d3-cd27-4229-ac66-397458d9654b?api-version=2021-01-01 response: body: - string: '{"id":"f722dac3-c3d8-4d48-ad83-065943799ab1","name":"f722dac3-c3d8-4d48-ad83-065943799ab1","status":"InProgress","startTime":"2021-06-21T15:38:19.4379564Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c03a10d3-cd27-4229-ac66-397458d9654b","name":"c03a10d3-cd27-4229-ac66-397458d9654b","status":"InProgress","startTime":"2021-06-28T09:14:06.300517Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 15:39:17 GMT + - Mon, 28 Jun 2021 09:15:05 GMT expires: - '-1' pragma: @@ -2805,24 +2805,24 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/f722dac3-c3d8-4d48-ad83-065943799ab1?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/c03a10d3-cd27-4229-ac66-397458d9654b?api-version=2021-01-01 response: body: - string: '{"id":"f722dac3-c3d8-4d48-ad83-065943799ab1","name":"f722dac3-c3d8-4d48-ad83-065943799ab1","status":"InProgress","startTime":"2021-06-21T15:38:19.4379564Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c03a10d3-cd27-4229-ac66-397458d9654b","name":"c03a10d3-cd27-4229-ac66-397458d9654b","status":"InProgress","startTime":"2021-06-28T09:14:06.300517Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 15:39:19 GMT + - Mon, 28 Jun 2021 09:15:06 GMT expires: - '-1' pragma: @@ -2858,24 +2858,24 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/f722dac3-c3d8-4d48-ad83-065943799ab1?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/c03a10d3-cd27-4229-ac66-397458d9654b?api-version=2021-01-01 response: body: - string: '{"id":"f722dac3-c3d8-4d48-ad83-065943799ab1","name":"f722dac3-c3d8-4d48-ad83-065943799ab1","status":"InProgress","startTime":"2021-06-21T15:38:19.4379564Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c03a10d3-cd27-4229-ac66-397458d9654b","name":"c03a10d3-cd27-4229-ac66-397458d9654b","status":"InProgress","startTime":"2021-06-28T09:14:06.300517Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 15:39:20 GMT + - Mon, 28 Jun 2021 09:15:07 GMT expires: - '-1' pragma: @@ -2911,24 +2911,24 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/f722dac3-c3d8-4d48-ad83-065943799ab1?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/c03a10d3-cd27-4229-ac66-397458d9654b?api-version=2021-01-01 response: body: - string: '{"id":"f722dac3-c3d8-4d48-ad83-065943799ab1","name":"f722dac3-c3d8-4d48-ad83-065943799ab1","status":"InProgress","startTime":"2021-06-21T15:38:19.4379564Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c03a10d3-cd27-4229-ac66-397458d9654b","name":"c03a10d3-cd27-4229-ac66-397458d9654b","status":"InProgress","startTime":"2021-06-28T09:14:06.300517Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 15:39:21 GMT + - Mon, 28 Jun 2021 09:15:08 GMT expires: - '-1' pragma: @@ -2964,24 +2964,24 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/f722dac3-c3d8-4d48-ad83-065943799ab1?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/c03a10d3-cd27-4229-ac66-397458d9654b?api-version=2021-01-01 response: body: - string: '{"id":"f722dac3-c3d8-4d48-ad83-065943799ab1","name":"f722dac3-c3d8-4d48-ad83-065943799ab1","status":"InProgress","startTime":"2021-06-21T15:38:19.4379564Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c03a10d3-cd27-4229-ac66-397458d9654b","name":"c03a10d3-cd27-4229-ac66-397458d9654b","status":"InProgress","startTime":"2021-06-28T09:14:06.300517Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 15:39:22 GMT + - Mon, 28 Jun 2021 09:15:10 GMT expires: - '-1' pragma: @@ -3017,24 +3017,24 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/f722dac3-c3d8-4d48-ad83-065943799ab1?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/c03a10d3-cd27-4229-ac66-397458d9654b?api-version=2021-01-01 response: body: - string: '{"id":"f722dac3-c3d8-4d48-ad83-065943799ab1","name":"f722dac3-c3d8-4d48-ad83-065943799ab1","status":"InProgress","startTime":"2021-06-21T15:38:19.4379564Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c03a10d3-cd27-4229-ac66-397458d9654b","name":"c03a10d3-cd27-4229-ac66-397458d9654b","status":"InProgress","startTime":"2021-06-28T09:14:06.300517Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 15:39:23 GMT + - Mon, 28 Jun 2021 09:15:11 GMT expires: - '-1' pragma: @@ -3070,24 +3070,24 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/f722dac3-c3d8-4d48-ad83-065943799ab1?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/c03a10d3-cd27-4229-ac66-397458d9654b?api-version=2021-01-01 response: body: - string: '{"id":"f722dac3-c3d8-4d48-ad83-065943799ab1","name":"f722dac3-c3d8-4d48-ad83-065943799ab1","status":"InProgress","startTime":"2021-06-21T15:38:19.4379564Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c03a10d3-cd27-4229-ac66-397458d9654b","name":"c03a10d3-cd27-4229-ac66-397458d9654b","status":"InProgress","startTime":"2021-06-28T09:14:06.300517Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 15:39:25 GMT + - Mon, 28 Jun 2021 09:15:12 GMT expires: - '-1' pragma: @@ -3123,24 +3123,24 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/f722dac3-c3d8-4d48-ad83-065943799ab1?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/c03a10d3-cd27-4229-ac66-397458d9654b?api-version=2021-01-01 response: body: - string: '{"id":"f722dac3-c3d8-4d48-ad83-065943799ab1","name":"f722dac3-c3d8-4d48-ad83-065943799ab1","status":"InProgress","startTime":"2021-06-21T15:38:19.4379564Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c03a10d3-cd27-4229-ac66-397458d9654b","name":"c03a10d3-cd27-4229-ac66-397458d9654b","status":"InProgress","startTime":"2021-06-28T09:14:06.300517Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 15:39:26 GMT + - Mon, 28 Jun 2021 09:15:13 GMT expires: - '-1' pragma: @@ -3176,24 +3176,24 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/f722dac3-c3d8-4d48-ad83-065943799ab1?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/c03a10d3-cd27-4229-ac66-397458d9654b?api-version=2021-01-01 response: body: - string: '{"id":"f722dac3-c3d8-4d48-ad83-065943799ab1","name":"f722dac3-c3d8-4d48-ad83-065943799ab1","status":"InProgress","startTime":"2021-06-21T15:38:19.4379564Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c03a10d3-cd27-4229-ac66-397458d9654b","name":"c03a10d3-cd27-4229-ac66-397458d9654b","status":"InProgress","startTime":"2021-06-28T09:14:06.300517Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 15:39:27 GMT + - Mon, 28 Jun 2021 09:15:14 GMT expires: - '-1' pragma: @@ -3229,24 +3229,24 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/f722dac3-c3d8-4d48-ad83-065943799ab1?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/c03a10d3-cd27-4229-ac66-397458d9654b?api-version=2021-01-01 response: body: - string: '{"id":"f722dac3-c3d8-4d48-ad83-065943799ab1","name":"f722dac3-c3d8-4d48-ad83-065943799ab1","status":"InProgress","startTime":"2021-06-21T15:38:19.4379564Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c03a10d3-cd27-4229-ac66-397458d9654b","name":"c03a10d3-cd27-4229-ac66-397458d9654b","status":"InProgress","startTime":"2021-06-28T09:14:06.300517Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 15:39:28 GMT + - Mon, 28 Jun 2021 09:15:16 GMT expires: - '-1' pragma: @@ -3282,24 +3282,24 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/f722dac3-c3d8-4d48-ad83-065943799ab1?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/c03a10d3-cd27-4229-ac66-397458d9654b?api-version=2021-01-01 response: body: - string: '{"id":"f722dac3-c3d8-4d48-ad83-065943799ab1","name":"f722dac3-c3d8-4d48-ad83-065943799ab1","status":"InProgress","startTime":"2021-06-21T15:38:19.4379564Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c03a10d3-cd27-4229-ac66-397458d9654b","name":"c03a10d3-cd27-4229-ac66-397458d9654b","status":"InProgress","startTime":"2021-06-28T09:14:06.300517Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 15:39:30 GMT + - Mon, 28 Jun 2021 09:15:17 GMT expires: - '-1' pragma: @@ -3335,24 +3335,24 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/f722dac3-c3d8-4d48-ad83-065943799ab1?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/c03a10d3-cd27-4229-ac66-397458d9654b?api-version=2021-01-01 response: body: - string: '{"id":"f722dac3-c3d8-4d48-ad83-065943799ab1","name":"f722dac3-c3d8-4d48-ad83-065943799ab1","status":"InProgress","startTime":"2021-06-21T15:38:19.4379564Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c03a10d3-cd27-4229-ac66-397458d9654b","name":"c03a10d3-cd27-4229-ac66-397458d9654b","status":"InProgress","startTime":"2021-06-28T09:14:06.300517Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 15:39:32 GMT + - Mon, 28 Jun 2021 09:15:18 GMT expires: - '-1' pragma: @@ -3388,24 +3388,24 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/f722dac3-c3d8-4d48-ad83-065943799ab1?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/c03a10d3-cd27-4229-ac66-397458d9654b?api-version=2021-01-01 response: body: - string: '{"id":"f722dac3-c3d8-4d48-ad83-065943799ab1","name":"f722dac3-c3d8-4d48-ad83-065943799ab1","status":"InProgress","startTime":"2021-06-21T15:38:19.4379564Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c03a10d3-cd27-4229-ac66-397458d9654b","name":"c03a10d3-cd27-4229-ac66-397458d9654b","status":"InProgress","startTime":"2021-06-28T09:14:06.300517Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 15:39:33 GMT + - Mon, 28 Jun 2021 09:15:19 GMT expires: - '-1' pragma: @@ -3441,24 +3441,24 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/f722dac3-c3d8-4d48-ad83-065943799ab1?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/c03a10d3-cd27-4229-ac66-397458d9654b?api-version=2021-01-01 response: body: - string: '{"id":"f722dac3-c3d8-4d48-ad83-065943799ab1","name":"f722dac3-c3d8-4d48-ad83-065943799ab1","status":"Succeeded","startTime":"2021-06-21T15:38:19.4379564Z","endTime":"2021-06-21T15:38:19.4379564Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"789de630-9178-4925-98c0-97ce6ecc49f8"}}' + string: '{"id":"c03a10d3-cd27-4229-ac66-397458d9654b","name":"c03a10d3-cd27-4229-ac66-397458d9654b","status":"InProgress","startTime":"2021-06-28T09:14:06.300517Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '304' + - '187' content-type: - application/json date: - - Mon, 21 Jun 2021 15:39:34 GMT + - Mon, 28 Jun 2021 09:15:21 GMT expires: - '-1' pragma: @@ -3494,16 +3494,69 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/789de630-9178-4925-98c0-97ce6ecc49f8?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/c03a10d3-cd27-4229-ac66-397458d9654b?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/789de630-9178-4925-98c0-97ce6ecc49f8","name":"789de630-9178-4925-98c0-97ce6ecc49f8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1M13.7473016S","extendedInfo":{"tasksList":[],"propertyBag":{"Policy - Name":"HourlyLogBackup"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"ConfigureBackup","status":"Completed","startTime":"2021-06-21T15:38:19.4379564Z","endTime":"2021-06-21T15:39:33.185258Z","activityId":"b3404514-d2a6-11eb-ad92-c8f750f92764"}}' + string: '{"id":"c03a10d3-cd27-4229-ac66-397458d9654b","name":"c03a10d3-cd27-4229-ac66-397458d9654b","status":"Succeeded","startTime":"2021-06-28T09:14:06.300517Z","endTime":"2021-06-28T09:14:06.300517Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"76a108e3-c529-479b-a265-0d2ce223d376"}}' + headers: + cache-control: + - no-cache + content-length: + - '302' + content-type: + - application/json + date: + - Mon, 28 Jun 2021 09:15:22 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '88' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/76a108e3-c529-479b-a265-0d2ce223d376?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/76a108e3-c529-479b-a265-0d2ce223d376","name":"76a108e3-c529-479b-a265-0d2ce223d376","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1M15.3783097S","extendedInfo":{"tasksList":[],"propertyBag":{"Policy + Name":"HourlyLogBackup"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"ConfigureBackup","status":"Completed","startTime":"2021-06-28T09:14:06.300517Z","endTime":"2021-06-28T09:15:21.6788267Z","activityId":"2e981c02-d7f1-11eb-994e-00155d657312"}}' headers: cache-control: - no-cache @@ -3512,7 +3565,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 15:39:34 GMT + - Mon, 28 Jun 2021 09:15:23 GMT expires: - '-1' pragma: @@ -3529,7 +3582,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '149' x-powered-by: - ASP.NET status: @@ -3549,8 +3602,8 @@ interactions: ParameterSetName: - -n -v -g --backup-management-type --query User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET @@ -3566,7 +3619,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 15:39:34 GMT + - Mon, 28 Jun 2021 09:15:23 GMT expires: - '-1' pragma: @@ -3602,15 +3655,15 @@ interactions: ParameterSetName: - -v -g -i -c --backup-type --enable-compression User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bsarath-rg%3Bsarathvm/protectedItems/sqldatabase%3Bmssqlserver%3Bmsdb?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;sarath-rg;sarathvm/protectedItems/SQLDataBase;mssqlserver;msdb","name":"SQLDataBase;mssqlserver;msdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"msdb","serverName":"sarathvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","lastBackupErrorDetail":{"code":"Success","message":""},"protectedItemDataSourceId":"70370112201189","protectedItemHealthStatus":"IRPending","extendedInfo":{"recoveryPointCount":0,"policyState":"Consistent","recoveryModel":"SIMPLE"},"protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;sarath-rg;sarathvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathvm","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupPolicies/HourlyLogBackup","isArchiveEnabled":false}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;sarath-rg;sarathvm/protectedItems/SQLDataBase;mssqlserver;msdb","name":"SQLDataBase;mssqlserver;msdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"msdb","serverName":"sarathvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","lastBackupErrorDetail":{"code":"Success","message":""},"protectedItemDataSourceId":"70369028595001","protectedItemHealthStatus":"IRPending","extendedInfo":{"recoveryPointCount":0,"policyState":"Consistent","recoveryModel":"SIMPLE"},"protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;sarath-rg;sarathvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathvm","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupPolicies/HourlyLogBackup","isArchiveEnabled":false}}' headers: cache-control: - no-cache @@ -3619,7 +3672,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 15:39:35 GMT + - Mon, 28 Jun 2021 09:15:23 GMT expires: - '-1' pragma: @@ -3643,7 +3696,7 @@ interactions: message: OK - request: body: '{"properties": {"objectType": "AzureWorkloadBackupRequest", "backupType": - "Full", "enableCompression": false, "recoveryPointExpiryTimeInUTC": "2021-07-21T15:39:35.944019Z"}}' + "Full", "enableCompression": false, "recoveryPointExpiryTimeInUTC": "2021-07-28T09:15:23.832785Z"}}' headers: Accept: - application/json @@ -3660,8 +3713,8 @@ interactions: ParameterSetName: - -v -g -i -c --backup-type --enable-compression User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: POST @@ -3671,17 +3724,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;sarath-rg;sarathvm/protectedItems/SQLDataBase;mssqlserver;msdb/operationsStatus/8a7a532f-852b-4cbc-9d69-92fce46d4075?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;sarath-rg;sarathvm/protectedItems/SQLDataBase;mssqlserver;msdb/operationsStatus/7ffddd6b-0437-43fe-9649-ad032715c646?api-version=2021-01-01 cache-control: - no-cache content-length: - '0' date: - - Mon, 21 Jun 2021 15:39:35 GMT + - Mon, 28 Jun 2021 09:15:24 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;sarath-rg;sarathvm/protectedItems/SQLDataBase;mssqlserver;msdb/operationResults/8a7a532f-852b-4cbc-9d69-92fce46d4075?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;sarath-rg;sarathvm/protectedItems/SQLDataBase;mssqlserver;msdb/operationResults/7ffddd6b-0437-43fe-9649-ad032715c646?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -3709,15 +3762,15 @@ interactions: ParameterSetName: - -v -g -i -c --backup-type --enable-compression User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8a7a532f-852b-4cbc-9d69-92fce46d4075?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/7ffddd6b-0437-43fe-9649-ad032715c646?api-version=2021-01-01 response: body: - string: '{"id":"8a7a532f-852b-4cbc-9d69-92fce46d4075","name":"8a7a532f-852b-4cbc-9d69-92fce46d4075","status":"InProgress","startTime":"2021-06-21T15:39:36.6402345Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"7ffddd6b-0437-43fe-9649-ad032715c646","name":"7ffddd6b-0437-43fe-9649-ad032715c646","status":"InProgress","startTime":"2021-06-28T09:15:24.6857256Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3726,7 +3779,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 15:39:36 GMT + - Mon, 28 Jun 2021 09:15:24 GMT expires: - '-1' pragma: @@ -3742,7 +3795,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '126' + - '149' x-powered-by: - ASP.NET status: @@ -3762,15 +3815,15 @@ interactions: ParameterSetName: - -v -g -i -c --backup-type --enable-compression User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8a7a532f-852b-4cbc-9d69-92fce46d4075?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/7ffddd6b-0437-43fe-9649-ad032715c646?api-version=2021-01-01 response: body: - string: '{"id":"8a7a532f-852b-4cbc-9d69-92fce46d4075","name":"8a7a532f-852b-4cbc-9d69-92fce46d4075","status":"Succeeded","startTime":"2021-06-21T15:39:36.6402345Z","endTime":"2021-06-21T15:39:36.6402345Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"a919f247-47a1-4e23-81e6-9ec5ede004fa"}}' + string: '{"id":"7ffddd6b-0437-43fe-9649-ad032715c646","name":"7ffddd6b-0437-43fe-9649-ad032715c646","status":"Succeeded","startTime":"2021-06-28T09:15:24.6857256Z","endTime":"2021-06-28T09:15:24.6857256Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"df4337f1-e63c-47f3-8394-758abe4990d5"}}' headers: cache-control: - no-cache @@ -3779,7 +3832,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 15:39:37 GMT + - Mon, 28 Jun 2021 09:15:26 GMT expires: - '-1' pragma: @@ -3795,7 +3848,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '125' + - '148' x-powered-by: - ASP.NET status: @@ -3815,26 +3868,26 @@ interactions: ParameterSetName: - -v -g -i -c --backup-type --enable-compression User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/a919f247-47a1-4e23-81e6-9ec5ede004fa?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/df4337f1-e63c-47f3-8394-758abe4990d5?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/a919f247-47a1-4e23-81e6-9ec5ede004fa","name":"a919f247-47a1-4e23-81e6-9ec5ede004fa","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SQLDataBase","duration":"PT2.1587343S","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/df4337f1-e63c-47f3-8394-758abe4990d5","name":"df4337f1-e63c-47f3-8394-758abe4990d5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SQLDataBase","duration":"PT2.444701S","extendedInfo":{"tasksList":[{"taskId":"Transfer data to vault","status":"InProgress"}],"propertyBag":{}},"isUserTriggered":true,"entityFriendlyName":"msdb - [sarathvm]","backupManagementType":"AzureWorkload","operation":"Backup (Full)","status":"InProgress","startTime":"2021-06-21T15:39:36.6402345Z","activityId":"e14d5e2e-d2a6-11eb-823d-c8f750f92764"}}' + [sarathvm]","backupManagementType":"AzureWorkload","operation":"Backup (Full)","status":"InProgress","startTime":"2021-06-28T09:15:24.6857256Z","activityId":"5e33a5a6-d7f1-11eb-a6eb-00155d657312"}}' headers: cache-control: - no-cache content-length: - - '759' + - '758' content-type: - application/json date: - - Mon, 21 Jun 2021 15:39:37 GMT + - Mon, 28 Jun 2021 09:15:26 GMT expires: - '-1' pragma: @@ -3851,7 +3904,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '149' x-powered-by: - ASP.NET status: @@ -3871,17 +3924,17 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/a919f247-47a1-4e23-81e6-9ec5ede004fa?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/df4337f1-e63c-47f3-8394-758abe4990d5?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/a919f247-47a1-4e23-81e6-9ec5ede004fa","name":"a919f247-47a1-4e23-81e6-9ec5ede004fa","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SQLDataBase","duration":"PT2.5103347S","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/df4337f1-e63c-47f3-8394-758abe4990d5","name":"df4337f1-e63c-47f3-8394-758abe4990d5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SQLDataBase","duration":"PT2.8659824S","extendedInfo":{"tasksList":[{"taskId":"Transfer data to vault","status":"InProgress"}],"propertyBag":{}},"isUserTriggered":true,"entityFriendlyName":"msdb - [sarathvm]","backupManagementType":"AzureWorkload","operation":"Backup (Full)","status":"InProgress","startTime":"2021-06-21T15:39:36.6402345Z","activityId":"e14d5e2e-d2a6-11eb-823d-c8f750f92764"}}' + [sarathvm]","backupManagementType":"AzureWorkload","operation":"Backup (Full)","status":"InProgress","startTime":"2021-06-28T09:15:24.6857256Z","activityId":"5e33a5a6-d7f1-11eb-a6eb-00155d657312"}}' headers: cache-control: - no-cache @@ -3890,7 +3943,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 15:39:38 GMT + - Mon, 28 Jun 2021 09:15:26 GMT expires: - '-1' pragma: @@ -3927,17 +3980,17 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/a919f247-47a1-4e23-81e6-9ec5ede004fa?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/df4337f1-e63c-47f3-8394-758abe4990d5?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/a919f247-47a1-4e23-81e6-9ec5ede004fa","name":"a919f247-47a1-4e23-81e6-9ec5ede004fa","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SQLDataBase","duration":"PT2.7236846S","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/df4337f1-e63c-47f3-8394-758abe4990d5","name":"df4337f1-e63c-47f3-8394-758abe4990d5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SQLDataBase","duration":"PT3.0971598S","extendedInfo":{"tasksList":[{"taskId":"Transfer data to vault","status":"InProgress"}],"propertyBag":{}},"isUserTriggered":true,"entityFriendlyName":"msdb - [sarathvm]","backupManagementType":"AzureWorkload","operation":"Backup (Full)","status":"InProgress","startTime":"2021-06-21T15:39:36.6402345Z","activityId":"e14d5e2e-d2a6-11eb-823d-c8f750f92764"}}' + [sarathvm]","backupManagementType":"AzureWorkload","operation":"Backup (Full)","status":"InProgress","startTime":"2021-06-28T09:15:24.6857256Z","activityId":"5e33a5a6-d7f1-11eb-a6eb-00155d657312"}}' headers: cache-control: - no-cache @@ -3946,7 +3999,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 15:39:38 GMT + - Mon, 28 Jun 2021 09:15:26 GMT expires: - '-1' pragma: @@ -3983,17 +4036,17 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/a919f247-47a1-4e23-81e6-9ec5ede004fa?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/df4337f1-e63c-47f3-8394-758abe4990d5?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/a919f247-47a1-4e23-81e6-9ec5ede004fa","name":"a919f247-47a1-4e23-81e6-9ec5ede004fa","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SQLDataBase","duration":"PT32.922189S","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/df4337f1-e63c-47f3-8394-758abe4990d5","name":"df4337f1-e63c-47f3-8394-758abe4990d5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SQLDataBase","duration":"PT33.344506S","extendedInfo":{"tasksList":[{"taskId":"Transfer data to vault","status":"InProgress"}],"propertyBag":{}},"isUserTriggered":true,"entityFriendlyName":"msdb - [sarathvm]","backupManagementType":"AzureWorkload","operation":"Backup (Full)","status":"InProgress","startTime":"2021-06-21T15:39:36.6402345Z","activityId":"e14d5e2e-d2a6-11eb-823d-c8f750f92764"}}' + [sarathvm]","backupManagementType":"AzureWorkload","operation":"Backup (Full)","status":"InProgress","startTime":"2021-06-28T09:15:24.6857256Z","activityId":"5e33a5a6-d7f1-11eb-a6eb-00155d657312"}}' headers: cache-control: - no-cache @@ -4002,7 +4055,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 15:40:09 GMT + - Mon, 28 Jun 2021 09:15:57 GMT expires: - '-1' pragma: @@ -4039,17 +4092,17 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/a919f247-47a1-4e23-81e6-9ec5ede004fa?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/df4337f1-e63c-47f3-8394-758abe4990d5?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/a919f247-47a1-4e23-81e6-9ec5ede004fa","name":"a919f247-47a1-4e23-81e6-9ec5ede004fa","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SQLDataBase","duration":"PT1M3.1589024S","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/df4337f1-e63c-47f3-8394-758abe4990d5","name":"df4337f1-e63c-47f3-8394-758abe4990d5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SQLDataBase","duration":"PT1M3.6096644S","extendedInfo":{"tasksList":[{"taskId":"Transfer data to vault","status":"InProgress"}],"propertyBag":{}},"isUserTriggered":true,"entityFriendlyName":"msdb - [sarathvm]","backupManagementType":"AzureWorkload","operation":"Backup (Full)","status":"InProgress","startTime":"2021-06-21T15:39:36.6402345Z","activityId":"e14d5e2e-d2a6-11eb-823d-c8f750f92764"}}' + [sarathvm]","backupManagementType":"AzureWorkload","operation":"Backup (Full)","status":"InProgress","startTime":"2021-06-28T09:15:24.6857256Z","activityId":"5e33a5a6-d7f1-11eb-a6eb-00155d657312"}}' headers: cache-control: - no-cache @@ -4058,7 +4111,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 15:40:39 GMT + - Mon, 28 Jun 2021 09:16:27 GMT expires: - '-1' pragma: @@ -4095,17 +4148,17 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/a919f247-47a1-4e23-81e6-9ec5ede004fa?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/df4337f1-e63c-47f3-8394-758abe4990d5?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/a919f247-47a1-4e23-81e6-9ec5ede004fa","name":"a919f247-47a1-4e23-81e6-9ec5ede004fa","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SQLDataBase","duration":"PT1M33.6714627S","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/df4337f1-e63c-47f3-8394-758abe4990d5","name":"df4337f1-e63c-47f3-8394-758abe4990d5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SQLDataBase","duration":"PT1M33.8644741S","extendedInfo":{"tasksList":[{"taskId":"Transfer data to vault","status":"InProgress"}],"propertyBag":{}},"isUserTriggered":true,"entityFriendlyName":"msdb - [sarathvm]","backupManagementType":"AzureWorkload","operation":"Backup (Full)","status":"InProgress","startTime":"2021-06-21T15:39:36.6402345Z","activityId":"e14d5e2e-d2a6-11eb-823d-c8f750f92764"}}' + [sarathvm]","backupManagementType":"AzureWorkload","operation":"Backup (Full)","status":"InProgress","startTime":"2021-06-28T09:15:24.6857256Z","activityId":"5e33a5a6-d7f1-11eb-a6eb-00155d657312"}}' headers: cache-control: - no-cache @@ -4114,7 +4167,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 15:41:10 GMT + - Mon, 28 Jun 2021 09:16:57 GMT expires: - '-1' pragma: @@ -4151,18 +4204,18 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/a919f247-47a1-4e23-81e6-9ec5ede004fa?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/df4337f1-e63c-47f3-8394-758abe4990d5?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/a919f247-47a1-4e23-81e6-9ec5ede004fa","name":"a919f247-47a1-4e23-81e6-9ec5ede004fa","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SQLDataBase","duration":"PT2M1.9276201S","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/df4337f1-e63c-47f3-8394-758abe4990d5","name":"df4337f1-e63c-47f3-8394-758abe4990d5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SQLDataBase","duration":"PT2M2.1090997S","extendedInfo":{"tasksList":[{"taskId":"Transfer data to vault","status":"Completed"}],"propertyBag":{"Data Transferred (in MB)":"28.1147"}},"isUserTriggered":true,"entityFriendlyName":"msdb [sarathvm]","backupManagementType":"AzureWorkload","operation":"Backup - (Full)","status":"Completed","startTime":"2021-06-21T15:39:36.6402345Z","endTime":"2021-06-21T15:41:38.5678546Z","activityId":"e14d5e2e-d2a6-11eb-823d-c8f750f92764"}}' + (Full)","status":"Completed","startTime":"2021-06-28T09:15:24.6857256Z","endTime":"2021-06-28T09:17:26.7948253Z","activityId":"5e33a5a6-d7f1-11eb-a6eb-00155d657312"}}' headers: cache-control: - no-cache @@ -4171,7 +4224,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 15:41:39 GMT + - Mon, 28 Jun 2021 09:17:27 GMT expires: - '-1' pragma: @@ -4208,15 +4261,15 @@ interactions: ParameterSetName: - -g -v -c -n --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bsarath-rg%3Bsarathvm/protectedItems/sqldatabase%3Bmssqlserver%3Bmsdb?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;sarath-rg;sarathvm/protectedItems/SQLDataBase;mssqlserver;msdb","name":"SQLDataBase;mssqlserver;msdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"msdb","serverName":"sarathvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2021-06-21T15:39:36.6402345Z","protectedItemDataSourceId":"70370112201189","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2021-06-21T15:39:55Z","recoveryPointCount":1,"policyState":"Consistent","recoveryModel":"SIMPLE"},"protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;sarath-rg;sarathvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathvm","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupPolicies/HourlyLogBackup","lastRecoveryPoint":"2021-06-21T15:39:55Z","isArchiveEnabled":false}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;sarath-rg;sarathvm/protectedItems/SQLDataBase;mssqlserver;msdb","name":"SQLDataBase;mssqlserver;msdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"msdb","serverName":"sarathvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2021-06-28T09:15:24.6857256Z","protectedItemDataSourceId":"70369028595001","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2021-06-28T09:15:44Z","recoveryPointCount":1,"policyState":"Consistent","recoveryModel":"SIMPLE"},"protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;sarath-rg;sarathvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathvm","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupPolicies/HourlyLogBackup","lastRecoveryPoint":"2021-06-28T09:15:44Z","isArchiveEnabled":false}}' headers: cache-control: - no-cache @@ -4225,7 +4278,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 15:42:11 GMT + - Mon, 28 Jun 2021 09:17:59 GMT expires: - '-1' pragma: @@ -4261,15 +4314,15 @@ interactions: ParameterSetName: - -g -v -c -i --workload-type --query User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bsarath-rg%3Bsarathvm/protectedItems/sqldatabase%3Bmssqlserver%3Bmsdb?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;sarath-rg;sarathvm/protectedItems/SQLDataBase;mssqlserver;msdb","name":"SQLDataBase;mssqlserver;msdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"msdb","serverName":"sarathvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2021-06-21T15:39:36.6402345Z","protectedItemDataSourceId":"70370112201189","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2021-06-21T15:39:55Z","recoveryPointCount":1,"policyState":"Consistent","recoveryModel":"SIMPLE"},"protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;sarath-rg;sarathvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathvm","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupPolicies/HourlyLogBackup","lastRecoveryPoint":"2021-06-21T15:39:55Z","isArchiveEnabled":false}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;sarath-rg;sarathvm/protectedItems/SQLDataBase;mssqlserver;msdb","name":"SQLDataBase;mssqlserver;msdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"msdb","serverName":"sarathvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2021-06-28T09:15:24.6857256Z","protectedItemDataSourceId":"70369028595001","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2021-06-28T09:15:44Z","recoveryPointCount":1,"policyState":"Consistent","recoveryModel":"SIMPLE"},"protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;sarath-rg;sarathvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathvm","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupPolicies/HourlyLogBackup","lastRecoveryPoint":"2021-06-28T09:15:44Z","isArchiveEnabled":false}}' headers: cache-control: - no-cache @@ -4278,7 +4331,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 15:42:12 GMT + - Mon, 28 Jun 2021 09:17:59 GMT expires: - '-1' pragma: @@ -4294,7 +4347,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '149' x-powered-by: - ASP.NET status: @@ -4314,15 +4367,15 @@ interactions: ParameterSetName: - -g -v -c -i --workload-type --query User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Bsarath-rg%3Bsarathvm/protectedItems/SQLDataBase%3Bmssqlserver%3Bmsdb/recoveryPoints?api-version=2021-01-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;sarath-rg;sarathvm/protectedItems/SQLDataBase;mssqlserver;msdb/recoveryPoints/51750090589824","name":"51750090589824","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2021-06-21T15:39:55Z","type":"Full","recoveryPointTierDetails":[{"type":2,"status":1}],"recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":false,"additionalInfo":"Recovery + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;sarath-rg;sarathvm/protectedItems/SQLDataBase;mssqlserver;msdb/recoveryPoints/42097379319400","name":"42097379319400","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2021-06-28T09:15:44Z","type":"Full","recoveryPointTierDetails":[{"type":2,"status":1}],"recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":false,"additionalInfo":"Recovery point cannot be moved to Archive tier due to insufficient retention duration specified in policy.. Update policy on the protected item with appropriate retention setting and try again."}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;sarath-rg;sarathvm/protectedItems/SQLDataBase;mssqlserver;msdb/recoveryPoints/DefaultRangeRecoveryPoint","name":"DefaultRangeRecoveryPoint","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLPointInTimeRecoveryPoint","timeRanges":[],"type":"Log"}}]}' @@ -4334,7 +4387,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 15:42:12 GMT + - Mon, 28 Jun 2021 09:18:01 GMT expires: - '-1' pragma: @@ -4371,8 +4424,8 @@ interactions: - --vault-name -g --restore-mode --rp-name --item-name --container-name --target-item-name --target-server-type --target-server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET @@ -4392,7 +4445,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 15:42:13 GMT + - Mon, 28 Jun 2021 09:18:01 GMT expires: - '-1' pragma: @@ -4429,15 +4482,15 @@ interactions: - --vault-name -g --restore-mode --rp-name --item-name --container-name --target-item-name --target-server-type --target-server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bsarath-rg%3Bsarathvm/protectedItems/sqldatabase%3Bmssqlserver%3Bmsdb?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;sarath-rg;sarathvm/protectedItems/SQLDataBase;mssqlserver;msdb","name":"SQLDataBase;mssqlserver;msdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"msdb","serverName":"sarathvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2021-06-21T15:39:36.6402345Z","protectedItemDataSourceId":"70370112201189","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2021-06-21T15:39:55Z","recoveryPointCount":1,"policyState":"Consistent","recoveryModel":"SIMPLE"},"protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;sarath-rg;sarathvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathvm","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupPolicies/HourlyLogBackup","lastRecoveryPoint":"2021-06-21T15:39:55Z","isArchiveEnabled":false}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;sarath-rg;sarathvm/protectedItems/SQLDataBase;mssqlserver;msdb","name":"SQLDataBase;mssqlserver;msdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"msdb","serverName":"sarathvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2021-06-28T09:15:24.6857256Z","protectedItemDataSourceId":"70369028595001","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2021-06-28T09:15:44Z","recoveryPointCount":1,"policyState":"Consistent","recoveryModel":"SIMPLE"},"protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;sarath-rg;sarathvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathvm","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupPolicies/HourlyLogBackup","lastRecoveryPoint":"2021-06-28T09:15:44Z","isArchiveEnabled":false}}' headers: cache-control: - no-cache @@ -4446,7 +4499,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 15:42:13 GMT + - Mon, 28 Jun 2021 09:18:01 GMT expires: - '-1' pragma: @@ -4462,7 +4515,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '149' x-powered-by: - ASP.NET status: @@ -4483,15 +4536,15 @@ interactions: - --vault-name -g --restore-mode --rp-name --item-name --container-name --target-item-name --target-server-type --target-server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bsarath-rg%3Bsarathvm/protectedItems/SQLDataBase%3Bmssqlserver%3Bmsdb?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;sarath-rg;sarathvm/protectedItems/SQLDataBase;mssqlserver;msdb","name":"SQLDataBase;mssqlserver;msdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"msdb","serverName":"sarathvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2021-06-21T15:39:36.6402345Z","protectedItemDataSourceId":"70370112201189","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2021-06-21T15:39:55Z","recoveryPointCount":1,"policyState":"Consistent","recoveryModel":"SIMPLE"},"protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;sarath-rg;sarathvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathvm","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupPolicies/HourlyLogBackup","lastRecoveryPoint":"2021-06-21T15:39:55Z","isArchiveEnabled":false}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;sarath-rg;sarathvm/protectedItems/SQLDataBase;mssqlserver;msdb","name":"SQLDataBase;mssqlserver;msdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"msdb","serverName":"sarathvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2021-06-28T09:15:24.6857256Z","protectedItemDataSourceId":"70369028595001","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2021-06-28T09:15:44Z","recoveryPointCount":1,"policyState":"Consistent","recoveryModel":"SIMPLE"},"protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;sarath-rg;sarathvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathvm","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupPolicies/HourlyLogBackup","lastRecoveryPoint":"2021-06-28T09:15:44Z","isArchiveEnabled":false}}' headers: cache-control: - no-cache @@ -4500,7 +4553,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 15:42:14 GMT + - Mon, 28 Jun 2021 09:18:02 GMT expires: - '-1' pragma: @@ -4516,7 +4569,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '149' x-powered-by: - ASP.NET status: @@ -4537,17 +4590,17 @@ interactions: - --vault-name -g --restore-mode --rp-name --item-name --container-name --target-item-name --target-server-type --target-server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Bsarath-rg%3Bsarathvm/protectedItems/SQLDataBase%3Bmssqlserver%3Bmsdb/recoveryPoints/51750090589824?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Bsarath-rg%3Bsarathvm/protectedItems/SQLDataBase%3Bmssqlserver%3Bmsdb/recoveryPoints/42097379319400?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;sarath-rg;sarathvm/protectedItems/SQLDataBase;mssqlserver;msdb/recoveryPoints/51750090589824","name":"51750090589824","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","extendedInfo":{"dataDirectoryTimeInUTC":"2021-06-21T15:39:55Z","dataDirectoryPaths":[{"type":"Data","path":"C:\\Program + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;sarath-rg;sarathvm/protectedItems/SQLDataBase;mssqlserver;msdb/recoveryPoints/42097379319400","name":"42097379319400","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","extendedInfo":{"dataDirectoryTimeInUTC":"2021-06-28T09:15:44Z","dataDirectoryPaths":[{"type":"Data","path":"C:\\Program Files\\Microsoft SQL Server\\MSSQL14.MSSQLSERVER\\MSSQL\\DATA\\MSDBData.mdf","logicalName":"MSDBData"},{"type":"Log","path":"C:\\Program - Files\\Microsoft SQL Server\\MSSQL14.MSSQLSERVER\\MSSQL\\DATA\\MSDBLog.ldf","logicalName":"MSDBLog"}]},"recoveryPointTimeInUTC":"2021-06-21T15:39:55Z","type":"Full","recoveryPointTierDetails":[{"type":2,"status":1}],"recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":false,"additionalInfo":"Recovery + Files\\Microsoft SQL Server\\MSSQL14.MSSQLSERVER\\MSSQL\\DATA\\MSDBLog.ldf","logicalName":"MSDBLog"}]},"recoveryPointTimeInUTC":"2021-06-28T09:15:44Z","type":"Full","recoveryPointTierDetails":[{"type":2,"status":1}],"recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":false,"additionalInfo":"Recovery point cannot be moved to Archive tier due to insufficient retention duration specified in policy.. Update policy on the protected item with appropriate retention setting and try again."}}}}' @@ -4559,7 +4612,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 15:42:15 GMT + - Mon, 28 Jun 2021 09:18:02 GMT expires: - '-1' pragma: @@ -4596,8 +4649,8 @@ interactions: - --vault-name -g --restore-mode --rp-name --item-name --container-name --target-item-name --target-server-type --target-server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET @@ -4613,7 +4666,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 15:42:15 GMT + - Mon, 28 Jun 2021 09:18:03 GMT expires: - '-1' pragma: @@ -4649,8 +4702,119 @@ interactions: ParameterSetName: - --vault-name -g --recovery-config User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Bsarath-rg%3Bsarathvm/protectedItems/SQLDataBase%3Bmssqlserver%3Bmsdb?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;sarath-rg;sarathvm/protectedItems/SQLDataBase;mssqlserver;msdb","name":"SQLDataBase;mssqlserver;msdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"msdb","serverName":"sarathvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2021-06-28T09:15:24.6857256Z","protectedItemDataSourceId":"70369028595001","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2021-06-28T09:15:44Z","recoveryPointCount":1,"policyState":"Consistent","recoveryModel":"SIMPLE"},"protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;sarath-rg;sarathvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathvm","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupPolicies/HourlyLogBackup","lastRecoveryPoint":"2021-06-28T09:15:44Z","isArchiveEnabled":false}}' + headers: + cache-control: + - no-cache + content-length: + - '1627' + content-type: + - application/json + date: + - Mon, 28 Jun 2021 09:18:04 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup restore restore-azurewl + Connection: + - keep-alive + ParameterSetName: + - --vault-name -g --recovery-config + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Bsarath-rg%3Bsarathvm/protectedItems/SQLDataBase%3Bmssqlserver%3Bmsdb/recoveryPoints/42097379319400?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;sarath-rg;sarathvm/protectedItems/SQLDataBase;mssqlserver;msdb/recoveryPoints/42097379319400","name":"42097379319400","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","extendedInfo":{"dataDirectoryTimeInUTC":"2021-06-28T09:15:44Z","dataDirectoryPaths":[{"type":"Data","path":"C:\\Program + Files\\Microsoft SQL Server\\MSSQL14.MSSQLSERVER\\MSSQL\\DATA\\MSDBData.mdf","logicalName":"MSDBData"},{"type":"Log","path":"C:\\Program + Files\\Microsoft SQL Server\\MSSQL14.MSSQLSERVER\\MSSQL\\DATA\\MSDBLog.ldf","logicalName":"MSDBLog"}]},"recoveryPointTimeInUTC":"2021-06-28T09:15:44Z","type":"Full","recoveryPointTierDetails":[{"type":2,"status":1}],"recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":false,"additionalInfo":"Recovery + point cannot be moved to Archive tier due to insufficient retention duration + specified in policy.. Update policy on the protected item with appropriate + retention setting and try again."}}}}' + headers: + cache-control: + - no-cache + content-length: + - '1251' + content-type: + - application/json + date: + - Mon, 28 Jun 2021 09:18:04 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup restore restore-azurewl + Connection: + - keep-alive + ParameterSetName: + - --vault-name -g --recovery-config + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET @@ -4666,7 +4830,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 15:42:16 GMT + - Mon, 28 Jun 2021 09:18:04 GMT expires: - '-1' pragma: @@ -4696,9 +4860,9 @@ interactions: "shouldUseAlternateTargetLocation": true, "isNonRecoverable": false, "alternateDirectoryPaths": [{"mappingType": "Data", "sourceLogicalName": "MSDBData", "sourcePath": "C:\\Program Files\\Microsoft SQL Server\\MSSQL14.MSSQLSERVER\\MSSQL\\DATA\\MSDBData.mdf", - "targetPath": "F:\\data\\MSDBData_1624290136.mdf"}, {"mappingType": "Log", "sourceLogicalName": + "targetPath": "F:\\data\\MSDBData_1624871883.mdf"}, {"mappingType": "Log", "sourceLogicalName": "MSDBLog", "sourcePath": "C:\\Program Files\\Microsoft SQL Server\\MSSQL14.MSSQLSERVER\\MSSQL\\DATA\\MSDBLog.ldf", - "targetPath": "G:\\log\\MSDBLog_1624290136.ldf"}]}}' + "targetPath": "G:\\log\\MSDBLog_1624871883.ldf"}]}}' headers: Accept: - application/json @@ -4715,28 +4879,28 @@ interactions: ParameterSetName: - --vault-name -g --recovery-config User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Bsarath-rg%3Bsarathvm/protectedItems/SQLDataBase%3Bmssqlserver%3Bmsdb/recoveryPoints/51750090589824/restore?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Bsarath-rg%3Bsarathvm/protectedItems/SQLDataBase%3Bmssqlserver%3Bmsdb/recoveryPoints/42097379319400/restore?api-version=2021-01-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;sarath-rg;sarathvm/protectedItems/SQLDataBase;mssqlserver;msdb/operationsStatus/0eaadfe9-8995-41e7-bb08-67abbcc08dae?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;sarath-rg;sarathvm/protectedItems/SQLDataBase;mssqlserver;msdb/operationsStatus/ad511e08-a399-4d74-9ec1-6c648b685f71?api-version=2021-01-01 cache-control: - no-cache content-length: - '0' date: - - Mon, 21 Jun 2021 15:42:17 GMT + - Mon, 28 Jun 2021 09:18:05 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;sarath-rg;sarathvm/protectedItems/SQLDataBase;mssqlserver;msdb/operationResults/0eaadfe9-8995-41e7-bb08-67abbcc08dae?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;sarath-rg;sarathvm/protectedItems/SQLDataBase;mssqlserver;msdb/operationResults/ad511e08-a399-4d74-9ec1-6c648b685f71?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -4764,15 +4928,15 @@ interactions: ParameterSetName: - --vault-name -g --recovery-config User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/0eaadfe9-8995-41e7-bb08-67abbcc08dae?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/ad511e08-a399-4d74-9ec1-6c648b685f71?api-version=2021-01-01 response: body: - string: '{"id":"0eaadfe9-8995-41e7-bb08-67abbcc08dae","name":"0eaadfe9-8995-41e7-bb08-67abbcc08dae","status":"InProgress","startTime":"2021-06-21T15:42:17.3395382Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ad511e08-a399-4d74-9ec1-6c648b685f71","name":"ad511e08-a399-4d74-9ec1-6c648b685f71","status":"InProgress","startTime":"2021-06-28T09:18:06.0952484Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4781,7 +4945,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 15:42:17 GMT + - Mon, 28 Jun 2021 09:18:06 GMT expires: - '-1' pragma: @@ -4817,15 +4981,15 @@ interactions: ParameterSetName: - --vault-name -g --recovery-config User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/0eaadfe9-8995-41e7-bb08-67abbcc08dae?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/ad511e08-a399-4d74-9ec1-6c648b685f71?api-version=2021-01-01 response: body: - string: '{"id":"0eaadfe9-8995-41e7-bb08-67abbcc08dae","name":"0eaadfe9-8995-41e7-bb08-67abbcc08dae","status":"Succeeded","startTime":"2021-06-21T15:42:17.3395382Z","endTime":"2021-06-21T15:42:17.3395382Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"0eaadfe9-8995-41e7-bb08-67abbcc08dae"}}' + string: '{"id":"ad511e08-a399-4d74-9ec1-6c648b685f71","name":"ad511e08-a399-4d74-9ec1-6c648b685f71","status":"Succeeded","startTime":"2021-06-28T09:18:06.0952484Z","endTime":"2021-06-28T09:18:06.0952484Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"ad511e08-a399-4d74-9ec1-6c648b685f71"}}' headers: cache-control: - no-cache @@ -4834,7 +4998,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 15:42:18 GMT + - Mon, 28 Jun 2021 09:18:07 GMT expires: - '-1' pragma: @@ -4870,18 +5034,18 @@ interactions: ParameterSetName: - --vault-name -g --recovery-config User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/0eaadfe9-8995-41e7-bb08-67abbcc08dae?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/ad511e08-a399-4d74-9ec1-6c648b685f71?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/0eaadfe9-8995-41e7-bb08-67abbcc08dae","name":"0eaadfe9-8995-41e7-bb08-67abbcc08dae","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SQLDataBase","duration":"PT2.3206336S","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/ad511e08-a399-4d74-9ec1-6c648b685f71","name":"ad511e08-a399-4d74-9ec1-6c648b685f71","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SQLDataBase","duration":"PT2.4771188S","extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery to an alternate database"}},"isUserTriggered":true,"entityFriendlyName":"msdb - [sarathvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-06-21T15:42:17.3395382Z","activityId":"41512b5e-d2a7-11eb-85d1-c8f750f92764"}}' + [sarathvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-06-28T09:18:06.0952484Z","activityId":"bdc265d4-d7f1-11eb-adbc-00155d657312"}}' headers: cache-control: - no-cache @@ -4890,7 +5054,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 15:42:18 GMT + - Mon, 28 Jun 2021 09:18:07 GMT expires: - '-1' pragma: @@ -4927,18 +5091,18 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/0eaadfe9-8995-41e7-bb08-67abbcc08dae?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/ad511e08-a399-4d74-9ec1-6c648b685f71?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/0eaadfe9-8995-41e7-bb08-67abbcc08dae","name":"0eaadfe9-8995-41e7-bb08-67abbcc08dae","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SQLDataBase","duration":"PT2.9594346S","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/ad511e08-a399-4d74-9ec1-6c648b685f71","name":"ad511e08-a399-4d74-9ec1-6c648b685f71","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SQLDataBase","duration":"PT2.8903357S","extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery to an alternate database"}},"isUserTriggered":true,"entityFriendlyName":"msdb - [sarathvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-06-21T15:42:17.3395382Z","activityId":"41512b5e-d2a7-11eb-85d1-c8f750f92764"}}' + [sarathvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-06-28T09:18:06.0952484Z","activityId":"bdc265d4-d7f1-11eb-adbc-00155d657312"}}' headers: cache-control: - no-cache @@ -4947,7 +5111,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 15:42:20 GMT + - Mon, 28 Jun 2021 09:18:08 GMT expires: - '-1' pragma: @@ -4964,7 +5128,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '149' x-powered-by: - ASP.NET status: @@ -4984,18 +5148,18 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/0eaadfe9-8995-41e7-bb08-67abbcc08dae?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/ad511e08-a399-4d74-9ec1-6c648b685f71?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/0eaadfe9-8995-41e7-bb08-67abbcc08dae","name":"0eaadfe9-8995-41e7-bb08-67abbcc08dae","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SQLDataBase","duration":"PT3.1753183S","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/ad511e08-a399-4d74-9ec1-6c648b685f71","name":"ad511e08-a399-4d74-9ec1-6c648b685f71","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SQLDataBase","duration":"PT3.1585983S","extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery to an alternate database"}},"isUserTriggered":true,"entityFriendlyName":"msdb - [sarathvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-06-21T15:42:17.3395382Z","activityId":"41512b5e-d2a7-11eb-85d1-c8f750f92764"}}' + [sarathvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-06-28T09:18:06.0952484Z","activityId":"bdc265d4-d7f1-11eb-adbc-00155d657312"}}' headers: cache-control: - no-cache @@ -5004,7 +5168,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 15:42:20 GMT + - Mon, 28 Jun 2021 09:18:09 GMT expires: - '-1' pragma: @@ -5021,7 +5185,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '148' x-powered-by: - ASP.NET status: @@ -5041,18 +5205,18 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/0eaadfe9-8995-41e7-bb08-67abbcc08dae?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/ad511e08-a399-4d74-9ec1-6c648b685f71?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/0eaadfe9-8995-41e7-bb08-67abbcc08dae","name":"0eaadfe9-8995-41e7-bb08-67abbcc08dae","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SQLDataBase","duration":"PT33.3890025S","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/ad511e08-a399-4d74-9ec1-6c648b685f71","name":"ad511e08-a399-4d74-9ec1-6c648b685f71","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SQLDataBase","duration":"PT33.3907717S","extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery to an alternate database"}},"isUserTriggered":true,"entityFriendlyName":"msdb - [sarathvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-06-21T15:42:17.3395382Z","activityId":"41512b5e-d2a7-11eb-85d1-c8f750f92764"}}' + [sarathvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-06-28T09:18:06.0952484Z","activityId":"bdc265d4-d7f1-11eb-adbc-00155d657312"}}' headers: cache-control: - no-cache @@ -5061,7 +5225,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 15:42:50 GMT + - Mon, 28 Jun 2021 09:18:38 GMT expires: - '-1' pragma: @@ -5078,7 +5242,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '147' x-powered-by: - ASP.NET status: @@ -5098,18 +5262,18 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/0eaadfe9-8995-41e7-bb08-67abbcc08dae?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/ad511e08-a399-4d74-9ec1-6c648b685f71?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/0eaadfe9-8995-41e7-bb08-67abbcc08dae","name":"0eaadfe9-8995-41e7-bb08-67abbcc08dae","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SQLDataBase","duration":"PT1M3.5855979S","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/ad511e08-a399-4d74-9ec1-6c648b685f71","name":"ad511e08-a399-4d74-9ec1-6c648b685f71","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SQLDataBase","duration":"PT1M3.6673294S","extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery to an alternate database"}},"isUserTriggered":true,"entityFriendlyName":"msdb - [sarathvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-06-21T15:42:17.3395382Z","activityId":"41512b5e-d2a7-11eb-85d1-c8f750f92764"}}' + [sarathvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-06-28T09:18:06.0952484Z","activityId":"bdc265d4-d7f1-11eb-adbc-00155d657312"}}' headers: cache-control: - no-cache @@ -5118,7 +5282,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 15:43:20 GMT + - Mon, 28 Jun 2021 09:19:08 GMT expires: - '-1' pragma: @@ -5135,7 +5299,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '146' x-powered-by: - ASP.NET status: @@ -5155,18 +5319,18 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/0eaadfe9-8995-41e7-bb08-67abbcc08dae?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/ad511e08-a399-4d74-9ec1-6c648b685f71?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/0eaadfe9-8995-41e7-bb08-67abbcc08dae","name":"0eaadfe9-8995-41e7-bb08-67abbcc08dae","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SQLDataBase","duration":"PT1M33.815658S","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/ad511e08-a399-4d74-9ec1-6c648b685f71","name":"ad511e08-a399-4d74-9ec1-6c648b685f71","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SQLDataBase","duration":"PT1M33.918218S","extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery to an alternate database"}},"isUserTriggered":true,"entityFriendlyName":"msdb - [sarathvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-06-21T15:42:17.3395382Z","activityId":"41512b5e-d2a7-11eb-85d1-c8f750f92764"}}' + [sarathvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-06-28T09:18:06.0952484Z","activityId":"bdc265d4-d7f1-11eb-adbc-00155d657312"}}' headers: cache-control: - no-cache @@ -5175,7 +5339,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 15:43:50 GMT + - Mon, 28 Jun 2021 09:19:39 GMT expires: - '-1' pragma: @@ -5192,7 +5356,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '145' x-powered-by: - ASP.NET status: @@ -5212,18 +5376,18 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/0eaadfe9-8995-41e7-bb08-67abbcc08dae?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/ad511e08-a399-4d74-9ec1-6c648b685f71?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/0eaadfe9-8995-41e7-bb08-67abbcc08dae","name":"0eaadfe9-8995-41e7-bb08-67abbcc08dae","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SQLDataBase","duration":"PT2M4.0206643S","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/ad511e08-a399-4d74-9ec1-6c648b685f71","name":"ad511e08-a399-4d74-9ec1-6c648b685f71","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SQLDataBase","duration":"PT2M4.1396837S","extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery to an alternate database"}},"isUserTriggered":true,"entityFriendlyName":"msdb - [sarathvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-06-21T15:42:17.3395382Z","activityId":"41512b5e-d2a7-11eb-85d1-c8f750f92764"}}' + [sarathvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-06-28T09:18:06.0952484Z","activityId":"bdc265d4-d7f1-11eb-adbc-00155d657312"}}' headers: cache-control: - no-cache @@ -5232,7 +5396,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 15:44:20 GMT + - Mon, 28 Jun 2021 09:20:09 GMT expires: - '-1' pragma: @@ -5249,7 +5413,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' + - '144' x-powered-by: - ASP.NET status: @@ -5269,18 +5433,18 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/0eaadfe9-8995-41e7-bb08-67abbcc08dae?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/ad511e08-a399-4d74-9ec1-6c648b685f71?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/0eaadfe9-8995-41e7-bb08-67abbcc08dae","name":"0eaadfe9-8995-41e7-bb08-67abbcc08dae","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SQLDataBase","duration":"PT2M34.2104864S","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/ad511e08-a399-4d74-9ec1-6c648b685f71","name":"ad511e08-a399-4d74-9ec1-6c648b685f71","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SQLDataBase","duration":"PT2M34.3945175S","extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery to an alternate database"}},"isUserTriggered":true,"entityFriendlyName":"msdb - [sarathvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-06-21T15:42:17.3395382Z","activityId":"41512b5e-d2a7-11eb-85d1-c8f750f92764"}}' + [sarathvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-06-28T09:18:06.0952484Z","activityId":"bdc265d4-d7f1-11eb-adbc-00155d657312"}}' headers: cache-control: - no-cache @@ -5289,7 +5453,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 15:44:51 GMT + - Mon, 28 Jun 2021 09:20:40 GMT expires: - '-1' pragma: @@ -5306,7 +5470,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '141' + - '143' x-powered-by: - ASP.NET status: @@ -5326,19 +5490,19 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/0eaadfe9-8995-41e7-bb08-67abbcc08dae?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/ad511e08-a399-4d74-9ec1-6c648b685f71?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/0eaadfe9-8995-41e7-bb08-67abbcc08dae","name":"0eaadfe9-8995-41e7-bb08-67abbcc08dae","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SQLDataBase","duration":"PT3M2.4227223S","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/ad511e08-a399-4d74-9ec1-6c648b685f71","name":"ad511e08-a399-4d74-9ec1-6c648b685f71","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SQLDataBase","duration":"PT3M2.7176654S","extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","status":"Completed"}],"propertyBag":{"Data Transferred (in - MB)":"28.1147","Job Type":"Recovery to an alternate database","RestoreRecoveryPointTime":"2021-06-21 - 15:39:55Z","RestoreDestination":"sarathvm/MSSQLSERVER/MSSQLSERVER"}},"isUserTriggered":true,"entityFriendlyName":"msdb - [sarathvm]","backupManagementType":"AzureWorkload","operation":"Restore (Full)","status":"Completed","startTime":"2021-06-21T15:42:17.3395382Z","endTime":"2021-06-21T15:45:19.7622605Z","activityId":"41512b5e-d2a7-11eb-85d1-c8f750f92764"}}' + MB)":"28.1147","Job Type":"Recovery to an alternate database","RestoreRecoveryPointTime":"2021-06-28 + 09:15:44Z","RestoreDestination":"sarathvm/MSSQLSERVER/MSSQLSERVER"}},"isUserTriggered":true,"entityFriendlyName":"msdb + [sarathvm]","backupManagementType":"AzureWorkload","operation":"Restore (Full)","status":"Completed","startTime":"2021-06-28T09:18:06.0952484Z","endTime":"2021-06-28T09:21:08.8129138Z","activityId":"bdc265d4-d7f1-11eb-adbc-00155d657312"}}' headers: cache-control: - no-cache @@ -5347,7 +5511,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 15:45:21 GMT + - Mon, 28 Jun 2021 09:21:10 GMT expires: - '-1' pragma: @@ -5364,7 +5528,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '140' + - '142' x-powered-by: - ASP.NET status: @@ -5384,15 +5548,15 @@ interactions: ParameterSetName: - --vault-name -g --restore-mode --item-name --container-name --rp-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bsarath-rg%3Bsarathvm/protectedItems/sqldatabase%3Bmssqlserver%3Bmsdb?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;sarath-rg;sarathvm/protectedItems/SQLDataBase;mssqlserver;msdb","name":"SQLDataBase;mssqlserver;msdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]},"RestoreOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"msdb","serverName":"sarathvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2021-06-21T15:40:35.9045823Z","protectedItemDataSourceId":"70370112201189","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2021-06-21T15:39:55Z","recoveryPointCount":1,"policyState":"Consistent","recoveryModel":"SIMPLE"},"protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;sarath-rg;sarathvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathvm","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupPolicies/HourlyLogBackup","lastRecoveryPoint":"2021-06-21T15:39:55Z","isArchiveEnabled":false}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;sarath-rg;sarathvm/protectedItems/SQLDataBase;mssqlserver;msdb","name":"SQLDataBase;mssqlserver;msdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]},"RestoreOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"msdb","serverName":"sarathvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2021-06-28T09:16:24.3699911Z","protectedItemDataSourceId":"70369028595001","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2021-06-28T09:15:44Z","recoveryPointCount":1,"policyState":"Consistent","recoveryModel":"SIMPLE"},"protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;sarath-rg;sarathvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathvm","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupPolicies/HourlyLogBackup","lastRecoveryPoint":"2021-06-28T09:15:44Z","isArchiveEnabled":false}}' headers: cache-control: - no-cache @@ -5401,7 +5565,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 15:45:52 GMT + - Mon, 28 Jun 2021 09:21:42 GMT expires: - '-1' pragma: @@ -5437,15 +5601,15 @@ interactions: ParameterSetName: - --vault-name -g --restore-mode --item-name --container-name --rp-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bsarath-rg%3Bsarathvm/protectedItems/SQLDataBase%3Bmssqlserver%3Bmsdb?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;sarath-rg;sarathvm/protectedItems/SQLDataBase;mssqlserver;msdb","name":"SQLDataBase;mssqlserver;msdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]},"RestoreOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"msdb","serverName":"sarathvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2021-06-21T15:40:35.9045823Z","protectedItemDataSourceId":"70370112201189","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2021-06-21T15:39:55Z","recoveryPointCount":1,"policyState":"Consistent","recoveryModel":"SIMPLE"},"protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;sarath-rg;sarathvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathvm","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupPolicies/HourlyLogBackup","lastRecoveryPoint":"2021-06-21T15:39:55Z","isArchiveEnabled":false}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;sarath-rg;sarathvm/protectedItems/SQLDataBase;mssqlserver;msdb","name":"SQLDataBase;mssqlserver;msdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]},"RestoreOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"msdb","serverName":"sarathvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2021-06-28T09:16:24.3699911Z","protectedItemDataSourceId":"70369028595001","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2021-06-28T09:15:44Z","recoveryPointCount":1,"policyState":"Consistent","recoveryModel":"SIMPLE"},"protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;sarath-rg;sarathvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathvm","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupPolicies/HourlyLogBackup","lastRecoveryPoint":"2021-06-28T09:15:44Z","isArchiveEnabled":false}}' headers: cache-control: - no-cache @@ -5454,7 +5618,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 15:45:52 GMT + - Mon, 28 Jun 2021 09:21:42 GMT expires: - '-1' pragma: @@ -5470,7 +5634,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '149' x-powered-by: - ASP.NET status: @@ -5490,17 +5654,17 @@ interactions: ParameterSetName: - --vault-name -g --restore-mode --item-name --container-name --rp-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Bsarath-rg%3Bsarathvm/protectedItems/SQLDataBase%3Bmssqlserver%3Bmsdb/recoveryPoints/51750090589824?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Bsarath-rg%3Bsarathvm/protectedItems/SQLDataBase%3Bmssqlserver%3Bmsdb/recoveryPoints/42097379319400?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;sarath-rg;sarathvm/protectedItems/SQLDataBase;mssqlserver;msdb/recoveryPoints/51750090589824","name":"51750090589824","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","extendedInfo":{"dataDirectoryTimeInUTC":"2021-06-21T15:39:55Z","dataDirectoryPaths":[{"type":"Data","path":"C:\\Program + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;sarath-rg;sarathvm/protectedItems/SQLDataBase;mssqlserver;msdb/recoveryPoints/42097379319400","name":"42097379319400","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","extendedInfo":{"dataDirectoryTimeInUTC":"2021-06-28T09:15:44Z","dataDirectoryPaths":[{"type":"Data","path":"C:\\Program Files\\Microsoft SQL Server\\MSSQL14.MSSQLSERVER\\MSSQL\\DATA\\MSDBData.mdf","logicalName":"MSDBData"},{"type":"Log","path":"C:\\Program - Files\\Microsoft SQL Server\\MSSQL14.MSSQLSERVER\\MSSQL\\DATA\\MSDBLog.ldf","logicalName":"MSDBLog"}]},"recoveryPointTimeInUTC":"2021-06-21T15:39:55Z","type":"Full","recoveryPointTierDetails":[{"type":2,"status":1}],"recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":false,"additionalInfo":"Recovery + Files\\Microsoft SQL Server\\MSSQL14.MSSQLSERVER\\MSSQL\\DATA\\MSDBLog.ldf","logicalName":"MSDBLog"}]},"recoveryPointTimeInUTC":"2021-06-28T09:15:44Z","type":"Full","recoveryPointTierDetails":[{"type":2,"status":1}],"recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":false,"additionalInfo":"Recovery point cannot be moved to Archive tier due to insufficient retention duration specified in policy.. Update policy on the protected item with appropriate retention setting and try again."}}}}' @@ -5512,7 +5676,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 15:45:53 GMT + - Mon, 28 Jun 2021 09:21:43 GMT expires: - '-1' pragma: @@ -5528,7 +5692,118 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '149' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup restore restore-azurewl + Connection: + - keep-alive + ParameterSetName: + - --vault-name -g --recovery-config + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Bsarath-rg%3Bsarathvm/protectedItems/SQLDataBase%3Bmssqlserver%3Bmsdb?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;sarath-rg;sarathvm/protectedItems/SQLDataBase;mssqlserver;msdb","name":"SQLDataBase;mssqlserver;msdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]},"RestoreOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"msdb","serverName":"sarathvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2021-06-28T09:16:24.3699911Z","protectedItemDataSourceId":"70369028595001","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2021-06-28T09:15:44Z","recoveryPointCount":1,"policyState":"Consistent","recoveryModel":"SIMPLE"},"protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;sarath-rg;sarathvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathvm","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupPolicies/HourlyLogBackup","lastRecoveryPoint":"2021-06-28T09:15:44Z","isArchiveEnabled":false}}' + headers: + cache-control: + - no-cache + content-length: + - '1779' + content-type: + - application/json + date: + - Mon, 28 Jun 2021 09:21:43 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup restore restore-azurewl + Connection: + - keep-alive + ParameterSetName: + - --vault-name -g --recovery-config + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Bsarath-rg%3Bsarathvm/protectedItems/SQLDataBase%3Bmssqlserver%3Bmsdb/recoveryPoints/42097379319400?api-version=2021-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;sarath-rg;sarathvm/protectedItems/SQLDataBase;mssqlserver;msdb/recoveryPoints/42097379319400","name":"42097379319400","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","extendedInfo":{"dataDirectoryTimeInUTC":"2021-06-28T09:15:44Z","dataDirectoryPaths":[{"type":"Data","path":"C:\\Program + Files\\Microsoft SQL Server\\MSSQL14.MSSQLSERVER\\MSSQL\\DATA\\MSDBData.mdf","logicalName":"MSDBData"},{"type":"Log","path":"C:\\Program + Files\\Microsoft SQL Server\\MSSQL14.MSSQLSERVER\\MSSQL\\DATA\\MSDBLog.ldf","logicalName":"MSDBLog"}]},"recoveryPointTimeInUTC":"2021-06-28T09:15:44Z","type":"Full","recoveryPointTierDetails":[{"type":2,"status":1}],"recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":false,"additionalInfo":"Recovery + point cannot be moved to Archive tier due to insufficient retention duration + specified in policy.. Update policy on the protected item with appropriate + retention setting and try again."}}}}' + headers: + cache-control: + - no-cache + content-length: + - '1251' + content-type: + - application/json + date: + - Mon, 28 Jun 2021 09:21:44 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -5554,28 +5829,28 @@ interactions: ParameterSetName: - --vault-name -g --recovery-config User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Bsarath-rg%3Bsarathvm/protectedItems/SQLDataBase%3Bmssqlserver%3Bmsdb/recoveryPoints/51750090589824/restore?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Bsarath-rg%3Bsarathvm/protectedItems/SQLDataBase%3Bmssqlserver%3Bmsdb/recoveryPoints/42097379319400/restore?api-version=2021-01-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;sarath-rg;sarathvm/protectedItems/SQLDataBase;mssqlserver;msdb/operationsStatus/a4a3d0a2-1187-4688-a049-554fc1529af9?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;sarath-rg;sarathvm/protectedItems/SQLDataBase;mssqlserver;msdb/operationsStatus/cf577b4f-4aa8-43c1-a40b-287e90f677a0?api-version=2021-01-01 cache-control: - no-cache content-length: - '0' date: - - Mon, 21 Jun 2021 15:45:53 GMT + - Mon, 28 Jun 2021 09:21:46 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;sarath-rg;sarathvm/protectedItems/SQLDataBase;mssqlserver;msdb/operationResults/a4a3d0a2-1187-4688-a049-554fc1529af9?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;sarath-rg;sarathvm/protectedItems/SQLDataBase;mssqlserver;msdb/operationResults/cf577b4f-4aa8-43c1-a40b-287e90f677a0?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -5603,15 +5878,15 @@ interactions: ParameterSetName: - --vault-name -g --recovery-config User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/a4a3d0a2-1187-4688-a049-554fc1529af9?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/cf577b4f-4aa8-43c1-a40b-287e90f677a0?api-version=2021-01-01 response: body: - string: '{"id":"a4a3d0a2-1187-4688-a049-554fc1529af9","name":"a4a3d0a2-1187-4688-a049-554fc1529af9","status":"InProgress","startTime":"2021-06-21T15:45:54.6193317Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"cf577b4f-4aa8-43c1-a40b-287e90f677a0","name":"cf577b4f-4aa8-43c1-a40b-287e90f677a0","status":"InProgress","startTime":"2021-06-28T09:21:46.2518589Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5620,7 +5895,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 15:45:54 GMT + - Mon, 28 Jun 2021 09:21:46 GMT expires: - '-1' pragma: @@ -5656,15 +5931,15 @@ interactions: ParameterSetName: - --vault-name -g --recovery-config User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/a4a3d0a2-1187-4688-a049-554fc1529af9?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/cf577b4f-4aa8-43c1-a40b-287e90f677a0?api-version=2021-01-01 response: body: - string: '{"id":"a4a3d0a2-1187-4688-a049-554fc1529af9","name":"a4a3d0a2-1187-4688-a049-554fc1529af9","status":"Succeeded","startTime":"2021-06-21T15:45:54.6193317Z","endTime":"2021-06-21T15:45:54.6193317Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"a4a3d0a2-1187-4688-a049-554fc1529af9"}}' + string: '{"id":"cf577b4f-4aa8-43c1-a40b-287e90f677a0","name":"cf577b4f-4aa8-43c1-a40b-287e90f677a0","status":"Succeeded","startTime":"2021-06-28T09:21:46.2518589Z","endTime":"2021-06-28T09:21:46.2518589Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"cf577b4f-4aa8-43c1-a40b-287e90f677a0"}}' headers: cache-control: - no-cache @@ -5673,7 +5948,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 15:45:56 GMT + - Mon, 28 Jun 2021 09:21:47 GMT expires: - '-1' pragma: @@ -5709,18 +5984,18 @@ interactions: ParameterSetName: - --vault-name -g --recovery-config User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/a4a3d0a2-1187-4688-a049-554fc1529af9?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/cf577b4f-4aa8-43c1-a40b-287e90f677a0?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/a4a3d0a2-1187-4688-a049-554fc1529af9","name":"a4a3d0a2-1187-4688-a049-554fc1529af9","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SQLDataBase","duration":"PT2.3636351S","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/cf577b4f-4aa8-43c1-a40b-287e90f677a0","name":"cf577b4f-4aa8-43c1-a40b-287e90f677a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SQLDataBase","duration":"PT2.2511877S","extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery to the original database"}},"isUserTriggered":true,"entityFriendlyName":"msdb - [sarathvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-06-21T15:45:54.6193317Z","activityId":"c2f5d193-d2a7-11eb-954d-c8f750f92764"}}' + [sarathvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-06-28T09:21:46.2518589Z","activityId":"40a66112-d7f2-11eb-b31b-00155d657312"}}' headers: cache-control: - no-cache @@ -5729,7 +6004,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 15:45:56 GMT + - Mon, 28 Jun 2021 09:21:48 GMT expires: - '-1' pragma: @@ -5766,18 +6041,18 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/a4a3d0a2-1187-4688-a049-554fc1529af9?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/cf577b4f-4aa8-43c1-a40b-287e90f677a0?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/a4a3d0a2-1187-4688-a049-554fc1529af9","name":"a4a3d0a2-1187-4688-a049-554fc1529af9","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SQLDataBase","duration":"PT2.9264212S","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/cf577b4f-4aa8-43c1-a40b-287e90f677a0","name":"cf577b4f-4aa8-43c1-a40b-287e90f677a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SQLDataBase","duration":"PT2.8087125S","extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery to the original database"}},"isUserTriggered":true,"entityFriendlyName":"msdb - [sarathvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-06-21T15:45:54.6193317Z","activityId":"c2f5d193-d2a7-11eb-954d-c8f750f92764"}}' + [sarathvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-06-28T09:21:46.2518589Z","activityId":"40a66112-d7f2-11eb-b31b-00155d657312"}}' headers: cache-control: - no-cache @@ -5786,7 +6061,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 15:45:57 GMT + - Mon, 28 Jun 2021 09:21:48 GMT expires: - '-1' pragma: @@ -5803,7 +6078,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '149' x-powered-by: - ASP.NET status: @@ -5823,18 +6098,18 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/a4a3d0a2-1187-4688-a049-554fc1529af9?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/cf577b4f-4aa8-43c1-a40b-287e90f677a0?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/a4a3d0a2-1187-4688-a049-554fc1529af9","name":"a4a3d0a2-1187-4688-a049-554fc1529af9","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SQLDataBase","duration":"PT3.1287091S","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/cf577b4f-4aa8-43c1-a40b-287e90f677a0","name":"cf577b4f-4aa8-43c1-a40b-287e90f677a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SQLDataBase","duration":"PT3.0338596S","extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery to the original database"}},"isUserTriggered":true,"entityFriendlyName":"msdb - [sarathvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-06-21T15:45:54.6193317Z","activityId":"c2f5d193-d2a7-11eb-954d-c8f750f92764"}}' + [sarathvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-06-28T09:21:46.2518589Z","activityId":"40a66112-d7f2-11eb-b31b-00155d657312"}}' headers: cache-control: - no-cache @@ -5843,7 +6118,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 15:45:57 GMT + - Mon, 28 Jun 2021 09:21:48 GMT expires: - '-1' pragma: @@ -5860,7 +6135,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '148' x-powered-by: - ASP.NET status: @@ -5880,27 +6155,27 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/a4a3d0a2-1187-4688-a049-554fc1529af9?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/cf577b4f-4aa8-43c1-a40b-287e90f677a0?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/a4a3d0a2-1187-4688-a049-554fc1529af9","name":"a4a3d0a2-1187-4688-a049-554fc1529af9","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SQLDataBase","duration":"PT33.3459817S","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/cf577b4f-4aa8-43c1-a40b-287e90f677a0","name":"cf577b4f-4aa8-43c1-a40b-287e90f677a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SQLDataBase","duration":"PT33.401025S","extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery to the original database"}},"isUserTriggered":true,"entityFriendlyName":"msdb - [sarathvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-06-21T15:45:54.6193317Z","activityId":"c2f5d193-d2a7-11eb-954d-c8f750f92764"}}' + [sarathvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-06-28T09:21:46.2518589Z","activityId":"40a66112-d7f2-11eb-b31b-00155d657312"}}' headers: cache-control: - no-cache content-length: - - '802' + - '801' content-type: - application/json date: - - Mon, 21 Jun 2021 15:46:27 GMT + - Mon, 28 Jun 2021 09:22:19 GMT expires: - '-1' pragma: @@ -5917,7 +6192,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '147' x-powered-by: - ASP.NET status: @@ -5937,18 +6212,18 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/a4a3d0a2-1187-4688-a049-554fc1529af9?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/cf577b4f-4aa8-43c1-a40b-287e90f677a0?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/a4a3d0a2-1187-4688-a049-554fc1529af9","name":"a4a3d0a2-1187-4688-a049-554fc1529af9","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SQLDataBase","duration":"PT1M3.5652548S","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/cf577b4f-4aa8-43c1-a40b-287e90f677a0","name":"cf577b4f-4aa8-43c1-a40b-287e90f677a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SQLDataBase","duration":"PT1M3.6624962S","extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery to the original database"}},"isUserTriggered":true,"entityFriendlyName":"msdb - [sarathvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-06-21T15:45:54.6193317Z","activityId":"c2f5d193-d2a7-11eb-954d-c8f750f92764"}}' + [sarathvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-06-28T09:21:46.2518589Z","activityId":"40a66112-d7f2-11eb-b31b-00155d657312"}}' headers: cache-control: - no-cache @@ -5957,7 +6232,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 15:46:58 GMT + - Mon, 28 Jun 2021 09:22:49 GMT expires: - '-1' pragma: @@ -5974,7 +6249,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '146' x-powered-by: - ASP.NET status: @@ -5994,18 +6269,18 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/a4a3d0a2-1187-4688-a049-554fc1529af9?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/cf577b4f-4aa8-43c1-a40b-287e90f677a0?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/a4a3d0a2-1187-4688-a049-554fc1529af9","name":"a4a3d0a2-1187-4688-a049-554fc1529af9","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SQLDataBase","duration":"PT1M33.8038222S","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/cf577b4f-4aa8-43c1-a40b-287e90f677a0","name":"cf577b4f-4aa8-43c1-a40b-287e90f677a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SQLDataBase","duration":"PT1M34.0901145S","extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery to the original database"}},"isUserTriggered":true,"entityFriendlyName":"msdb - [sarathvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-06-21T15:45:54.6193317Z","activityId":"c2f5d193-d2a7-11eb-954d-c8f750f92764"}}' + [sarathvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-06-28T09:21:46.2518589Z","activityId":"40a66112-d7f2-11eb-b31b-00155d657312"}}' headers: cache-control: - no-cache @@ -6014,7 +6289,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 15:47:28 GMT + - Mon, 28 Jun 2021 09:23:20 GMT expires: - '-1' pragma: @@ -6031,7 +6306,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '145' x-powered-by: - ASP.NET status: @@ -6051,18 +6326,18 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/a4a3d0a2-1187-4688-a049-554fc1529af9?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/cf577b4f-4aa8-43c1-a40b-287e90f677a0?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/a4a3d0a2-1187-4688-a049-554fc1529af9","name":"a4a3d0a2-1187-4688-a049-554fc1529af9","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SQLDataBase","duration":"PT2M4.0163944S","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/cf577b4f-4aa8-43c1-a40b-287e90f677a0","name":"cf577b4f-4aa8-43c1-a40b-287e90f677a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SQLDataBase","duration":"PT2M4.4349727S","extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery to the original database"}},"isUserTriggered":true,"entityFriendlyName":"msdb - [sarathvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-06-21T15:45:54.6193317Z","activityId":"c2f5d193-d2a7-11eb-954d-c8f750f92764"}}' + [sarathvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-06-28T09:21:46.2518589Z","activityId":"40a66112-d7f2-11eb-b31b-00155d657312"}}' headers: cache-control: - no-cache @@ -6071,7 +6346,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 15:47:58 GMT + - Mon, 28 Jun 2021 09:23:50 GMT expires: - '-1' pragma: @@ -6088,7 +6363,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '144' x-powered-by: - ASP.NET status: @@ -6108,18 +6383,18 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/a4a3d0a2-1187-4688-a049-554fc1529af9?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/cf577b4f-4aa8-43c1-a40b-287e90f677a0?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/a4a3d0a2-1187-4688-a049-554fc1529af9","name":"a4a3d0a2-1187-4688-a049-554fc1529af9","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SQLDataBase","duration":"PT2M34.2635039S","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/cf577b4f-4aa8-43c1-a40b-287e90f677a0","name":"cf577b4f-4aa8-43c1-a40b-287e90f677a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SQLDataBase","duration":"PT2M34.7101982S","extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery to the original database"}},"isUserTriggered":true,"entityFriendlyName":"msdb - [sarathvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-06-21T15:45:54.6193317Z","activityId":"c2f5d193-d2a7-11eb-954d-c8f750f92764"}}' + [sarathvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-06-28T09:21:46.2518589Z","activityId":"40a66112-d7f2-11eb-b31b-00155d657312"}}' headers: cache-control: - no-cache @@ -6128,7 +6403,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 15:48:27 GMT + - Mon, 28 Jun 2021 09:24:20 GMT expires: - '-1' pragma: @@ -6145,7 +6420,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' + - '143' x-powered-by: - ASP.NET status: @@ -6165,18 +6440,18 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/a4a3d0a2-1187-4688-a049-554fc1529af9?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/cf577b4f-4aa8-43c1-a40b-287e90f677a0?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/a4a3d0a2-1187-4688-a049-554fc1529af9","name":"a4a3d0a2-1187-4688-a049-554fc1529af9","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SQLDataBase","duration":"PT3M4.5328267S","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/cf577b4f-4aa8-43c1-a40b-287e90f677a0","name":"cf577b4f-4aa8-43c1-a40b-287e90f677a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SQLDataBase","duration":"PT3M4.9410171S","extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery to the original database"}},"isUserTriggered":true,"entityFriendlyName":"msdb - [sarathvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-06-21T15:45:54.6193317Z","activityId":"c2f5d193-d2a7-11eb-954d-c8f750f92764"}}' + [sarathvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-06-28T09:21:46.2518589Z","activityId":"40a66112-d7f2-11eb-b31b-00155d657312"}}' headers: cache-control: - no-cache @@ -6185,7 +6460,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 15:48:58 GMT + - Mon, 28 Jun 2021 09:24:50 GMT expires: - '-1' pragma: @@ -6202,7 +6477,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '141' + - '142' x-powered-by: - ASP.NET status: @@ -6222,27 +6497,27 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/a4a3d0a2-1187-4688-a049-554fc1529af9?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/cf577b4f-4aa8-43c1-a40b-287e90f677a0?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/a4a3d0a2-1187-4688-a049-554fc1529af9","name":"a4a3d0a2-1187-4688-a049-554fc1529af9","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SQLDataBase","duration":"PT3M34.8019578S","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/cf577b4f-4aa8-43c1-a40b-287e90f677a0","name":"cf577b4f-4aa8-43c1-a40b-287e90f677a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SQLDataBase","duration":"PT3M35.242545S","extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery to the original database"}},"isUserTriggered":true,"entityFriendlyName":"msdb - [sarathvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-06-21T15:45:54.6193317Z","activityId":"c2f5d193-d2a7-11eb-954d-c8f750f92764"}}' + [sarathvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-06-28T09:21:46.2518589Z","activityId":"40a66112-d7f2-11eb-b31b-00155d657312"}}' headers: cache-control: - no-cache content-length: - - '804' + - '803' content-type: - application/json date: - - Mon, 21 Jun 2021 15:49:28 GMT + - Mon, 28 Jun 2021 09:25:21 GMT expires: - '-1' pragma: @@ -6259,7 +6534,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '140' + - '141' x-powered-by: - ASP.NET status: @@ -6279,27 +6554,27 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/a4a3d0a2-1187-4688-a049-554fc1529af9?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/cf577b4f-4aa8-43c1-a40b-287e90f677a0?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/a4a3d0a2-1187-4688-a049-554fc1529af9","name":"a4a3d0a2-1187-4688-a049-554fc1529af9","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SQLDataBase","duration":"PT4M5.0317552S","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/cf577b4f-4aa8-43c1-a40b-287e90f677a0","name":"cf577b4f-4aa8-43c1-a40b-287e90f677a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SQLDataBase","duration":"PT4M5.577457S","extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery to the original database"}},"isUserTriggered":true,"entityFriendlyName":"msdb - [sarathvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-06-21T15:45:54.6193317Z","activityId":"c2f5d193-d2a7-11eb-954d-c8f750f92764"}}' + [sarathvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-06-28T09:21:46.2518589Z","activityId":"40a66112-d7f2-11eb-b31b-00155d657312"}}' headers: cache-control: - no-cache content-length: - - '803' + - '802' content-type: - application/json date: - - Mon, 21 Jun 2021 15:49:58 GMT + - Mon, 28 Jun 2021 09:25:51 GMT expires: - '-1' pragma: @@ -6316,7 +6591,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '139' + - '140' x-powered-by: - ASP.NET status: @@ -6336,19 +6611,19 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/a4a3d0a2-1187-4688-a049-554fc1529af9?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/cf577b4f-4aa8-43c1-a40b-287e90f677a0?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/a4a3d0a2-1187-4688-a049-554fc1529af9","name":"a4a3d0a2-1187-4688-a049-554fc1529af9","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SQLDataBase","duration":"PT4M32.7783018S","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/cf577b4f-4aa8-43c1-a40b-287e90f677a0","name":"cf577b4f-4aa8-43c1-a40b-287e90f677a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SQLDataBase","duration":"PT4M32.8978825S","extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","status":"Completed"}],"propertyBag":{"Data Transferred (in - MB)":"28.1147","Job Type":"Recovery to the original database","RestoreRecoveryPointTime":"2021-06-21 - 15:39:55Z","RestoreDestination":"sarathvm/MSSQLSERVER/msdb"}},"isUserTriggered":true,"entityFriendlyName":"msdb - [sarathvm]","backupManagementType":"AzureWorkload","operation":"Restore (Full)","status":"Completed","startTime":"2021-06-21T15:45:54.6193317Z","endTime":"2021-06-21T15:50:27.3976335Z","activityId":"c2f5d193-d2a7-11eb-954d-c8f750f92764"}}' + MB)":"28.1147","Job Type":"Recovery to the original database","RestoreRecoveryPointTime":"2021-06-28 + 09:15:44Z","RestoreDestination":"sarathvm/MSSQLSERVER/msdb"}},"isUserTriggered":true,"entityFriendlyName":"msdb + [sarathvm]","backupManagementType":"AzureWorkload","operation":"Restore (Full)","status":"Completed","startTime":"2021-06-28T09:21:46.2518589Z","endTime":"2021-06-28T09:26:19.1497414Z","activityId":"40a66112-d7f2-11eb-b31b-00155d657312"}}' headers: cache-control: - no-cache @@ -6357,7 +6632,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 15:50:29 GMT + - Mon, 28 Jun 2021 09:26:22 GMT expires: - '-1' pragma: @@ -6374,7 +6649,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '138' + - '139' x-powered-by: - ASP.NET status: @@ -6394,15 +6669,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bsarath-rg%3Bsarathvm/protectedItems/sqldatabase%3Bmssqlserver%3Bmsdb?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;sarath-rg;sarathvm/protectedItems/SQLDataBase;mssqlserver;msdb","name":"SQLDataBase;mssqlserver;msdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]},"RestoreOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"msdb","serverName":"sarathvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2021-06-21T15:40:35.9045823Z","protectedItemDataSourceId":"70370112201189","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2021-06-21T15:39:55Z","recoveryPointCount":1,"policyState":"Consistent","recoveryModel":"SIMPLE"},"protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;sarath-rg;sarathvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathvm","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupPolicies/HourlyLogBackup","lastRecoveryPoint":"2021-06-21T15:39:55Z","isArchiveEnabled":false}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;sarath-rg;sarathvm/protectedItems/SQLDataBase;mssqlserver;msdb","name":"SQLDataBase;mssqlserver;msdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]},"RestoreOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"msdb","serverName":"sarathvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2021-06-28T09:16:24.3699911Z","protectedItemDataSourceId":"70369028595001","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2021-06-28T09:15:44Z","recoveryPointCount":1,"policyState":"Consistent","recoveryModel":"SIMPLE"},"protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;sarath-rg;sarathvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathvm","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupPolicies/HourlyLogBackup","lastRecoveryPoint":"2021-06-28T09:15:44Z","isArchiveEnabled":false}}' headers: cache-control: - no-cache @@ -6411,7 +6686,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 15:51:01 GMT + - Mon, 28 Jun 2021 09:26:52 GMT expires: - '-1' pragma: @@ -6449,8 +6724,8 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: DELETE @@ -6460,17 +6735,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/3bdd3255-8fd2-4a83-a71c-0bded40ce7d6?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/2262253d-3120-4020-867e-0adbc6fd883e?api-version=2021-01-01 cache-control: - no-cache content-length: - '0' date: - - Mon, 21 Jun 2021 15:51:03 GMT + - Mon, 28 Jun 2021 09:26:53 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperationResults/3bdd3255-8fd2-4a83-a71c-0bded40ce7d6?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperationResults/2262253d-3120-4020-867e-0adbc6fd883e?api-version=2021-01-01 pragma: - no-cache strict-transport-security: @@ -6498,15 +6773,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/3bdd3255-8fd2-4a83-a71c-0bded40ce7d6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/2262253d-3120-4020-867e-0adbc6fd883e?api-version=2021-01-01 response: body: - string: '{"id":"3bdd3255-8fd2-4a83-a71c-0bded40ce7d6","name":"3bdd3255-8fd2-4a83-a71c-0bded40ce7d6","status":"InProgress","startTime":"2021-06-21T15:51:03.7468553Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"2262253d-3120-4020-867e-0adbc6fd883e","name":"2262253d-3120-4020-867e-0adbc6fd883e","status":"InProgress","startTime":"2021-06-28T09:26:53.5639676Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6515,7 +6790,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 15:51:05 GMT + - Mon, 28 Jun 2021 09:26:53 GMT expires: - '-1' pragma: @@ -6551,15 +6826,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/3bdd3255-8fd2-4a83-a71c-0bded40ce7d6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/2262253d-3120-4020-867e-0adbc6fd883e?api-version=2021-01-01 response: body: - string: '{"id":"3bdd3255-8fd2-4a83-a71c-0bded40ce7d6","name":"3bdd3255-8fd2-4a83-a71c-0bded40ce7d6","status":"InProgress","startTime":"2021-06-21T15:51:03.7468553Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"2262253d-3120-4020-867e-0adbc6fd883e","name":"2262253d-3120-4020-867e-0adbc6fd883e","status":"InProgress","startTime":"2021-06-28T09:26:53.5639676Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6568,7 +6843,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 15:51:06 GMT + - Mon, 28 Jun 2021 09:26:54 GMT expires: - '-1' pragma: @@ -6604,15 +6879,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/3bdd3255-8fd2-4a83-a71c-0bded40ce7d6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/2262253d-3120-4020-867e-0adbc6fd883e?api-version=2021-01-01 response: body: - string: '{"id":"3bdd3255-8fd2-4a83-a71c-0bded40ce7d6","name":"3bdd3255-8fd2-4a83-a71c-0bded40ce7d6","status":"InProgress","startTime":"2021-06-21T15:51:03.7468553Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"2262253d-3120-4020-867e-0adbc6fd883e","name":"2262253d-3120-4020-867e-0adbc6fd883e","status":"InProgress","startTime":"2021-06-28T09:26:53.5639676Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6621,7 +6896,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 15:51:07 GMT + - Mon, 28 Jun 2021 09:26:56 GMT expires: - '-1' pragma: @@ -6657,15 +6932,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/3bdd3255-8fd2-4a83-a71c-0bded40ce7d6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/2262253d-3120-4020-867e-0adbc6fd883e?api-version=2021-01-01 response: body: - string: '{"id":"3bdd3255-8fd2-4a83-a71c-0bded40ce7d6","name":"3bdd3255-8fd2-4a83-a71c-0bded40ce7d6","status":"InProgress","startTime":"2021-06-21T15:51:03.7468553Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"2262253d-3120-4020-867e-0adbc6fd883e","name":"2262253d-3120-4020-867e-0adbc6fd883e","status":"InProgress","startTime":"2021-06-28T09:26:53.5639676Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6674,7 +6949,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 15:51:09 GMT + - Mon, 28 Jun 2021 09:26:57 GMT expires: - '-1' pragma: @@ -6710,15 +6985,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/3bdd3255-8fd2-4a83-a71c-0bded40ce7d6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/2262253d-3120-4020-867e-0adbc6fd883e?api-version=2021-01-01 response: body: - string: '{"id":"3bdd3255-8fd2-4a83-a71c-0bded40ce7d6","name":"3bdd3255-8fd2-4a83-a71c-0bded40ce7d6","status":"InProgress","startTime":"2021-06-21T15:51:03.7468553Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"2262253d-3120-4020-867e-0adbc6fd883e","name":"2262253d-3120-4020-867e-0adbc6fd883e","status":"InProgress","startTime":"2021-06-28T09:26:53.5639676Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6727,7 +7002,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 15:51:10 GMT + - Mon, 28 Jun 2021 09:26:58 GMT expires: - '-1' pragma: @@ -6763,15 +7038,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/3bdd3255-8fd2-4a83-a71c-0bded40ce7d6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/2262253d-3120-4020-867e-0adbc6fd883e?api-version=2021-01-01 response: body: - string: '{"id":"3bdd3255-8fd2-4a83-a71c-0bded40ce7d6","name":"3bdd3255-8fd2-4a83-a71c-0bded40ce7d6","status":"InProgress","startTime":"2021-06-21T15:51:03.7468553Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"2262253d-3120-4020-867e-0adbc6fd883e","name":"2262253d-3120-4020-867e-0adbc6fd883e","status":"InProgress","startTime":"2021-06-28T09:26:53.5639676Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6780,7 +7055,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 15:51:11 GMT + - Mon, 28 Jun 2021 09:26:59 GMT expires: - '-1' pragma: @@ -6816,15 +7091,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/3bdd3255-8fd2-4a83-a71c-0bded40ce7d6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/2262253d-3120-4020-867e-0adbc6fd883e?api-version=2021-01-01 response: body: - string: '{"id":"3bdd3255-8fd2-4a83-a71c-0bded40ce7d6","name":"3bdd3255-8fd2-4a83-a71c-0bded40ce7d6","status":"InProgress","startTime":"2021-06-21T15:51:03.7468553Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"2262253d-3120-4020-867e-0adbc6fd883e","name":"2262253d-3120-4020-867e-0adbc6fd883e","status":"InProgress","startTime":"2021-06-28T09:26:53.5639676Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6833,7 +7108,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 15:51:12 GMT + - Mon, 28 Jun 2021 09:27:01 GMT expires: - '-1' pragma: @@ -6869,15 +7144,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/3bdd3255-8fd2-4a83-a71c-0bded40ce7d6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/2262253d-3120-4020-867e-0adbc6fd883e?api-version=2021-01-01 response: body: - string: '{"id":"3bdd3255-8fd2-4a83-a71c-0bded40ce7d6","name":"3bdd3255-8fd2-4a83-a71c-0bded40ce7d6","status":"InProgress","startTime":"2021-06-21T15:51:03.7468553Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"2262253d-3120-4020-867e-0adbc6fd883e","name":"2262253d-3120-4020-867e-0adbc6fd883e","status":"InProgress","startTime":"2021-06-28T09:26:53.5639676Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6886,7 +7161,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 15:51:14 GMT + - Mon, 28 Jun 2021 09:27:02 GMT expires: - '-1' pragma: @@ -6922,15 +7197,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/3bdd3255-8fd2-4a83-a71c-0bded40ce7d6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/2262253d-3120-4020-867e-0adbc6fd883e?api-version=2021-01-01 response: body: - string: '{"id":"3bdd3255-8fd2-4a83-a71c-0bded40ce7d6","name":"3bdd3255-8fd2-4a83-a71c-0bded40ce7d6","status":"InProgress","startTime":"2021-06-21T15:51:03.7468553Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"2262253d-3120-4020-867e-0adbc6fd883e","name":"2262253d-3120-4020-867e-0adbc6fd883e","status":"InProgress","startTime":"2021-06-28T09:26:53.5639676Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6939,7 +7214,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 15:51:15 GMT + - Mon, 28 Jun 2021 09:27:03 GMT expires: - '-1' pragma: @@ -6975,15 +7250,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/3bdd3255-8fd2-4a83-a71c-0bded40ce7d6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/2262253d-3120-4020-867e-0adbc6fd883e?api-version=2021-01-01 response: body: - string: '{"id":"3bdd3255-8fd2-4a83-a71c-0bded40ce7d6","name":"3bdd3255-8fd2-4a83-a71c-0bded40ce7d6","status":"InProgress","startTime":"2021-06-21T15:51:03.7468553Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"2262253d-3120-4020-867e-0adbc6fd883e","name":"2262253d-3120-4020-867e-0adbc6fd883e","status":"InProgress","startTime":"2021-06-28T09:26:53.5639676Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6992,7 +7267,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 15:51:16 GMT + - Mon, 28 Jun 2021 09:27:04 GMT expires: - '-1' pragma: @@ -7028,15 +7303,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/3bdd3255-8fd2-4a83-a71c-0bded40ce7d6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/2262253d-3120-4020-867e-0adbc6fd883e?api-version=2021-01-01 response: body: - string: '{"id":"3bdd3255-8fd2-4a83-a71c-0bded40ce7d6","name":"3bdd3255-8fd2-4a83-a71c-0bded40ce7d6","status":"InProgress","startTime":"2021-06-21T15:51:03.7468553Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"2262253d-3120-4020-867e-0adbc6fd883e","name":"2262253d-3120-4020-867e-0adbc6fd883e","status":"InProgress","startTime":"2021-06-28T09:26:53.5639676Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7045,7 +7320,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 15:51:17 GMT + - Mon, 28 Jun 2021 09:27:05 GMT expires: - '-1' pragma: @@ -7081,15 +7356,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/3bdd3255-8fd2-4a83-a71c-0bded40ce7d6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/2262253d-3120-4020-867e-0adbc6fd883e?api-version=2021-01-01 response: body: - string: '{"id":"3bdd3255-8fd2-4a83-a71c-0bded40ce7d6","name":"3bdd3255-8fd2-4a83-a71c-0bded40ce7d6","status":"InProgress","startTime":"2021-06-21T15:51:03.7468553Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"2262253d-3120-4020-867e-0adbc6fd883e","name":"2262253d-3120-4020-867e-0adbc6fd883e","status":"InProgress","startTime":"2021-06-28T09:26:53.5639676Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7098,7 +7373,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 15:51:18 GMT + - Mon, 28 Jun 2021 09:27:07 GMT expires: - '-1' pragma: @@ -7134,15 +7409,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/3bdd3255-8fd2-4a83-a71c-0bded40ce7d6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/2262253d-3120-4020-867e-0adbc6fd883e?api-version=2021-01-01 response: body: - string: '{"id":"3bdd3255-8fd2-4a83-a71c-0bded40ce7d6","name":"3bdd3255-8fd2-4a83-a71c-0bded40ce7d6","status":"InProgress","startTime":"2021-06-21T15:51:03.7468553Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"2262253d-3120-4020-867e-0adbc6fd883e","name":"2262253d-3120-4020-867e-0adbc6fd883e","status":"InProgress","startTime":"2021-06-28T09:26:53.5639676Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7151,7 +7426,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 15:51:21 GMT + - Mon, 28 Jun 2021 09:27:08 GMT expires: - '-1' pragma: @@ -7187,15 +7462,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/3bdd3255-8fd2-4a83-a71c-0bded40ce7d6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/2262253d-3120-4020-867e-0adbc6fd883e?api-version=2021-01-01 response: body: - string: '{"id":"3bdd3255-8fd2-4a83-a71c-0bded40ce7d6","name":"3bdd3255-8fd2-4a83-a71c-0bded40ce7d6","status":"InProgress","startTime":"2021-06-21T15:51:03.7468553Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"2262253d-3120-4020-867e-0adbc6fd883e","name":"2262253d-3120-4020-867e-0adbc6fd883e","status":"InProgress","startTime":"2021-06-28T09:26:53.5639676Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7204,7 +7479,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 15:51:22 GMT + - Mon, 28 Jun 2021 09:27:09 GMT expires: - '-1' pragma: @@ -7240,15 +7515,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/3bdd3255-8fd2-4a83-a71c-0bded40ce7d6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/2262253d-3120-4020-867e-0adbc6fd883e?api-version=2021-01-01 response: body: - string: '{"id":"3bdd3255-8fd2-4a83-a71c-0bded40ce7d6","name":"3bdd3255-8fd2-4a83-a71c-0bded40ce7d6","status":"InProgress","startTime":"2021-06-21T15:51:03.7468553Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"2262253d-3120-4020-867e-0adbc6fd883e","name":"2262253d-3120-4020-867e-0adbc6fd883e","status":"InProgress","startTime":"2021-06-28T09:26:53.5639676Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7257,7 +7532,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 15:51:23 GMT + - Mon, 28 Jun 2021 09:27:10 GMT expires: - '-1' pragma: @@ -7293,15 +7568,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/3bdd3255-8fd2-4a83-a71c-0bded40ce7d6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/2262253d-3120-4020-867e-0adbc6fd883e?api-version=2021-01-01 response: body: - string: '{"id":"3bdd3255-8fd2-4a83-a71c-0bded40ce7d6","name":"3bdd3255-8fd2-4a83-a71c-0bded40ce7d6","status":"InProgress","startTime":"2021-06-21T15:51:03.7468553Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"2262253d-3120-4020-867e-0adbc6fd883e","name":"2262253d-3120-4020-867e-0adbc6fd883e","status":"InProgress","startTime":"2021-06-28T09:26:53.5639676Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7310,7 +7585,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 15:51:24 GMT + - Mon, 28 Jun 2021 09:27:12 GMT expires: - '-1' pragma: @@ -7346,15 +7621,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/3bdd3255-8fd2-4a83-a71c-0bded40ce7d6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/2262253d-3120-4020-867e-0adbc6fd883e?api-version=2021-01-01 response: body: - string: '{"id":"3bdd3255-8fd2-4a83-a71c-0bded40ce7d6","name":"3bdd3255-8fd2-4a83-a71c-0bded40ce7d6","status":"InProgress","startTime":"2021-06-21T15:51:03.7468553Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"2262253d-3120-4020-867e-0adbc6fd883e","name":"2262253d-3120-4020-867e-0adbc6fd883e","status":"InProgress","startTime":"2021-06-28T09:26:53.5639676Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7363,7 +7638,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 15:51:25 GMT + - Mon, 28 Jun 2021 09:27:13 GMT expires: - '-1' pragma: @@ -7399,15 +7674,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/3bdd3255-8fd2-4a83-a71c-0bded40ce7d6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/2262253d-3120-4020-867e-0adbc6fd883e?api-version=2021-01-01 response: body: - string: '{"id":"3bdd3255-8fd2-4a83-a71c-0bded40ce7d6","name":"3bdd3255-8fd2-4a83-a71c-0bded40ce7d6","status":"InProgress","startTime":"2021-06-21T15:51:03.7468553Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"2262253d-3120-4020-867e-0adbc6fd883e","name":"2262253d-3120-4020-867e-0adbc6fd883e","status":"InProgress","startTime":"2021-06-28T09:26:53.5639676Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7416,7 +7691,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 15:51:26 GMT + - Mon, 28 Jun 2021 09:27:14 GMT expires: - '-1' pragma: @@ -7452,15 +7727,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/3bdd3255-8fd2-4a83-a71c-0bded40ce7d6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/2262253d-3120-4020-867e-0adbc6fd883e?api-version=2021-01-01 response: body: - string: '{"id":"3bdd3255-8fd2-4a83-a71c-0bded40ce7d6","name":"3bdd3255-8fd2-4a83-a71c-0bded40ce7d6","status":"InProgress","startTime":"2021-06-21T15:51:03.7468553Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"2262253d-3120-4020-867e-0adbc6fd883e","name":"2262253d-3120-4020-867e-0adbc6fd883e","status":"InProgress","startTime":"2021-06-28T09:26:53.5639676Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7469,7 +7744,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 15:51:28 GMT + - Mon, 28 Jun 2021 09:27:15 GMT expires: - '-1' pragma: @@ -7505,15 +7780,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/3bdd3255-8fd2-4a83-a71c-0bded40ce7d6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/2262253d-3120-4020-867e-0adbc6fd883e?api-version=2021-01-01 response: body: - string: '{"id":"3bdd3255-8fd2-4a83-a71c-0bded40ce7d6","name":"3bdd3255-8fd2-4a83-a71c-0bded40ce7d6","status":"InProgress","startTime":"2021-06-21T15:51:03.7468553Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"2262253d-3120-4020-867e-0adbc6fd883e","name":"2262253d-3120-4020-867e-0adbc6fd883e","status":"InProgress","startTime":"2021-06-28T09:26:53.5639676Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7522,7 +7797,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 15:51:29 GMT + - Mon, 28 Jun 2021 09:27:16 GMT expires: - '-1' pragma: @@ -7558,15 +7833,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/3bdd3255-8fd2-4a83-a71c-0bded40ce7d6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/2262253d-3120-4020-867e-0adbc6fd883e?api-version=2021-01-01 response: body: - string: '{"id":"3bdd3255-8fd2-4a83-a71c-0bded40ce7d6","name":"3bdd3255-8fd2-4a83-a71c-0bded40ce7d6","status":"InProgress","startTime":"2021-06-21T15:51:03.7468553Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"2262253d-3120-4020-867e-0adbc6fd883e","name":"2262253d-3120-4020-867e-0adbc6fd883e","status":"InProgress","startTime":"2021-06-28T09:26:53.5639676Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7575,7 +7850,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 15:51:30 GMT + - Mon, 28 Jun 2021 09:27:18 GMT expires: - '-1' pragma: @@ -7611,15 +7886,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/3bdd3255-8fd2-4a83-a71c-0bded40ce7d6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/2262253d-3120-4020-867e-0adbc6fd883e?api-version=2021-01-01 response: body: - string: '{"id":"3bdd3255-8fd2-4a83-a71c-0bded40ce7d6","name":"3bdd3255-8fd2-4a83-a71c-0bded40ce7d6","status":"InProgress","startTime":"2021-06-21T15:51:03.7468553Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"2262253d-3120-4020-867e-0adbc6fd883e","name":"2262253d-3120-4020-867e-0adbc6fd883e","status":"InProgress","startTime":"2021-06-28T09:26:53.5639676Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7628,7 +7903,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 15:51:31 GMT + - Mon, 28 Jun 2021 09:27:19 GMT expires: - '-1' pragma: @@ -7664,15 +7939,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/3bdd3255-8fd2-4a83-a71c-0bded40ce7d6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/2262253d-3120-4020-867e-0adbc6fd883e?api-version=2021-01-01 response: body: - string: '{"id":"3bdd3255-8fd2-4a83-a71c-0bded40ce7d6","name":"3bdd3255-8fd2-4a83-a71c-0bded40ce7d6","status":"InProgress","startTime":"2021-06-21T15:51:03.7468553Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"2262253d-3120-4020-867e-0adbc6fd883e","name":"2262253d-3120-4020-867e-0adbc6fd883e","status":"InProgress","startTime":"2021-06-28T09:26:53.5639676Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7681,7 +7956,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 15:51:34 GMT + - Mon, 28 Jun 2021 09:27:20 GMT expires: - '-1' pragma: @@ -7717,15 +7992,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/3bdd3255-8fd2-4a83-a71c-0bded40ce7d6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/2262253d-3120-4020-867e-0adbc6fd883e?api-version=2021-01-01 response: body: - string: '{"id":"3bdd3255-8fd2-4a83-a71c-0bded40ce7d6","name":"3bdd3255-8fd2-4a83-a71c-0bded40ce7d6","status":"InProgress","startTime":"2021-06-21T15:51:03.7468553Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"2262253d-3120-4020-867e-0adbc6fd883e","name":"2262253d-3120-4020-867e-0adbc6fd883e","status":"InProgress","startTime":"2021-06-28T09:26:53.5639676Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7734,7 +8009,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 15:51:35 GMT + - Mon, 28 Jun 2021 09:27:21 GMT expires: - '-1' pragma: @@ -7770,15 +8045,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/3bdd3255-8fd2-4a83-a71c-0bded40ce7d6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/2262253d-3120-4020-867e-0adbc6fd883e?api-version=2021-01-01 response: body: - string: '{"id":"3bdd3255-8fd2-4a83-a71c-0bded40ce7d6","name":"3bdd3255-8fd2-4a83-a71c-0bded40ce7d6","status":"InProgress","startTime":"2021-06-21T15:51:03.7468553Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"2262253d-3120-4020-867e-0adbc6fd883e","name":"2262253d-3120-4020-867e-0adbc6fd883e","status":"InProgress","startTime":"2021-06-28T09:26:53.5639676Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7787,7 +8062,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 15:51:36 GMT + - Mon, 28 Jun 2021 09:27:23 GMT expires: - '-1' pragma: @@ -7823,15 +8098,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/3bdd3255-8fd2-4a83-a71c-0bded40ce7d6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/2262253d-3120-4020-867e-0adbc6fd883e?api-version=2021-01-01 response: body: - string: '{"id":"3bdd3255-8fd2-4a83-a71c-0bded40ce7d6","name":"3bdd3255-8fd2-4a83-a71c-0bded40ce7d6","status":"InProgress","startTime":"2021-06-21T15:51:03.7468553Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"2262253d-3120-4020-867e-0adbc6fd883e","name":"2262253d-3120-4020-867e-0adbc6fd883e","status":"InProgress","startTime":"2021-06-28T09:26:53.5639676Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7840,7 +8115,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 15:51:37 GMT + - Mon, 28 Jun 2021 09:27:24 GMT expires: - '-1' pragma: @@ -7876,24 +8151,24 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/3bdd3255-8fd2-4a83-a71c-0bded40ce7d6?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/2262253d-3120-4020-867e-0adbc6fd883e?api-version=2021-01-01 response: body: - string: '{"id":"3bdd3255-8fd2-4a83-a71c-0bded40ce7d6","name":"3bdd3255-8fd2-4a83-a71c-0bded40ce7d6","status":"Succeeded","startTime":"2021-06-21T15:51:03.7468553Z","endTime":"2021-06-21T15:51:03.7468553Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"7ac18110-2e1b-42f2-8f4d-bc3e24136225"}}' + string: '{"id":"2262253d-3120-4020-867e-0adbc6fd883e","name":"2262253d-3120-4020-867e-0adbc6fd883e","status":"InProgress","startTime":"2021-06-28T09:26:53.5639676Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '304' + - '188' content-type: - application/json date: - - Mon, 21 Jun 2021 15:51:39 GMT + - Mon, 28 Jun 2021 09:27:25 GMT expires: - '-1' pragma: @@ -7929,15 +8204,121 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/2262253d-3120-4020-867e-0adbc6fd883e?api-version=2021-01-01 + response: + body: + string: '{"id":"2262253d-3120-4020-867e-0adbc6fd883e","name":"2262253d-3120-4020-867e-0adbc6fd883e","status":"InProgress","startTime":"2021-06-28T09:26:53.5639676Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 28 Jun 2021 09:27:26 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '122' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/2262253d-3120-4020-867e-0adbc6fd883e?api-version=2021-01-01 + response: + body: + string: '{"id":"2262253d-3120-4020-867e-0adbc6fd883e","name":"2262253d-3120-4020-867e-0adbc6fd883e","status":"Succeeded","startTime":"2021-06-28T09:26:53.5639676Z","endTime":"2021-06-28T09:26:53.5639676Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"4d0adcf8-a4e6-4938-b59e-c5f97d77c601"}}' + headers: + cache-control: + - no-cache + content-length: + - '304' + content-type: + - application/json + date: + - Mon, 28 Jun 2021 09:27:29 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '121' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/7ac18110-2e1b-42f2-8f4d-bc3e24136225?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/4d0adcf8-a4e6-4938-b59e-c5f97d77c601?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/7ac18110-2e1b-42f2-8f4d-bc3e24136225","name":"7ac18110-2e1b-42f2-8f4d-bc3e24136225","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT34.2839999S","extendedInfo":{"tasksList":[],"propertyBag":{}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"DeleteBackupData","status":"Completed","startTime":"2021-06-21T15:51:03.7468553Z","endTime":"2021-06-21T15:51:38.0308552Z","activityId":"7957b0b3-d2a8-11eb-bafc-c8f750f92764"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/4d0adcf8-a4e6-4938-b59e-c5f97d77c601","name":"4d0adcf8-a4e6-4938-b59e-c5f97d77c601","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT34.9049297S","extendedInfo":{"tasksList":[],"propertyBag":{}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"DeleteBackupData","status":"Completed","startTime":"2021-06-28T09:26:53.5639676Z","endTime":"2021-06-28T09:27:28.4688973Z","activityId":"f8c0d3b4-d7f2-11eb-ac3e-00155d657312"}}' headers: cache-control: - no-cache @@ -7946,7 +8327,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Jun 2021 15:51:39 GMT + - Mon, 28 Jun 2021 09:27:29 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_sql_restore_as_files.yaml b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_sql_restore_as_files.yaml index 38c784025de..ad170658e24 100644 --- a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_sql_restore_as_files.yaml +++ b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_sql_restore_as_files.yaml @@ -13,8 +13,8 @@ interactions: ParameterSetName: - -n -v -g --backup-management-type --query User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET @@ -30,7 +30,7 @@ interactions: content-type: - application/json date: - - Tue, 22 Jun 2021 04:39:58 GMT + - Mon, 28 Jun 2021 08:33:52 GMT expires: - '-1' pragma: @@ -66,27 +66,24 @@ interactions: ParameterSetName: - -g -v -c -n --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Biaasvmsqlworkload.existing%3Biaassqlext-win/protectedItems/SQLDataBase%3Bmssqlserver%3Bnavigate-testdb2?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;iaasvmsqlworkload.existing;iaassqlext-win/protectedItems/SQLDataBase;mssqlserver;navigate-testdb2","name":"SQLDataBase;mssqlserver;navigate-testdb2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"RestoreOperationStatusKPI":{"resourceHealthStatus":"TransientDegraded","resourceHealthDetails":[{"code":520123,"title":"UserErrorRestoreFailedTargetFileAlreadyExists","message":"Restore - as files failed because one or more files with the same name already exist - in the target folder.","recommendations":["Specify a different target folder - or move the existing files to a different location."]}]},"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"navigate-testdb2","serverName":"iaassqlext-win","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2021-06-22T03:40:59.8901219Z","protectedItemDataSourceId":"1622960563","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2021-05-22T16:40:11Z","recoveryPointCount":763,"policyState":"Inconsistent","recoveryModel":"FULL"},"protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;iaasvmsqlworkload.existing;iaassqlext-win","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing/providers/Microsoft.Compute/virtualMachines/iaassqlext-win","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupPolicies/HourlyLogBackup","lastRecoveryPoint":"2021-06-22T03:40:11Z","isArchiveEnabled":false}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;iaasvmsqlworkload.existing;iaassqlext-win/protectedItems/SQLDataBase;mssqlserver;navigate-testdb2","name":"SQLDataBase;mssqlserver;navigate-testdb2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]},"RestoreOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"navigate-testdb2","serverName":"iaassqlext-win","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2021-06-28T07:40:59.9032169Z","protectedItemDataSourceId":"1622960563","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2021-05-28T16:40:11Z","recoveryPointCount":767,"policyState":"Inconsistent","recoveryModel":"FULL"},"protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;iaasvmsqlworkload.existing;iaassqlext-win","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing/providers/Microsoft.Compute/virtualMachines/iaassqlext-win","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupPolicies/HourlyLogBackup","lastRecoveryPoint":"2021-06-28T07:40:11Z","isArchiveEnabled":false}}' headers: cache-control: - no-cache content-length: - - '2218' + - '1974' content-type: - application/json date: - - Tue, 22 Jun 2021 04:40:00 GMT + - Mon, 28 Jun 2021 08:33:53 GMT expires: - '-1' pragma: @@ -122,27 +119,24 @@ interactions: ParameterSetName: - -g -v -c -i --workload-type --query User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Biaasvmsqlworkload.existing%3Biaassqlext-win/protectedItems/SQLDataBase%3Bmssqlserver%3Bnavigate-testdb2?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;iaasvmsqlworkload.existing;iaassqlext-win/protectedItems/SQLDataBase;mssqlserver;navigate-testdb2","name":"SQLDataBase;mssqlserver;navigate-testdb2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"RestoreOperationStatusKPI":{"resourceHealthStatus":"TransientDegraded","resourceHealthDetails":[{"code":520123,"title":"UserErrorRestoreFailedTargetFileAlreadyExists","message":"Restore - as files failed because one or more files with the same name already exist - in the target folder.","recommendations":["Specify a different target folder - or move the existing files to a different location."]}]},"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"navigate-testdb2","serverName":"iaassqlext-win","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2021-06-22T03:40:59.8901219Z","protectedItemDataSourceId":"1622960563","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2021-05-22T16:40:11Z","recoveryPointCount":763,"policyState":"Inconsistent","recoveryModel":"FULL"},"protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;iaasvmsqlworkload.existing;iaassqlext-win","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing/providers/Microsoft.Compute/virtualMachines/iaassqlext-win","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupPolicies/HourlyLogBackup","lastRecoveryPoint":"2021-06-22T03:40:11Z","isArchiveEnabled":false}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;iaasvmsqlworkload.existing;iaassqlext-win/protectedItems/SQLDataBase;mssqlserver;navigate-testdb2","name":"SQLDataBase;mssqlserver;navigate-testdb2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]},"RestoreOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"navigate-testdb2","serverName":"iaassqlext-win","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2021-06-28T07:40:59.9032169Z","protectedItemDataSourceId":"1622960563","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2021-05-28T16:40:11Z","recoveryPointCount":767,"policyState":"Inconsistent","recoveryModel":"FULL"},"protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;iaasvmsqlworkload.existing;iaassqlext-win","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing/providers/Microsoft.Compute/virtualMachines/iaassqlext-win","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupPolicies/HourlyLogBackup","lastRecoveryPoint":"2021-06-28T07:40:11Z","isArchiveEnabled":false}}' headers: cache-control: - no-cache content-length: - - '2218' + - '1974' content-type: - application/json date: - - Tue, 22 Jun 2021 04:40:00 GMT + - Mon, 28 Jun 2021 08:33:54 GMT expires: - '-1' pragma: @@ -178,15 +172,33 @@ interactions: ParameterSetName: - -g -v -c -i --workload-type --query User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Biaasvmsqlworkload.existing%3Biaassqlext-win/protectedItems/SQLDataBase%3Bmssqlserver%3Bnavigate-testdb2/recoveryPoints?api-version=2021-01-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;iaasvmsqlworkload.existing;iaassqlext-win/protectedItems/SQLDataBase;mssqlserver;navigate-testdb2/recoveryPoints/15296745805334","name":"15296745805334","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2021-06-21T17:03:54Z","type":"Full","recoveryPointTierDetails":[{"type":2,"status":1}],"recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":false,"additionalInfo":"Recovery + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;iaasvmsqlworkload.existing;iaassqlext-win/protectedItems/SQLDataBase;mssqlserver;navigate-testdb2/recoveryPoints/6412167224530","name":"6412167224530","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2021-06-27T17:03:54Z","type":"Full","recoveryPointTierDetails":[{"type":2,"status":1}],"recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":false,"additionalInfo":"Recovery + point cannot be moved to Archive tier due to insufficient retention duration + specified in policy.. Update policy on the protected item with appropriate + retention setting and try again."}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;iaasvmsqlworkload.existing;iaassqlext-win/protectedItems/SQLDataBase;mssqlserver;navigate-testdb2/recoveryPoints/3765321731690","name":"3765321731690","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2021-06-26T17:03:54Z","type":"Full","recoveryPointTierDetails":[{"type":2,"status":1}],"recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":false,"additionalInfo":"Recovery + point cannot be moved to Archive tier due to insufficient retention duration + specified in policy.. Update policy on the protected item with appropriate + retention setting and try again."}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;iaasvmsqlworkload.existing;iaassqlext-win/protectedItems/SQLDataBase;mssqlserver;navigate-testdb2/recoveryPoints/11991483341110","name":"11991483341110","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2021-06-25T17:03:54Z","type":"Full","recoveryPointTierDetails":[{"type":2,"status":1}],"recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":false,"additionalInfo":"Recovery + point cannot be moved to Archive tier due to insufficient retention duration + specified in policy.. Update policy on the protected item with appropriate + retention setting and try again."}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;iaasvmsqlworkload.existing;iaassqlext-win/protectedItems/SQLDataBase;mssqlserver;navigate-testdb2/recoveryPoints/16260905942246","name":"16260905942246","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2021-06-24T17:03:54Z","type":"Full","recoveryPointTierDetails":[{"type":2,"status":1}],"recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":false,"additionalInfo":"Recovery + point cannot be moved to Archive tier due to insufficient retention duration + specified in policy.. Update policy on the protected item with appropriate + retention setting and try again."}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;iaasvmsqlworkload.existing;iaassqlext-win/protectedItems/SQLDataBase;mssqlserver;navigate-testdb2/recoveryPoints/12665884864450","name":"12665884864450","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2021-06-23T17:03:54Z","type":"Full","recoveryPointTierDetails":[{"type":2,"status":1}],"recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":false,"additionalInfo":"Recovery + point cannot be moved to Archive tier due to insufficient retention duration + specified in policy.. Update policy on the protected item with appropriate + retention setting and try again."}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;iaasvmsqlworkload.existing;iaassqlext-win/protectedItems/SQLDataBase;mssqlserver;navigate-testdb2/recoveryPoints/11499271461549","name":"11499271461549","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2021-06-22T17:03:54Z","type":"Full","recoveryPointTierDetails":[{"type":2,"status":1}],"recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":false,"additionalInfo":"Recovery + point cannot be moved to Archive tier due to insufficient retention duration + specified in policy.. Update policy on the protected item with appropriate + retention setting and try again."}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;iaasvmsqlworkload.existing;iaassqlext-win/protectedItems/SQLDataBase;mssqlserver;navigate-testdb2/recoveryPoints/15296745805334","name":"15296745805334","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2021-06-21T17:03:54Z","type":"Full","recoveryPointTierDetails":[{"type":2,"status":1}],"recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":false,"additionalInfo":"Recovery point cannot be moved to Archive tier due to insufficient retention duration specified in policy.. Update policy on the protected item with appropriate retention setting and try again."}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;iaasvmsqlworkload.existing;iaassqlext-win/protectedItems/SQLDataBase;mssqlserver;navigate-testdb2/recoveryPoints/16719375093265","name":"16719375093265","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2021-06-20T17:03:54Z","type":"Full","recoveryPointTierDetails":[{"type":2,"status":1}],"recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":false,"additionalInfo":"Recovery @@ -261,34 +273,16 @@ interactions: retention setting and try again."}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;iaasvmsqlworkload.existing;iaassqlext-win/protectedItems/SQLDataBase;mssqlserver;navigate-testdb2/recoveryPoints/1307355413023","name":"1307355413023","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2021-05-28T17:03:54Z","type":"Full","recoveryPointTierDetails":[{"type":2,"status":1}],"recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":false,"additionalInfo":"Recovery point cannot be moved to Archive tier due to insufficient retention duration specified in policy.. Update policy on the protected item with appropriate - retention setting and try again."}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;iaasvmsqlworkload.existing;iaassqlext-win/protectedItems/SQLDataBase;mssqlserver;navigate-testdb2/recoveryPoints/3366159847375","name":"3366159847375","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2021-05-27T17:03:54Z","type":"Full","recoveryPointTierDetails":[{"type":2,"status":1}],"recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":false,"additionalInfo":"Recovery - point cannot be moved to Archive tier due to insufficient retention duration - specified in policy.. Update policy on the protected item with appropriate - retention setting and try again."}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;iaasvmsqlworkload.existing;iaassqlext-win/protectedItems/SQLDataBase;mssqlserver;navigate-testdb2/recoveryPoints/10909419040088","name":"10909419040088","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2021-05-26T17:03:54Z","type":"Full","recoveryPointTierDetails":[{"type":2,"status":1}],"recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":false,"additionalInfo":"Recovery - point cannot be moved to Archive tier due to insufficient retention duration - specified in policy.. Update policy on the protected item with appropriate - retention setting and try again."}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;iaasvmsqlworkload.existing;iaassqlext-win/protectedItems/SQLDataBase;mssqlserver;navigate-testdb2/recoveryPoints/1589964114806","name":"1589964114806","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2021-05-25T17:03:54Z","type":"Full","recoveryPointTierDetails":[{"type":2,"status":1}],"recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":false,"additionalInfo":"Recovery - point cannot be moved to Archive tier due to insufficient retention duration - specified in policy.. Update policy on the protected item with appropriate - retention setting and try again."}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;iaasvmsqlworkload.existing;iaassqlext-win/protectedItems/SQLDataBase;mssqlserver;navigate-testdb2/recoveryPoints/3618838048619","name":"3618838048619","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2021-05-24T17:03:54Z","type":"Full","recoveryPointTierDetails":[{"type":2,"status":1}],"recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":false,"additionalInfo":"Recovery - point cannot be moved to Archive tier due to insufficient retention duration - specified in policy.. Update policy on the protected item with appropriate - retention setting and try again."}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;iaasvmsqlworkload.existing;iaassqlext-win/protectedItems/SQLDataBase;mssqlserver;navigate-testdb2/recoveryPoints/12126490460609","name":"12126490460609","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2021-05-23T17:03:54Z","type":"Full","recoveryPointTierDetails":[{"type":2,"status":1}],"recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":false,"additionalInfo":"Recovery - point cannot be moved to Archive tier due to insufficient retention duration - specified in policy.. Update policy on the protected item with appropriate - retention setting and try again."}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;iaasvmsqlworkload.existing;iaassqlext-win/protectedItems/SQLDataBase;mssqlserver;navigate-testdb2/recoveryPoints/5371311374301","name":"5371311374301","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2021-05-22T17:03:54Z","type":"Full","recoveryPointTierDetails":[{"type":2,"status":1}],"recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":false,"additionalInfo":"Recovery - point cannot be moved to Archive tier due to insufficient retention duration - specified in policy.. Update policy on the protected item with appropriate - retention setting and try again."}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;iaasvmsqlworkload.existing;iaassqlext-win/protectedItems/SQLDataBase;mssqlserver;navigate-testdb2/recoveryPoints/DefaultRangeRecoveryPoint","name":"DefaultRangeRecoveryPoint","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLPointInTimeRecoveryPoint","timeRanges":[{"startTime":"2021-05-23T04:40:02.7516499Z","endTime":"2021-06-22T03:40:11Z"}],"type":"Log"}}]}' + retention setting and try again."}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;iaasvmsqlworkload.existing;iaassqlext-win/protectedItems/SQLDataBase;mssqlserver;navigate-testdb2/recoveryPoints/DefaultRangeRecoveryPoint","name":"DefaultRangeRecoveryPoint","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLPointInTimeRecoveryPoint","timeRanges":[{"startTime":"2021-05-29T08:33:55.7338899Z","endTime":"2021-06-28T07:40:11Z"}],"type":"Log"}}]}' headers: cache-control: - no-cache content-length: - - '30721' + - '30725' content-type: - application/json date: - - Tue, 22 Jun 2021 04:40:01 GMT + - Mon, 28 Jun 2021 08:33:55 GMT expires: - '-1' pragma: @@ -325,8 +319,8 @@ interactions: - --vault-name -g --restore-mode --rp-name --filepath --target-container-name --item-name --container-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET @@ -342,7 +336,7 @@ interactions: content-type: - application/json date: - - Tue, 22 Jun 2021 04:40:02 GMT + - Mon, 28 Jun 2021 08:33:55 GMT expires: - '-1' pragma: @@ -379,27 +373,24 @@ interactions: - --vault-name -g --restore-mode --rp-name --filepath --target-container-name --item-name --container-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Biaasvmsqlworkload.existing%3Biaassqlext-win/protectedItems/SQLDataBase%3Bmssqlserver%3Bnavigate-testdb2?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;iaasvmsqlworkload.existing;iaassqlext-win/protectedItems/SQLDataBase;mssqlserver;navigate-testdb2","name":"SQLDataBase;mssqlserver;navigate-testdb2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"RestoreOperationStatusKPI":{"resourceHealthStatus":"TransientDegraded","resourceHealthDetails":[{"code":520123,"title":"UserErrorRestoreFailedTargetFileAlreadyExists","message":"Restore - as files failed because one or more files with the same name already exist - in the target folder.","recommendations":["Specify a different target folder - or move the existing files to a different location."]}]},"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"navigate-testdb2","serverName":"iaassqlext-win","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2021-06-22T03:40:59.8901219Z","protectedItemDataSourceId":"1622960563","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2021-05-22T16:40:11Z","recoveryPointCount":763,"policyState":"Inconsistent","recoveryModel":"FULL"},"protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;iaasvmsqlworkload.existing;iaassqlext-win","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing/providers/Microsoft.Compute/virtualMachines/iaassqlext-win","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupPolicies/HourlyLogBackup","lastRecoveryPoint":"2021-06-22T03:40:11Z","isArchiveEnabled":false}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;iaasvmsqlworkload.existing;iaassqlext-win/protectedItems/SQLDataBase;mssqlserver;navigate-testdb2","name":"SQLDataBase;mssqlserver;navigate-testdb2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]},"RestoreOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"navigate-testdb2","serverName":"iaassqlext-win","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2021-06-28T07:40:59.9032169Z","protectedItemDataSourceId":"1622960563","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2021-05-28T16:40:11Z","recoveryPointCount":767,"policyState":"Inconsistent","recoveryModel":"FULL"},"protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;iaasvmsqlworkload.existing;iaassqlext-win","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing/providers/Microsoft.Compute/virtualMachines/iaassqlext-win","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupPolicies/HourlyLogBackup","lastRecoveryPoint":"2021-06-28T07:40:11Z","isArchiveEnabled":false}}' headers: cache-control: - no-cache content-length: - - '2218' + - '1974' content-type: - application/json date: - - Tue, 22 Jun 2021 04:40:03 GMT + - Mon, 28 Jun 2021 08:33:56 GMT expires: - '-1' pragma: @@ -415,7 +406,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '147' x-powered-by: - ASP.NET status: @@ -436,27 +427,24 @@ interactions: - --vault-name -g --restore-mode --rp-name --filepath --target-container-name --item-name --container-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Biaasvmsqlworkload.existing%3Biaassqlext-win/protectedItems/SQLDataBase%3Bmssqlserver%3Bnavigate-testdb2?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;iaasvmsqlworkload.existing;iaassqlext-win/protectedItems/SQLDataBase;mssqlserver;navigate-testdb2","name":"SQLDataBase;mssqlserver;navigate-testdb2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"RestoreOperationStatusKPI":{"resourceHealthStatus":"TransientDegraded","resourceHealthDetails":[{"code":520123,"title":"UserErrorRestoreFailedTargetFileAlreadyExists","message":"Restore - as files failed because one or more files with the same name already exist - in the target folder.","recommendations":["Specify a different target folder - or move the existing files to a different location."]}]},"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"navigate-testdb2","serverName":"iaassqlext-win","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2021-06-22T03:40:59.8901219Z","protectedItemDataSourceId":"1622960563","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2021-05-22T16:40:11Z","recoveryPointCount":763,"policyState":"Inconsistent","recoveryModel":"FULL"},"protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;iaasvmsqlworkload.existing;iaassqlext-win","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing/providers/Microsoft.Compute/virtualMachines/iaassqlext-win","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupPolicies/HourlyLogBackup","lastRecoveryPoint":"2021-06-22T03:40:11Z","isArchiveEnabled":false}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;iaasvmsqlworkload.existing;iaassqlext-win/protectedItems/SQLDataBase;mssqlserver;navigate-testdb2","name":"SQLDataBase;mssqlserver;navigate-testdb2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]},"RestoreOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"navigate-testdb2","serverName":"iaassqlext-win","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2021-06-28T07:40:59.9032169Z","protectedItemDataSourceId":"1622960563","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2021-05-28T16:40:11Z","recoveryPointCount":767,"policyState":"Inconsistent","recoveryModel":"FULL"},"protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;iaasvmsqlworkload.existing;iaassqlext-win","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing/providers/Microsoft.Compute/virtualMachines/iaassqlext-win","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupPolicies/HourlyLogBackup","lastRecoveryPoint":"2021-06-28T07:40:11Z","isArchiveEnabled":false}}' headers: cache-control: - no-cache content-length: - - '2218' + - '1974' content-type: - application/json date: - - Tue, 22 Jun 2021 04:40:03 GMT + - Mon, 28 Jun 2021 08:33:56 GMT expires: - '-1' pragma: @@ -493,15 +481,15 @@ interactions: - --vault-name -g --restore-mode --rp-name --filepath --target-container-name --item-name --container-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Biaasvmsqlworkload.existing%3Biaassqlext-win/protectedItems/SQLDataBase%3Bmssqlserver%3Bnavigate-testdb2/recoveryPoints/15296745805334?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Biaasvmsqlworkload.existing%3Biaassqlext-win/protectedItems/SQLDataBase%3Bmssqlserver%3Bnavigate-testdb2/recoveryPoints/6412167224530?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;iaasvmsqlworkload.existing;iaassqlext-win/protectedItems/SQLDataBase;mssqlserver;navigate-testdb2/recoveryPoints/15296745805334","name":"15296745805334","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","extendedInfo":{"dataDirectoryTimeInUTC":"2021-06-21T17:03:54Z","dataDirectoryPaths":[{"type":"Data","path":"F:\\Data\\navigate-testdb2.mdf","logicalName":"navigate-testdb2"},{"type":"Log","path":"F:\\Log\\navigate-testdb2_log.ldf","logicalName":"navigate-testdb2_log"}]},"recoveryPointTimeInUTC":"2021-06-21T17:03:54Z","type":"Full","recoveryPointTierDetails":[{"type":2,"status":1}],"recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":false,"additionalInfo":"Recovery + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;iaasvmsqlworkload.existing;iaassqlext-win/protectedItems/SQLDataBase;mssqlserver;navigate-testdb2/recoveryPoints/6412167224530","name":"6412167224530","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","extendedInfo":{"dataDirectoryTimeInUTC":"2021-06-27T17:03:54Z","dataDirectoryPaths":[{"type":"Data","path":"F:\\Data\\navigate-testdb2.mdf","logicalName":"navigate-testdb2"},{"type":"Log","path":"F:\\Log\\navigate-testdb2_log.ldf","logicalName":"navigate-testdb2_log"}]},"recoveryPointTimeInUTC":"2021-06-27T17:03:54Z","type":"Full","recoveryPointTierDetails":[{"type":2,"status":1}],"recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":false,"additionalInfo":"Recovery point cannot be moved to Archive tier due to insufficient retention duration specified in policy.. Update policy on the protected item with appropriate retention setting and try again."}}}}' @@ -509,11 +497,11 @@ interactions: cache-control: - no-cache content-length: - - '1240' + - '1238' content-type: - application/json date: - - Tue, 22 Jun 2021 04:40:03 GMT + - Mon, 28 Jun 2021 08:33:57 GMT expires: - '-1' pragma: @@ -549,24 +537,24 @@ interactions: ParameterSetName: - --vault-name -g --recovery-config User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Biaasvmsqlworkload.existing%3Biaassqlext-win?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Biaasvmsqlworkload.existing%3Biaassqlext-win/protectedItems/SQLDataBase%3Bmssqlserver%3Bnavigate-testdb2?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;iaasvmsqlworkload.existing;iaassqlext-win","name":"VMAppContainer;Compute;iaasvmsqlworkload.existing;iaassqlext-win","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing/providers/Microsoft.Compute/virtualMachines/iaassqlext-win","lastUpdatedTime":"2018-08-24T08:51:53.6746573Z","extendedInfo":{"hostServerName":"iaassqlext-win","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SQL","itemCount":38,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"iaassqlext-win","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;iaasvmsqlworkload.existing;iaassqlext-win/protectedItems/SQLDataBase;mssqlserver;navigate-testdb2","name":"SQLDataBase;mssqlserver;navigate-testdb2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]},"RestoreOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"navigate-testdb2","serverName":"iaassqlext-win","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2021-06-28T07:40:59.9032169Z","protectedItemDataSourceId":"1622960563","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2021-05-28T16:40:11Z","recoveryPointCount":767,"policyState":"Inconsistent","recoveryModel":"FULL"},"protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;iaasvmsqlworkload.existing;iaassqlext-win","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing/providers/Microsoft.Compute/virtualMachines/iaassqlext-win","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupPolicies/HourlyLogBackup","lastRecoveryPoint":"2021-06-28T07:40:11Z","isArchiveEnabled":false}}' headers: cache-control: - no-cache content-length: - - '1221' + - '1974' content-type: - application/json date: - - Tue, 22 Jun 2021 04:40:04 GMT + - Mon, 28 Jun 2021 08:33:58 GMT expires: - '-1' pragma: @@ -589,12 +577,7 @@ interactions: code: 200 message: OK - request: - body: '{"properties": {"objectType": "AzureWorkloadSQLRestoreRequest", "recoveryType": - "AlternateLocation", "targetInfo": {"overwriteOption": "Overwrite", "containerId": - "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;iaasvmsqlworkload.existing;iaassqlext-win", - "targetDirectoryForFileRestore": "C:"}, "recoveryMode": "FileRecovery", "targetVirtualMachineId": - "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing/providers/Microsoft.Compute/virtualMachines/iaassqlext-win", - "shouldUseAlternateTargetLocation": true, "isNonRecoverable": false}}' + body: null headers: Accept: - application/json @@ -604,48 +587,51 @@ interactions: - backup restore restore-azurewl Connection: - keep-alive - Content-Length: - - '772' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - --vault-name -g --recovery-config User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Biaasvmsqlworkload.existing%3Biaassqlext-win/protectedItems/SQLDataBase%3Bmssqlserver%3Bnavigate-testdb2/recoveryPoints/15296745805334/restore?api-version=2021-01-01 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Biaasvmsqlworkload.existing%3Biaassqlext-win/protectedItems/SQLDataBase%3Bmssqlserver%3Bnavigate-testdb2/recoveryPoints/6412167224530?api-version=2021-01-01 response: body: - string: '' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;iaasvmsqlworkload.existing;iaassqlext-win/protectedItems/SQLDataBase;mssqlserver;navigate-testdb2/recoveryPoints/6412167224530","name":"6412167224530","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","extendedInfo":{"dataDirectoryTimeInUTC":"2021-06-27T17:03:54Z","dataDirectoryPaths":[{"type":"Data","path":"F:\\Data\\navigate-testdb2.mdf","logicalName":"navigate-testdb2"},{"type":"Log","path":"F:\\Log\\navigate-testdb2_log.ldf","logicalName":"navigate-testdb2_log"}]},"recoveryPointTimeInUTC":"2021-06-27T17:03:54Z","type":"Full","recoveryPointTierDetails":[{"type":2,"status":1}],"recoveryPointMoveReadinessInfo":{"ArchivedRP":{"isReadyForMove":false,"additionalInfo":"Recovery + point cannot be moved to Archive tier due to insufficient retention duration + specified in policy.. Update policy on the protected item with appropriate + retention setting and try again."}}}}' headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;iaasvmsqlworkload.existing;iaassqlext-win/protectedItems/SQLDataBase;mssqlserver;navigate-testdb2/operationsStatus/e86e8912-2b22-4280-9c4b-4a70a8747b0b?api-version=2021-01-01 cache-control: - no-cache content-length: - - '0' + - '1238' + content-type: + - application/json date: - - Tue, 22 Jun 2021 04:40:05 GMT + - Mon, 28 Jun 2021 08:33:58 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;iaasvmsqlworkload.existing;iaassqlext-win/protectedItems/SQLDataBase;mssqlserver;navigate-testdb2/operationResults/e86e8912-2b22-4280-9c4b-4a70a8747b0b?api-version=2021-01-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -660,24 +646,24 @@ interactions: ParameterSetName: - --vault-name -g --recovery-config User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupOperations/e86e8912-2b22-4280-9c4b-4a70a8747b0b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Biaasvmsqlworkload.existing%3Biaassqlext-win?api-version=2021-01-01 response: body: - string: '{"id":"e86e8912-2b22-4280-9c4b-4a70a8747b0b","name":"e86e8912-2b22-4280-9c4b-4a70a8747b0b","status":"InProgress","startTime":"2021-06-22T04:40:06.0672247Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;iaasvmsqlworkload.existing;iaassqlext-win","name":"VMAppContainer;Compute;iaasvmsqlworkload.existing;iaassqlext-win","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing/providers/Microsoft.Compute/virtualMachines/iaassqlext-win","lastUpdatedTime":"2018-08-24T08:51:53.6746573Z","extendedInfo":{"hostServerName":"iaassqlext-win","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SQL","itemCount":38,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"iaassqlext-win","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}' headers: cache-control: - no-cache content-length: - - '188' + - '1221' content-type: - application/json date: - - Tue, 22 Jun 2021 04:40:06 GMT + - Mon, 28 Jun 2021 08:33:58 GMT expires: - '-1' pragma: @@ -699,6 +685,64 @@ interactions: status: code: 200 message: OK +- request: + body: '{"properties": {"objectType": "AzureWorkloadSQLRestoreRequest", "recoveryType": + "AlternateLocation", "targetInfo": {"overwriteOption": "Overwrite", "containerId": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;iaasvmsqlworkload.existing;iaassqlext-win", + "targetDirectoryForFileRestore": "C:"}, "recoveryMode": "FileRecovery", "targetVirtualMachineId": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing/providers/Microsoft.Compute/virtualMachines/iaassqlext-win", + "shouldUseAlternateTargetLocation": true, "isNonRecoverable": false}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup restore restore-azurewl + Connection: + - keep-alive + Content-Length: + - '772' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - --vault-name -g --recovery-config + User-Agent: + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Biaasvmsqlworkload.existing%3Biaassqlext-win/protectedItems/SQLDataBase%3Bmssqlserver%3Bnavigate-testdb2/recoveryPoints/6412167224530/restore?api-version=2021-01-01 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;iaasvmsqlworkload.existing;iaassqlext-win/protectedItems/SQLDataBase;mssqlserver;navigate-testdb2/operationsStatus/64b4b935-90cf-4bcb-8d5b-199cca31f589?api-version=2021-01-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Mon, 28 Jun 2021 08:33:59 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;iaasvmsqlworkload.existing;iaassqlext-win/protectedItems/SQLDataBase;mssqlserver;navigate-testdb2/operationResults/64b4b935-90cf-4bcb-8d5b-199cca31f589?api-version=2021-01-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted - request: body: null headers: @@ -713,24 +757,24 @@ interactions: ParameterSetName: - --vault-name -g --recovery-config User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupOperations/e86e8912-2b22-4280-9c4b-4a70a8747b0b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupOperations/64b4b935-90cf-4bcb-8d5b-199cca31f589?api-version=2021-01-01 response: body: - string: '{"id":"e86e8912-2b22-4280-9c4b-4a70a8747b0b","name":"e86e8912-2b22-4280-9c4b-4a70a8747b0b","status":"Succeeded","startTime":"2021-06-22T04:40:06.0672247Z","endTime":"2021-06-22T04:40:06.0672247Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"e86e8912-2b22-4280-9c4b-4a70a8747b0b"}}' + string: '{"id":"64b4b935-90cf-4bcb-8d5b-199cca31f589","name":"64b4b935-90cf-4bcb-8d5b-199cca31f589","status":"InProgress","startTime":"2021-06-28T08:34:00.3670239Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '304' + - '188' content-type: - application/json date: - - Tue, 22 Jun 2021 04:40:08 GMT + - Mon, 28 Jun 2021 08:34:00 GMT expires: - '-1' pragma: @@ -746,7 +790,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '149' x-powered-by: - ASP.NET status: @@ -766,34 +810,30 @@ interactions: ParameterSetName: - --vault-name -g --recovery-config User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupJobs/e86e8912-2b22-4280-9c4b-4a70a8747b0b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupOperations/64b4b935-90cf-4bcb-8d5b-199cca31f589?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupJobs/e86e8912-2b22-4280-9c4b-4a70a8747b0b","name":"e86e8912-2b22-4280-9c4b-4a70a8747b0b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SQLDataBase","duration":"PT2.6626113S","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Restore - as files"}},"isUserTriggered":true,"entityFriendlyName":"navigate-testdb2 - [iaassqlext-win]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-06-22T04:40:06.0672247Z","activityId":"e9e675c8-d313-11eb-b2de-c8f750f92764"}}' + string: '{"id":"64b4b935-90cf-4bcb-8d5b-199cca31f589","name":"64b4b935-90cf-4bcb-8d5b-199cca31f589","status":"Succeeded","startTime":"2021-06-28T08:34:00.3670239Z","endTime":"2021-06-28T08:34:00.3670239Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"64b4b935-90cf-4bcb-8d5b-199cca31f589"}}' headers: cache-control: - no-cache content-length: - - '845' + - '304' content-type: - application/json date: - - Tue, 22 Jun 2021 04:40:08 GMT + - Mon, 28 Jun 2021 08:34:01 GMT expires: - '-1' pragma: - no-cache server: - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -803,7 +843,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '148' x-powered-by: - ASP.NET status: @@ -817,24 +857,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup restore restore-azurewl Connection: - keep-alive ParameterSetName: - - -v -g -n + - --vault-name -g --recovery-config User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupJobs/e86e8912-2b22-4280-9c4b-4a70a8747b0b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupJobs/64b4b935-90cf-4bcb-8d5b-199cca31f589?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupJobs/e86e8912-2b22-4280-9c4b-4a70a8747b0b","name":"e86e8912-2b22-4280-9c4b-4a70a8747b0b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SQLDataBase","duration":"PT2.9584153S","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupJobs/64b4b935-90cf-4bcb-8d5b-199cca31f589","name":"64b4b935-90cf-4bcb-8d5b-199cca31f589","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SQLDataBase","duration":"PT2.4859478S","extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Restore as files"}},"isUserTriggered":true,"entityFriendlyName":"navigate-testdb2 - [iaassqlext-win]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-06-22T04:40:06.0672247Z","activityId":"e9e675c8-d313-11eb-b2de-c8f750f92764"}}' + [iaassqlext-win]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-06-28T08:34:00.3670239Z","activityId":"94b40c5e-d7eb-11eb-85fb-00155d657312"}}' headers: cache-control: - no-cache @@ -843,7 +883,7 @@ interactions: content-type: - application/json date: - - Tue, 22 Jun 2021 04:40:08 GMT + - Mon, 28 Jun 2021 08:34:01 GMT expires: - '-1' pragma: @@ -880,18 +920,18 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupJobs/e86e8912-2b22-4280-9c4b-4a70a8747b0b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupJobs/64b4b935-90cf-4bcb-8d5b-199cca31f589?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupJobs/e86e8912-2b22-4280-9c4b-4a70a8747b0b","name":"e86e8912-2b22-4280-9c4b-4a70a8747b0b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SQLDataBase","duration":"PT3.1434248S","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupJobs/64b4b935-90cf-4bcb-8d5b-199cca31f589","name":"64b4b935-90cf-4bcb-8d5b-199cca31f589","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SQLDataBase","duration":"PT2.9228743S","extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Restore as files"}},"isUserTriggered":true,"entityFriendlyName":"navigate-testdb2 - [iaassqlext-win]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-06-22T04:40:06.0672247Z","activityId":"e9e675c8-d313-11eb-b2de-c8f750f92764"}}' + [iaassqlext-win]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-06-28T08:34:00.3670239Z","activityId":"94b40c5e-d7eb-11eb-85fb-00155d657312"}}' headers: cache-control: - no-cache @@ -900,7 +940,7 @@ interactions: content-type: - application/json date: - - Tue, 22 Jun 2021 04:40:08 GMT + - Mon, 28 Jun 2021 08:34:02 GMT expires: - '-1' pragma: @@ -917,7 +957,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '149' x-powered-by: - ASP.NET status: @@ -937,27 +977,27 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupJobs/e86e8912-2b22-4280-9c4b-4a70a8747b0b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupJobs/64b4b935-90cf-4bcb-8d5b-199cca31f589?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupJobs/e86e8912-2b22-4280-9c4b-4a70a8747b0b","name":"e86e8912-2b22-4280-9c4b-4a70a8747b0b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SQLDataBase","duration":"PT33.3682539S","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupJobs/64b4b935-90cf-4bcb-8d5b-199cca31f589","name":"64b4b935-90cf-4bcb-8d5b-199cca31f589","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SQLDataBase","duration":"PT3.1792621S","extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Restore as files"}},"isUserTriggered":true,"entityFriendlyName":"navigate-testdb2 - [iaassqlext-win]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-06-22T04:40:06.0672247Z","activityId":"e9e675c8-d313-11eb-b2de-c8f750f92764"}}' + [iaassqlext-win]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-06-28T08:34:00.3670239Z","activityId":"94b40c5e-d7eb-11eb-85fb-00155d657312"}}' headers: cache-control: - no-cache content-length: - - '846' + - '845' content-type: - application/json date: - - Tue, 22 Jun 2021 04:40:38 GMT + - Mon, 28 Jun 2021 08:34:03 GMT expires: - '-1' pragma: @@ -974,7 +1014,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '148' x-powered-by: - ASP.NET status: @@ -994,27 +1034,27 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupJobs/e86e8912-2b22-4280-9c4b-4a70a8747b0b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupJobs/64b4b935-90cf-4bcb-8d5b-199cca31f589?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupJobs/e86e8912-2b22-4280-9c4b-4a70a8747b0b","name":"e86e8912-2b22-4280-9c4b-4a70a8747b0b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SQLDataBase","duration":"PT1M3.5886135S","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupJobs/64b4b935-90cf-4bcb-8d5b-199cca31f589","name":"64b4b935-90cf-4bcb-8d5b-199cca31f589","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SQLDataBase","duration":"PT33.4334214S","extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Restore as files"}},"isUserTriggered":true,"entityFriendlyName":"navigate-testdb2 - [iaassqlext-win]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-06-22T04:40:06.0672247Z","activityId":"e9e675c8-d313-11eb-b2de-c8f750f92764"}}' + [iaassqlext-win]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-06-28T08:34:00.3670239Z","activityId":"94b40c5e-d7eb-11eb-85fb-00155d657312"}}' headers: cache-control: - no-cache content-length: - - '847' + - '846' content-type: - application/json date: - - Tue, 22 Jun 2021 04:41:09 GMT + - Mon, 28 Jun 2021 08:34:33 GMT expires: - '-1' pragma: @@ -1031,7 +1071,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '147' x-powered-by: - ASP.NET status: @@ -1051,27 +1091,27 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupJobs/e86e8912-2b22-4280-9c4b-4a70a8747b0b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupJobs/64b4b935-90cf-4bcb-8d5b-199cca31f589?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupJobs/e86e8912-2b22-4280-9c4b-4a70a8747b0b","name":"e86e8912-2b22-4280-9c4b-4a70a8747b0b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SQLDataBase","duration":"PT1M33.8139819S","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupJobs/64b4b935-90cf-4bcb-8d5b-199cca31f589","name":"64b4b935-90cf-4bcb-8d5b-199cca31f589","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SQLDataBase","duration":"PT1M3.7363672S","extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Restore as files"}},"isUserTriggered":true,"entityFriendlyName":"navigate-testdb2 - [iaassqlext-win]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-06-22T04:40:06.0672247Z","activityId":"e9e675c8-d313-11eb-b2de-c8f750f92764"}}' + [iaassqlext-win]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-06-28T08:34:00.3670239Z","activityId":"94b40c5e-d7eb-11eb-85fb-00155d657312"}}' headers: cache-control: - no-cache content-length: - - '848' + - '847' content-type: - application/json date: - - Tue, 22 Jun 2021 04:41:39 GMT + - Mon, 28 Jun 2021 08:35:04 GMT expires: - '-1' pragma: @@ -1088,7 +1128,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '146' x-powered-by: - ASP.NET status: @@ -1108,27 +1148,27 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupJobs/e86e8912-2b22-4280-9c4b-4a70a8747b0b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupJobs/64b4b935-90cf-4bcb-8d5b-199cca31f589?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupJobs/e86e8912-2b22-4280-9c4b-4a70a8747b0b","name":"e86e8912-2b22-4280-9c4b-4a70a8747b0b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SQLDataBase","duration":"PT2M4.048534S","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupJobs/64b4b935-90cf-4bcb-8d5b-199cca31f589","name":"64b4b935-90cf-4bcb-8d5b-199cca31f589","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SQLDataBase","duration":"PT1M34.0327801S","extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Restore as files"}},"isUserTriggered":true,"entityFriendlyName":"navigate-testdb2 - [iaassqlext-win]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-06-22T04:40:06.0672247Z","activityId":"e9e675c8-d313-11eb-b2de-c8f750f92764"}}' + [iaassqlext-win]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-06-28T08:34:00.3670239Z","activityId":"94b40c5e-d7eb-11eb-85fb-00155d657312"}}' headers: cache-control: - no-cache content-length: - - '846' + - '848' content-type: - application/json date: - - Tue, 22 Jun 2021 04:42:09 GMT + - Mon, 28 Jun 2021 08:35:34 GMT expires: - '-1' pragma: @@ -1145,7 +1185,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '145' x-powered-by: - ASP.NET status: @@ -1165,27 +1205,27 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupJobs/e86e8912-2b22-4280-9c4b-4a70a8747b0b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupJobs/64b4b935-90cf-4bcb-8d5b-199cca31f589?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupJobs/e86e8912-2b22-4280-9c4b-4a70a8747b0b","name":"e86e8912-2b22-4280-9c4b-4a70a8747b0b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SQLDataBase","duration":"PT2M34.2515302S","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupJobs/64b4b935-90cf-4bcb-8d5b-199cca31f589","name":"64b4b935-90cf-4bcb-8d5b-199cca31f589","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SQLDataBase","duration":"PT2M4.3138972S","extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Restore as files"}},"isUserTriggered":true,"entityFriendlyName":"navigate-testdb2 - [iaassqlext-win]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-06-22T04:40:06.0672247Z","activityId":"e9e675c8-d313-11eb-b2de-c8f750f92764"}}' + [iaassqlext-win]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-06-28T08:34:00.3670239Z","activityId":"94b40c5e-d7eb-11eb-85fb-00155d657312"}}' headers: cache-control: - no-cache content-length: - - '848' + - '847' content-type: - application/json date: - - Tue, 22 Jun 2021 04:42:39 GMT + - Mon, 28 Jun 2021 08:36:03 GMT expires: - '-1' pragma: @@ -1202,7 +1242,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '144' x-powered-by: - ASP.NET status: @@ -1222,27 +1262,27 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupJobs/e86e8912-2b22-4280-9c4b-4a70a8747b0b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupJobs/64b4b935-90cf-4bcb-8d5b-199cca31f589?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupJobs/e86e8912-2b22-4280-9c4b-4a70a8747b0b","name":"e86e8912-2b22-4280-9c4b-4a70a8747b0b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SQLDataBase","duration":"PT3M4.50535S","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupJobs/64b4b935-90cf-4bcb-8d5b-199cca31f589","name":"64b4b935-90cf-4bcb-8d5b-199cca31f589","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SQLDataBase","duration":"PT2M34.5902313S","extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Restore as files"}},"isUserTriggered":true,"entityFriendlyName":"navigate-testdb2 - [iaassqlext-win]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-06-22T04:40:06.0672247Z","activityId":"e9e675c8-d313-11eb-b2de-c8f750f92764"}}' + [iaassqlext-win]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-06-28T08:34:00.3670239Z","activityId":"94b40c5e-d7eb-11eb-85fb-00155d657312"}}' headers: cache-control: - no-cache content-length: - - '845' + - '848' content-type: - application/json date: - - Tue, 22 Jun 2021 04:43:10 GMT + - Mon, 28 Jun 2021 08:36:34 GMT expires: - '-1' pragma: @@ -1259,7 +1299,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' + - '143' x-powered-by: - ASP.NET status: @@ -1279,29 +1319,33 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.25.0 + - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.12.0 Azure-SDK-For-Python AZURECLI/2.24.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupJobs/e86e8912-2b22-4280-9c4b-4a70a8747b0b?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupJobs/64b4b935-90cf-4bcb-8d5b-199cca31f589?api-version=2021-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupJobs/e86e8912-2b22-4280-9c4b-4a70a8747b0b","name":"e86e8912-2b22-4280-9c4b-4a70a8747b0b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SQLDataBase","duration":"PT3M2.7593643S","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","status":"Completed"}],"propertyBag":{"Data Transferred (in - MB)":"4.0825","Job Type":"Restore as files","RestoreRecoveryPointTime":"2021-06-21 - 17:03:54Z","RestoreDestination":"C:"}},"isUserTriggered":true,"entityFriendlyName":"navigate-testdb2 + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupJobs/64b4b935-90cf-4bcb-8d5b-199cca31f589","name":"64b4b935-90cf-4bcb-8d5b-199cca31f589","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","actionsInfo":[1],"workloadType":"SQLDataBase","duration":"PT3M2.5842723S","errorDetails":[{"errorCode":520123,"errorString":"Restore + as files failed because one or more files with the same name already exist + in the target folder.","errorTitle":"UserErrorRestoreFailedTargetFileAlreadyExists","recommendations":["Specify + a different target folder or move the existing files to a different location."]}],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","status":"Failed"}],"propertyBag":{"Data Transferred (in + MB)":"0","Job Type":"Restore as files","RestoreRecoveryPointTime":"2021-06-27 + 17:03:54Z","RestoreDestination":"C:"},"dynamicErrorMessage":"C:navigate-testdb2_Full_6412167224530_2021-06-27_17-03-54.bak + already exists."},"isUserTriggered":true,"entityFriendlyName":"navigate-testdb2 [iaassqlext-win]","backupManagementType":"AzureWorkload","operation":"Restore - (Full)","status":"Completed","startTime":"2021-06-22T04:40:06.0672247Z","endTime":"2021-06-22T04:43:08.826589Z","activityId":"e9e675c8-d313-11eb-b2de-c8f750f92764"}}' + (Full)","status":"Failed","startTime":"2021-06-28T08:34:00.3670239Z","endTime":"2021-06-28T08:37:02.9512962Z","activityId":"94b40c5e-d7eb-11eb-85fb-00155d657312"}}' headers: cache-control: - no-cache content-length: - - '1004' + - '1424' content-type: - application/json date: - - Tue, 22 Jun 2021 04:43:40 GMT + - Mon, 28 Jun 2021 08:37:04 GMT expires: - '-1' pragma: @@ -1318,7 +1362,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '142' x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/test_backup_commands.py b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/test_backup_commands.py index 86d3fe96008..51153908713 100644 --- a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/test_backup_commands.py +++ b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/test_backup_commands.py @@ -707,4 +707,45 @@ def test_backup_disk_exclusion(self, resource_group, vault_name, vm_name, storag self.check("properties.operation", "Restore"), self.check("properties.status", "Completed"), self.check("resourceGroup", '{rg}') - ]) \ No newline at end of file + ]) + + @ResourceGroupPreparer(location="southeastasia") + @VaultPreparer(soft_delete=False) + @VMPreparer() + @ItemPreparer() + @RPPreparer() + @StorageAccountPreparer(location="southeastasia") + def test_backup_archive (self, resource_group, vault_name, vm_name, storage_account): + self.kwargs.update({ + 'vault': vault_name, + 'vm': vm_name, + 'rg': resource_group, + 'sa': storage_account + }) + + # Get Container + self.kwargs['container'] = self.cmd('backup container show -n {vm} -v {vault} -g {rg} --backup-management-type AzureIaasVM --query properties.friendlyName').get_output_in_json() + + # Get Item + self.kwargs['item'] = self.cmd('backup item list -g {rg} -v {vault} -c {container} --backup-management-type AzureIaasVM --workload-type VM --query [0].properties.friendlyName').get_output_in_json() + + # Getting the recovery point IDs (names) and storing it in a list + rp_names = self.cmd('backup recoverypoint list --backup-management-type AzureIaasVM --workload-type VM -g {rg} -v {vault} -c {container} -i {item}', checks=[ + self.check("length(@)", 1) + ]).get_output_in_json() + + self.kwargs['rp1'] = rp_names[0]['name'] + self.kwargs['rp1_tier'] = rp_names[0]['tierType'] + self.kwargs['rp1_is_ready_for_move'] = rp_names[0]['properties']['recoveryPointMoveReadinessInfo']['ArchivedRP']['isReadyForMove'] + + # Check Archivable Recovery Points + self.cmd('backup recoverypoint list -g {rg} -v {vault} -i {item} -c {container} --backup-management-type AzureIaasVM --is-ready-for-move {rp1_is_ready_for_move} --target-tier VaultArchive --query [0]', checks=[ + self.check("resourceGroup", '{rg}'), + self.check("properties.recoveryPointMoveReadinessInfo.ArchivedRP.isReadyForMove", '{rp1_is_ready_for_move}') + ]) + + # Get Archived Recovery Points + self.cmd('backup recoverypoint list -g {rg} -v {vault} -i {item} -c {container} --backup-management-type AzureIaasVM --tier {rp1_tier} --query [0]', checks=[ + self.check("tierType", '{rp1_tier}'), + self.check("resourceGroup", '{rg}') + ]) diff --git a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/test_workload_commands.py b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/test_workload_commands.py index 6be19e712d8..8e103c5198c 100644 --- a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/test_workload_commands.py +++ b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/test_workload_commands.py @@ -561,6 +561,72 @@ def test_backup_wl_sql_restore_as_files(self): self.cmd('backup job wait -v {vault} -g {rg} -n {job}') + @record_only() + def test_backup_wl_sql_archive (self): + self.kwargs.update({ + 'vault': "archiveccyvault1", + 'rg': "ArchiveResourceGroup", + 'sub': "AzureBackup_Functional_Testing", + 'item': "SQLDataBase;mssqlserver;msdb", + 'container': "VMAppContainer;compute;archiveresourcegroup;archsqlccyvm2" + }) + + # Getting the recovery point IDs (names) and storing it in a list + rp_names = self.cmd('backup recoverypoint list --backup-management-type AzureWorkload --workload-type MSSQL -g {rg} -v {vault} -c {container} -i {item}', checks=[ + ]).get_output_in_json() + + self.kwargs['rp1'] = rp_names[0]['name'] + self.kwargs['rp1_tier'] = rp_names[0]['tierType'] + self.kwargs['rp1_is_ready_for_move'] = rp_names[0]['properties']['recoveryPointMoveReadinessInfo']['ArchivedRP']['isReadyForMove'] + + # Check Archivable Recovery Points + self.cmd('backup recoverypoint list -g {rg} -v {vault} -i {item} -c {container} --backup-management-type AzureWorkload --is-ready-for-move {rp1_is_ready_for_move} --target-tier VaultArchive --query [0]', checks=[ + self.check("resourceGroup", '{rg}'), + self.check("properties.recoveryPointMoveReadinessInfo.ArchivedRP.isReadyForMove", '{rp1_is_ready_for_move}') + ]) + + # Get Archived Recovery Points + self.cmd('backup recoverypoint list -g {rg} -v {vault} -i {item} -c {container} --backup-management-type AzureWorkload --tier {rp1_tier} --query [0]', checks=[ + self.check("tierType", '{rp1_tier}'), + self.check("resourceGroup", '{rg}') + ]) + + is_move = False + for i in rp_names: + if i['tierType']=="VaultStandard" and i['properties']['recoveryPointMoveReadinessInfo']['ArchivedRP']['isReadyForMove']==True: + self.kwargs['rp_move'] = i['name'] + is_move = True + break + + if is_move: + # # Move Recovery points + self.cmd('backup recoverypoint move -g {rg} -v {vault} -i {item} -c {container} --source-tier VaultStandard --destination-tier VaultArchive --name {rp_move}', checks=[ + self.check("properties.entityFriendlyName", 'msdb [archsqlccyvm2]'), + self.check("resourceGroup", '{rg}'), + self.check("properties.operation", "MoveRecoveryPoint"), + self.check("properties.status", "Completed") + ]) + + is_restorable = False + for i in rp_names: + if i['tierType']=="VaultArchive": + self.kwargs['rp_restore'] = i['name'] + is_restorable = True + break + + if is_restorable: + # # Integrated Restore + self.kwargs['rc'] = json.dumps(self.cmd('backup recoveryconfig show --vault-name {vault} -g {rg} --restore-mode OriginalWorkloadRestore --item-name {item} --container-name {container} --rp-name {rp_restore}').get_output_in_json(), separators=(',', ':')) + with open("recoveryconfig.json", "w") as f: + f.write(self.kwargs['rc']) + + # # Trigger Restore + self.cmd('backup restore restore-azurewl -g {rg} -v {vault} --recovery-config recoveryconfig.json --rehydration-priority High', checks=[ + self.check("properties.operation", "RestoreWithRehydrate"), + self.check("properties.status", "InProgress"), + self.check("resourceGroup", '{rg}') + ]).get_output_in_json() + # SAP HANA workload tests start here # Please make sure you have the following setup in place before running the tests - @@ -568,6 +634,71 @@ def test_backup_wl_sql_restore_as_files(self): # Each test will register the container at the start and unregister at the end of the test # Make sure that the container is not already registered since the start of the test + @record_only() + def test_backup_wl_hana_archive (self): + self.kwargs.update({ + 'vault': "archiveccyvault1", + 'rg': "ArchiveResourceGroup", + 'sub': "AzureBackup_Functional_Testing", + 'item': "SAPHanaDatabase;h15;systemdb", + 'container': "VMAppContainer;Compute;ArchiveResourceGroup;ArchHanaVM1" + }) + + rp_names = self.cmd('backup recoverypoint list --backup-management-type AzureWorkload --workload-type SAPHANA -g {rg} -v {vault} -c {container} -i {item}', checks=[ + ]).get_output_in_json() + + self.kwargs['rp1'] = rp_names[0]['name'] + self.kwargs['rp1_tier'] = rp_names[0]['tierType'] + self.kwargs['rp1_is_ready_for_move'] = rp_names[0]['properties']['recoveryPointMoveReadinessInfo']['ArchivedRP']['isReadyForMove'] + + # Check Archivable Recovery Points + self.cmd('backup recoverypoint list -g {rg} -v {vault} -i {item} -c {container} --backup-management-type AzureWorkload --is-ready-for-move {rp1_is_ready_for_move} --target-tier VaultArchive --query [0]', checks=[ + self.check("resourceGroup", '{rg}'), + self.check("properties.recoveryPointMoveReadinessInfo.ArchivedRP.isReadyForMove", '{rp1_is_ready_for_move}') + ]) + + # Get Archived Recovery Points + self.cmd('backup recoverypoint list -g {rg} -v {vault} -i {item} -c {container} --backup-management-type AzureWorkload --tier {rp1_tier} --query [0]', checks=[ + self.check("tierType", '{rp1_tier}'), + self.check("resourceGroup", '{rg}') + ]) + + is_move = False + for i in rp_names: + if i['tierType']=="VaultStandard" and i['properties']['recoveryPointMoveReadinessInfo']['ArchivedRP']['isReadyForMove']==True: + self.kwargs['rp_move'] = i['name'] + is_move = True + break + + if is_move: + # # Move Recovery points + self.cmd('backup recoverypoint move -g {rg} -v {vault} -i {item} -c {container} --source-tier VaultStandard --destination-tier VaultArchive --name {rp_move}', checks=[ + self.check("properties.entityFriendlyName", 'systemdb [BVTD2HSuse15]'), + self.check("resourceGroup", '{rg}'), + self.check("properties.operation", "MoveRecoveryPoint"), + self.check("properties.status", "Completed") + ]) + + is_restorable = False + for i in rp_names: + if i['tierType']=="VaultArchive": + self.kwargs['rp_restore'] = i['name'] + is_restorable = True + break + + if is_restorable: + # # Integrated Restore + self.kwargs['rc'] = json.dumps(self.cmd('backup recoveryconfig show --vault-name {vault} -g {rg} --restore-mode OriginalWorkloadRestore --item-name {item} --container-name {container} --rp-name {rp_restore}').get_output_in_json(), separators=(',', ':')) + with open("recoveryconfig.json", "w") as f: + f.write(self.kwargs['rc']) + + # # Trigger Restore + self.cmd('backup restore restore-azurewl -g {rg} -v {vault} --recovery-config recoveryconfig.json --rehydration-priority High', checks=[ + self.check("properties.operation", "RestoreWithRehydrate"), + self.check("properties.status", "InProgress"), + self.check("resourceGroup", '{rg}') + ]).get_output_in_json() + @record_only() def test_backup_wl_hana_container(self):